diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 1e456b9b768a..9e0fb7d1a927 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,48 +1,35 @@ - -NOTE: Please read your emails. Anyone mentioned on Github with an @ will receive an email, any activity on your work will also send emails. This is more reliable than being notified on our Discord, you will always get an email. +## What does this PR do? -CODE STYLE: The game uses automatic code formatting tools to keep code style consistent. If your PR does not adhere to the style, the autofix.ci app will format the code for you and push the changes as a new commit. You can also format the code yourself before committing it, it's faster that way and avoids the hurdle of keeping your branch up to date. See relevant guides for more information: https://docs.cataclysmbn.org/en/contribute/contributing/#code-style + -WARNING: If autofix.ci app did the formatting for you, YOU MUST DO EITHER OF THE FOLLOWING: -- Run `git pull` to merge the automated commit into your local PR branch. -- Format your code locally, and force push to your PR branch. -If you don't do this, your following work will be based on the old commit, and may cause MERGE CONFLICT. -If you use GitHub's web editor to edit files, you shouldn't need to do this as the web editor works directly on the remote branch. +## Steps to test and verify this PR -PR TITLE: Please follow Conventional Commits: https://www.conventionalcommits.org -This makes it clear at a glance what the PR is about. -For example: - feat(content,mods/DinoMod): new dinosaur species -For more info on which categories are available, see: https://docs.cataclysmbn.org/en/contribute/changelog_guidelines/ -If the PR is a port or adaptation of DDA content, please indicate it by adding "port" in PR title, like: - feat(port): from DDA ---> + ## Checklist -### Required +### Mandatory - [ ] I wrote the PR title in [conventional commit format](https://docs.cataclysmbn.org/en/contribute/changelog_guidelines/). - [ ] I ran the [code formatter](https://docs.cataclysmbn.org/en/contribute/contributing/#code-style). -- [ ] I linked any relevant issues using [github keyword syntax](https://docs.cataclysmbn.org/en/contribute/contributing/#pull-request-notes) so it can be closed automatically. -- [ ] I have [committed my changes to new branch that isn't `main`](https://docs.cataclysmbn.org/en/contribute/contributing/#make-your-changes) so it won't cause conflict when updating `main` branch later. - -### Optional +- [ ] I linked any relevant issues using [github keyword syntax](https://docs.cataclysmbn.org/en/contribute/contributing/#pull-request-notes) like `closes #1234` in [Summary of the PR](#why-should-this-pr-be-merged) so it can be closed automatically. +- [ ] I've [committed my changes to new branch that isn't `main`](https://docs.cataclysmbn.org/en/contribute/contributing/#make-your-changes) so it won't cause conflict when updating `main` branch later. - -## Purpose of change - - - -## Describe the solution - - - -## Describe alternatives you've considered - - - -## Testing - - - -## Additional context - - diff --git a/.github/semantic.yml b/.github/semantic.yml index e50f0e805370..1d52779715fe 100644 --- a/.github/semantic.yml +++ b/.github/semantic.yml @@ -62,7 +62,7 @@ scopes: - mods/generic_guns - mods/innawoods - mods/limit_fungal_growth - - mods/magiclysm + - mods/Magical_Nights - mods/manualbionicinstall - mods/modular_turrets - mods/more_classes_scenarios diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 90297c45ac73..6da29c42a6ea 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -42,7 +42,7 @@ jobs: - name: Setup build and dependencies run: | sudo apt-get update - sudo apt-get install gettext + sudo apt-get install gettext libsqlite3-dev zlib1g-dev - name: Build working-directory: ./android diff --git a/.github/workflows/clang-tidy.yml b/.github/workflows/clang-tidy.yml index 216d6b9c722d..b4a3810ad816 100644 --- a/.github/workflows/clang-tidy.yml +++ b/.github/workflows/clang-tidy.yml @@ -50,7 +50,8 @@ jobs: sudo apt-get install \ cmake gettext ninja-build mold ccache jq \ clang-18 libclang-18-dev llvm-18 llvm-18-dev clang-tidy-18 \ - libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev libpulse-dev libflac-dev + libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev libpulse-dev libflac-dev \ + sqlite3 libsqlite3-dev zlib1g-dev - name: ensure clang 18 is installed run: | diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index 2453bb8aadf5..147720e6697e 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -202,11 +202,6 @@ jobs: appendedCacheKey: ${{ hashFiles( 'msvc-full-features/vcpkg.json', '.github/vcpkg_triplets/**' ) }}-${{ matrix.arch }}-1 setupOnly: true vcpkgDirectory: "${{ runner.workspace }}/b/vcpkg" - # We have to use at least this version of vcpkg to include fixes for - # various issues we've encountered over time. Keep it in sync with the builtin-baseline - # field in vcpkg.json. Caching happens as a post-action which runs at the end of - # the whole workflow, after vcpkg install happens during msbuild run. - vcpkgGitCommitId: "66444e13a86da7087ee24c342f91801cc6eb9877" - name: Install dependencies (windows msvc) (3/3) if: runner.os == 'Windows' run: | @@ -233,11 +228,19 @@ jobs: run: | sudo apt-get update sudo apt-get install libncursesw5-dev libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev \ - libsdl2-mixer-dev libpulse-dev ccache gettext parallel - - name: Install dependencies (mac) + libsdl2-mixer-dev libpulse-dev ccache gettext parallel libsqlite3-dev zlib1g-dev + - name: Install runtime dependencies (mac) + if: runner.os == 'macOS' + uses: BrettDong/setup-sdl2-frameworks@v1 + with: + sdl2: 2.30.11 + sdl2-ttf: 2.24.0 + sdl2-image: 2.8.4 + sdl2-mixer: 2.8.0 + - name: Install build dependencies (mac) if: runner.os == 'macOS' run: | - HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install sdl2 sdl2_image sdl2_ttf sdl2_mixer gettext ccache parallel llvm astyle + HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install gettext ccache parallel llvm astyle sqlite3 zlib python3 -m venv ./venv source ./venv/bin/activate pip3 install mac_alias==2.2.0 dmgbuild==1.6.1 biplist polib luaparser diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 835c97ff940e..dc4e2cc44523 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -156,7 +156,7 @@ jobs: if: ${{ env.SKIP == 'false' && runner.os == 'Linux' }} run: | sudo apt-get update - sudo apt-get install libncursesw5-dev ccache gettext parallel + sudo apt-get install libncursesw5-dev ccache gettext parallel libsqlite3-dev zlib1g-dev sudo locale-gen en_US.UTF-8 fr_FR.UTF-8 ru_RU.UTF-8 - name: install SDL2 dependencies (ubuntu) @@ -189,7 +189,7 @@ jobs: # Ensure that it is actually needed version ${{ matrix.compiler }} --version | grep -q -E "${{ matrix.grep_clang_version_rxp }}" - HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install gettext ccache parallel + HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install gettext ccache parallel sqlite3 zlib # problem matchers are only ran on GCC to reduce error spam - name: add problem matcher diff --git a/.github/workflows/msvc-full-features-cmake.yml b/.github/workflows/msvc-full-features-cmake.yml index 606fb245989b..7f775d15e4cc 100644 --- a/.github/workflows/msvc-full-features-cmake.yml +++ b/.github/workflows/msvc-full-features-cmake.yml @@ -75,11 +75,10 @@ jobs: uses: lukka/get-cmake@latest - name: Install vcpkg - uses: lukka/run-vcpkg@v11 + uses: lukka/run-vcpkg@main id: runvcpkg with: vcpkgDirectory: '${{ runner.workspace }}/b/vcpkg' - vcpkgGitCommitId: "66444e13a86da7087ee24c342f91801cc6eb9877" - name: Integrate vcpkg run: | diff --git a/.github/workflows/msys2-cmake.yml b/.github/workflows/msys2-cmake.yml index a74970c8ccc2..9e768b4931ac 100644 --- a/.github/workflows/msys2-cmake.yml +++ b/.github/workflows/msys2-cmake.yml @@ -55,6 +55,8 @@ jobs: mingw-w64-x86_64-SDL2_ttf mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake + mingw-w64-x86_64-sqlite3 + mingw-w64-x86_64-zstd - name: Create build directory run: mkdir build diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 9b0160a76fba..b97ef9612807 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -73,14 +73,14 @@ jobs: - name: Install runtime dependencies uses: BrettDong/setup-sdl2-frameworks@v1 with: - sdl2: latest - sdl2-ttf: latest - sdl2-image: latest - sdl2-mixer: latest + sdl2: 2.30.11 + sdl2-ttf: 2.24.0 + sdl2-image: 2.8.4 + sdl2-mixer: 2.8.0 - name: Install build dependencies run: | - HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install sdl2 sdl2_image sdl2_ttf sdl2_mixer gettext ccache parallel llvm astyle + HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install sdl2 sdl2_image sdl2_ttf sdl2_mixer gettext ccache parallel llvm astyle sqlite3 zlib python3 -m venv ./venv source ./venv/bin/activate pip3 install mac_alias==2.2.0 dmgbuild==1.6.1 biplist polib luaparser @@ -93,4 +93,4 @@ jobs: - name: Build run: | source ./venv/bin/activate - make -j3 TILES=${{ matrix.tiles }} SOUND=${{ matrix.tiles }} LUA=1 RELEASE=1 LANGUAGES=all USE_HOME_DIR=1 OSX_MIN=11 PCH=0 COMPILER=$(brew --prefix llvm)/bin/clang++ dmgdist \ No newline at end of file + make -j3 TILES=${{ matrix.tiles }} SOUND=${{ matrix.tiles }} LUA=1 RELEASE=1 LANGUAGES=all USE_HOME_DIR=1 OSX_MIN=11 PCH=0 COMPILER=$(brew --prefix llvm)/bin/clang++ dmgdist diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ebeea94f11e..54208349471c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -225,11 +225,10 @@ jobs: uses: lukka/get-cmake@latest - name: Install vcpkg - uses: lukka/run-vcpkg@v11 + uses: lukka/run-vcpkg@main id: runvcpkg with: vcpkgDirectory: '${{ runner.workspace }}/b/vcpkg' - vcpkgGitCommitId: "66444e13a86da7087ee24c342f91801cc6eb9877" - name: Integrate vcpkg if: runner.os == 'Windows' @@ -263,20 +262,20 @@ jobs: run: | sudo apt-get update sudo apt-get install libncursesw5-dev libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev \ - libsdl2-mixer-dev libpulse-dev ccache gettext parallel + libsdl2-mixer-dev libpulse-dev ccache gettext parallel libsqlite3-dev zlib1g-dev - name: Install runtime dependencies (mac) if: runner.os == 'macOS' uses: BrettDong/setup-sdl2-frameworks@v1 with: - sdl2: latest - sdl2-ttf: latest - sdl2-image: latest - sdl2-mixer: latest + sdl2: 2.30.11 + sdl2-ttf: 2.24.0 + sdl2-image: 2.8.4 + sdl2-mixer: 2.8.0 - name: Install build dependencies (mac) if: runner.os == 'macOS' run: | - HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install gettext ccache parallel llvm astyle + HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install gettext ccache parallel llvm astyle sqlite3 zlib python3 -m venv ./venv source ./venv/bin/activate pip3 install mac_alias==2.2.0 dmgbuild==1.6.1 biplist polib luaparser diff --git a/CMakeLists.txt b/CMakeLists.txt index 80337602f1a9..98deb39cc185 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -113,6 +113,8 @@ include(CheckCXXCompilerFlag) #SET(CMAKE_SHARED_LIBRARY_CXX_FLAGS "${CMAKE_SHARED_LIBRARY_CXX_FLAGS} -m32") find_package(PkgConfig) +find_package(SQLite3) +find_package(ZLIB) if (NOT DYNAMIC_LINKING) if(NOT MSVC) set(CMAKE_FIND_LIBRARY_SUFFIXES ".a;.dll.a") diff --git a/LICENSE.txt b/LICENSE.txt index 9de6bc08f88b..de291c6db5f2 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,7 @@ Cataclysm is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. +The mod Magical Nights is licensed under the Creative Commons Attribution-ShareAlike 4.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. + Documentation site (doc/*, excluding doc/src/content/docs/*) is licensed under the AGPL 3.0-only license, see doc/LICENSE for text of license. Scripts (scripts/*) are licensed under the AGPL 3.0-only license, see doc/LICENSE for text of license. diff --git a/Makefile b/Makefile index 595fd8b3af58..e7b223c6af07 100644 --- a/Makefile +++ b/Makefile @@ -607,6 +607,11 @@ endif PKG_CONFIG = $(CROSS)pkg-config +CXXFLAGS += $(shell $(PKG_CONFIG) --cflags sqlite3) +LDFLAGS += $(shell $(PKG_CONFIG) --libs sqlite3) +CXXFLAGS += $(shell $(PKG_CONFIG) --cflags zlib) +LDFLAGS += $(shell $(PKG_CONFIG) --libs zlib) + ifeq ($(SOUND), 1) ifneq ($(TILES),1) $(error "SOUND=1 only works with TILES=1") diff --git a/android/.gitignore b/android/.gitignore index a36f14bf599f..bd852ce1a3c5 100644 --- a/android/.gitignore +++ b/android/.gitignore @@ -11,6 +11,8 @@ /app/jni/SDL2_image /app/jni/SDL2_mixer /app/jni/SDL2_ttf +/app/jni/sqlite3/*.c +/app/jni/sqlite3/*.h /app/jni/libintl-lite /app/jni/libhidapi /app/jni/lua diff --git a/android/app/build.gradle b/android/app/build.gradle index db623bb276c3..662f4622ac6c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -142,6 +142,29 @@ task unzipDeps(type: Copy) { into outputDir } +task fetchSqlite { + doLast { + def url = new URL('https://www.sqlite.org/2025/sqlite-amalgamation-3480000.zip') + def file = new File('/tmp/sqlite-amalgamation-3480000.zip') + file.withOutputStream { out -> + url.withInputStream { from -> out << from } + } + } +} + +task unzipSqlite(type: Copy) { + dependsOn fetchSqlite + from(zipTree(file('/tmp/sqlite-amalgamation-3480000.zip'))) { + includeEmptyDirs = false + eachFile { fileCopyDetails -> + if (fileCopyDetails.path.startsWith('sqlite-amalgamation-3480000/')) { + fileCopyDetails.path = fileCopyDetails.path - 'sqlite-amalgamation-3480000/' + } + } + } + into 'jni/sqlite3' +} + task makeLocalization(type: Exec) { if (localize) { println("Building with localization'") @@ -168,6 +191,7 @@ task makeLocalization(type: Exec) { makeLocalization unzipDeps.dependsOn makeLocalization preBuild.dependsOn unzipDeps +preBuild.dependsOn unzipSqlite android { namespace "com.cleverraven.cataclysmdda" diff --git a/android/app/jni/sqlite3/Android.mk b/android/app/jni/sqlite3/Android.mk new file mode 100644 index 000000000000..6a3b99c5eae0 --- /dev/null +++ b/android/app/jni/sqlite3/Android.mk @@ -0,0 +1,49 @@ +# Reference: https://developer.android.com/ndk/guides/android_mk.html + +# Based on https://sqlite.org/android/file?name=sqlite3/src/main/jni/sqlite/Android.mk&ci=tip + +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +# If using SEE, uncomment the following: +# LOCAL_CFLAGS += -DSQLITE_HAS_CODEC + +#Define HAVE_USLEEP, otherwise ALL sleep() calls take at least 1000ms +LOCAL_CFLAGS += -DHAVE_USLEEP=1 + +# Enable SQLite extensions. +LOCAL_CFLAGS += -DSQLITE_ENABLE_FTS5 +LOCAL_CFLAGS += -DSQLITE_ENABLE_RTREE +LOCAL_CFLAGS += -DSQLITE_ENABLE_FTS3 +LOCAL_CFLAGS += -DSQLITE_ENABLE_BATCH_ATOMIC_WRITE + +# This is important - it causes SQLite to use memory for temp files. Since +# Android has no globally writable temp directory, if this is not defined the +# application throws an exception when it tries to create a temp file. +# +LOCAL_CFLAGS += -DSQLITE_TEMP_STORE=3 + +LOCAL_CFLAGS += -DHAVE_CONFIG_H -DKHTML_NO_EXCEPTIONS -DGKWQ_NO_JAVA +LOCAL_CFLAGS += -DNO_SUPPORT_JS_BINDING -DQT_NO_WHEELEVENT -DKHTML_NO_XBL +LOCAL_CFLAGS += -U__APPLE__ +LOCAL_CFLAGS += -DHAVE_STRCHRNUL=0 +LOCAL_CFLAGS += -DSQLITE_USE_URI=1 +LOCAL_CFLAGS += -Wno-unused-parameter -Wno-int-to-pointer-cast +LOCAL_CFLAGS += -Wno-uninitialized -Wno-parentheses +LOCAL_CPPFLAGS += -Wno-conversion-null + +ifeq ($(TARGET_ARCH), arm) + LOCAL_CFLAGS += -DPACKED="__attribute__ ((packed))" +else + LOCAL_CFLAGS += -DPACKED="" +endif + +LOCAL_SRC_FILES := sqlite3.c + +LOCAL_C_INCLUDES += $(LOCAL_PATH) +LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) + +LOCAL_MODULE := libsqlite3 +LOCAL_LDLIBS += -ldl -llog + +include $(BUILD_SHARED_LIBRARY) \ No newline at end of file diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml index ba3b6161ca4a..c58bed1cf240 100644 --- a/android/app/src/main/res/values/colors.xml +++ b/android/app/src/main/res/values/colors.xml @@ -1,6 +1,7 @@ #000000 + #090A11 #009926 #212121 #212121 diff --git a/data/json/artifact/premade_artifacts.json b/data/json/artifact/premade_artifacts.json index 4c50d3cf931c..000e59690f07 100644 --- a/data/json/artifact/premade_artifacts.json +++ b/data/json/artifact/premade_artifacts.json @@ -14,6 +14,21 @@ "passive_effects": [ { "has": "HELD", "condition": "ALWAYS", "ench_effects": [ { "effect": "debug_clairvoyance", "intensity": 1 } ] } ] } }, + { + "id": "radiation_triangle", + "type": "TOOL", + "name": { "str": "The irradiation triangle" }, + "description": "Who so ever dares to hold this triangle inside inventory when not underground shall gain 1 to 3 irradiation every 10 minutes.", + "weight": "1 g", + "volume": "1 ml", + "material": [ "iron" ], + "symbol": "]", + "color": "light_gray", + "flags": [ "TRADER_AVOID" ], + "relic_data": { + "passive_effects": [ { "has": "HELD", "condition": "ABOVEGROUND", "ench_effects": [ { "effect": "debug_irradiation", "intensity": 1 } ] } ] + } + }, { "id": "chaos_dagger", "type": "GENERIC", diff --git a/data/json/construction.json b/data/json/construction.json index 86a0ff56b1cf..baebe08489ba 100644 --- a/data/json/construction.json +++ b/data/json/construction.json @@ -7,6 +7,7 @@ "required_skills": [ [ "fabrication", 0 ] ], "time": "20 m", "qualities": [ [ { "id": "PRY", "level": 1 } ], [ { "id": "SCREW", "level": 1 } ] ], + "deny_flags": [ "ADV_DECONSTRUCT" ], "pre_special": "check_deconstruct", "post_flags": [ "keep_items" ], "post_special": "done_deconstruct" @@ -20,6 +21,7 @@ "time": "10 s", "pre_note": "Certain terrain and furniture can be deconstructed without any tools.", "pre_flags": "EASY_DECONSTRUCT", + "deny_flags": [ "ADV_DECONSTRUCT" ], "pre_special": "check_deconstruct", "post_flags": [ "keep_items" ], "dark_craftable": true, @@ -1924,6 +1926,18 @@ "dark_craftable": true, "post_furniture": "f_workbench" }, + { + "type": "construction", + "id": "constr_place_robobench", + "group": "place_workbench", + "category": "FURN", + "required_skills": [ [ "fabrication", 0 ] ], + "time": "1 m", + "components": [ [ [ "robobench", 1 ] ] ], + "pre_special": "check_empty", + "dark_craftable": true, + "post_furniture": "f_robobench" + }, { "type": "construction", "id": "constr_chair", diff --git a/data/json/deconstruction.json b/data/json/deconstruction.json index 36cd1925d542..b16ac7aa2843 100644 --- a/data/json/deconstruction.json +++ b/data/json/deconstruction.json @@ -782,342 +782,227 @@ "type": "construction", "id": "constr_remove_object_fireplace", "//": "Breaks a fireplace apart giving you back most of the rocks used in its construction.", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "fabrication", 2 ] ], "time": "90 m", "using": [ [ "object_deconstruction_advanced", 1 ] ], - "byproducts": [ { "item": "rock", "count": [ 35, 40 ] } ], "pre_furniture": "f_fireplace", - "post_furniture": "f_null", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_electrical_conduit", "//": "Breaks an electrical conduit.", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "fabrication", 2 ], [ "electronics", 3 ] ], "time": "90 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "scrap", "count": [ 1, 4 ] }, - { "item": "scrap_copper", "count": [ 10, 20 ] }, - { "item": "cable", "charges": [ 20, 100 ] }, - { "item": "pipe", "count": [ 1, 2 ] } - ], "pre_furniture": "f_electrical_conduit", - "post_furniture": "f_null", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_capacitor_bank", "//": "Removes a capacitor bank", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "fabrication", 3 ], [ "electronics", 8 ] ], "time": "120 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "scrap", "count": [ 1, 4 ] }, - { "item": "cable", "charges": [ 100, 800 ] }, - { "item": "pipe", "count": [ 0, 4 ] }, - { "item": "circuit", "count": [ 0, 5 ] }, - { "item": "e_scrap", "count": [ 2, 8 ] }, - { "item": "amplifier", "count": [ 0, 4 ] }, - { "item": "power_supply", "count": [ 0, 2 ] }, - { "item": "metal_tank_little", "count": [ 0, 6 ] } - ], "pre_furniture": "f_capacitor", - "post_furniture": "f_null", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_console_broken", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 0 ] ], "time": "20 m", "qualities": [ { "id": "SCREW", "level": 1 } ], - "byproducts": [ - { "item": "processor", "count": [ 1, 2 ] }, - { "item": "RAM", "count": [ 4, 8 ] }, - { "item": "cable", "charges": [ 4, 6 ] }, - { "item": "large_lcd_screen", "count": 1 }, - { "item": "e_scrap", "count": [ 10, 16 ] }, - { "item": "circuit", "count": [ 6, 10 ] }, - { "item": "power_supply", "count": [ 2, 4 ] }, - { "item": "amplifier", "count": [ 2, 4 ] }, - { "item": "plastic_chunk", "count": [ 10, 12 ] }, - { "item": "scrap", "count": [ 6, 8 ] } - ], "pre_terrain": "t_console_broken", - "post_terrain": "t_floor", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_console", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 0 ] ], "time": "20 m", "qualities": [ { "id": "SCREW", "level": 1 } ], - "byproducts": [ - { "item": "processor", "count": [ 1, 2 ] }, - { "item": "RAM", "count": [ 4, 8 ] }, - { "item": "cable", "charges": [ 4, 6 ] }, - { "item": "large_lcd_screen", "count": 1 }, - { "item": "e_scrap", "count": [ 10, 16 ] }, - { "item": "circuit", "count": [ 6, 10 ] }, - { "item": "power_supply", "count": [ 2, 4 ] }, - { "item": "amplifier", "count": [ 2, 4 ] }, - { "item": "plastic_chunk", "count": [ 10, 12 ] }, - { "item": "scrap", "count": [ 6, 8 ] } - ], "pre_terrain": "t_console", - "post_terrain": "t_floor", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_plut_generator", "//": "Removes a Plut Gen.", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "fabrication", 2 ], [ "electronics", 6 ] ], "time": "90 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "plut_generator_item", "charges": [ 1, 1 ] }, - { "item": "power_supply", "charges": [ 3, 3 ] }, - { "item": "cable", "charges": [ 15, 15 ] } - ], "pre_terrain": "t_plut_generator", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_grid_plut_generator", "//": "Removes a Plut Gen from grid.", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "fabrication", 2 ], [ "electronics", 6 ] ], "time": "30 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "plut_generator_item", "charges": [ 1, 1 ] }, - { "item": "power_supply", "charges": [ 3, 3 ] }, - { "item": "cable", "charges": [ 15, 15 ] } - ], "pre_furniture": "f_grid_plut_generator", - "post_furniture": "f_null", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_sai_box", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 1 ] ], "time": "30 m", "using": [ [ "advanced_electronics_low_voltage", 1 ] ], - "byproducts": [ - { "item": "RAM", "count": [ 4, 8 ] }, - { "item": "cable", "charges": [ 16, 40 ] }, - { "item": "small_lcd_screen", "count": [ 2, 4 ] }, - { "item": "e_scrap", "count": [ 12, 24 ] }, - { "item": "circuit", "count": [ 6, 30 ] }, - { "item": "power_supply", "count": [ 4, 8 ] }, - { "item": "amplifier", "count": [ 3, 6 ] }, - { "item": "plastic_chunk", "count": [ 4, 8 ] }, - { "item": "scrap", "count": [ 8, 16 ] } - ], "pre_terrain": "t_sai_box", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_sai_box_damaged", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 1 ] ], "time": "35 m", "using": [ [ "advanced_electronics_low_voltage", 1 ] ], - "byproducts": [ - { "item": "RAM", "count": [ 1, 2 ] }, - { "item": "cable", "charges": [ 4, 24 ] }, - { "item": "e_scrap", "count": [ 4, 12 ] }, - { "item": "circuit", "count": [ 2, 12 ] }, - { "item": "power_supply", "count": [ 1, 4 ] }, - { "item": "amplifier", "count": [ 1, 3 ] }, - { "item": "plastic_chunk", "count": [ 2, 6 ] }, - { "item": "scrap", "count": [ 6, 12 ] } - ], "pre_terrain": "t_sai_box_damaged", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_oil_circ_brkr_l", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 5 ] ], "time": "60 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "cable", "charges": [ 8, 24 ] }, - { "item": "power_supply", "count": [ 4, 8 ] }, - { "item": "amplifier", "count": [ 8, 16 ] }, - { "item": "steel_chunk", "count": [ 4, 16 ] }, - { "item": "scrap", "count": [ 12, 24 ] }, - { "item": "sheet_metal", "count": [ 6, 12 ] }, - { "item": "ceramic_shard", "count": [ 2, 6 ] } - ], "pre_terrain": "t_oil_circ_brkr_l", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_oil_circ_brkr_s", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 5 ] ], "time": "45 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "cable", "charges": [ 4, 12 ] }, - { "item": "power_supply", "count": [ 3, 6 ] }, - { "item": "amplifier", "count": [ 6, 12 ] }, - { "item": "steel_chunk", "count": [ 2, 12 ] }, - { "item": "scrap", "count": [ 8, 18 ] }, - { "item": "sheet_metal", "count": [ 4, 8 ] }, - { "item": "ceramic_shard", "count": [ 1, 4 ] } - ], "pre_terrain": "t_oil_circ_brkr_s", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_switchgear_l", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 1 ] ], "time": "45 m", "using": [ [ "advanced_electronics_low_voltage", 1 ] ], - "byproducts": [ - { "item": "RAM", "count": [ 2, 6 ] }, - { "item": "cable", "charges": [ 4, 24 ] }, - { "item": "small_lcd_screen", "count": [ 6, 12 ] }, - { "item": "e_scrap", "count": [ 16, 24 ] }, - { "item": "circuit", "count": [ 12, 30 ] }, - { "item": "power_supply", "count": [ 6, 8 ] }, - { "item": "amplifier", "count": [ 6, 8 ] }, - { "item": "plastic_chunk", "count": [ 2, 4 ] }, - { "item": "scrap", "count": [ 8, 16 ] }, - { "item": "sheet_metal", "count": [ 2, 4 ] } - ], "pre_terrain": "t_switchgear_l", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_switchgear_s", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 1 ] ], "time": "35 m", "using": [ [ "advanced_electronics_low_voltage", 1 ] ], - "byproducts": [ - { "item": "RAM", "count": [ 1, 2 ] }, - { "item": "cable", "charges": [ 2, 8 ] }, - { "item": "small_lcd_screen", "count": [ 2, 6 ] }, - { "item": "e_scrap", "count": [ 6, 12 ] }, - { "item": "circuit", "count": [ 8, 24 ] }, - { "item": "power_supply", "count": [ 2, 6 ] }, - { "item": "amplifier", "count": [ 1, 4 ] }, - { "item": "plastic_chunk", "count": [ 1, 2 ] }, - { "item": "scrap", "count": [ 4, 8 ] }, - { "item": "sheet_metal", "count": [ 1, 2 ] } - ], "pre_terrain": "t_switchgear_s", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_lgtn_arrest", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 0 ] ], "time": "20 m", "using": [ [ "advanced_electronics_low_voltage", 1 ] ], - "byproducts": [ - { "item": "cable", "charges": [ 0, 4 ] }, - { "item": "scrap", "count": [ 8, 12 ] }, - { "item": "steel_chunk", "count": [ 2, 4 ] }, - { "item": "ceramic_shard", "count": [ 8, 16 ] } - ], "pre_terrain": "t_lgtn_arrest", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_station_disc", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 2 ] ], "time": "35 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "RAM", "count": [ 12, 24 ] }, - { "item": "cable", "charges": [ 6, 12 ] }, - { "item": "small_lcd_screen", "count": [ 8, 16 ] }, - { "item": "e_scrap", "count": [ 8, 12 ] }, - { "item": "circuit", "count": [ 6, 18 ] }, - { "item": "power_supply", "count": [ 8, 12 ] }, - { "item": "amplifier", "count": [ 2, 4 ] }, - { "item": "plastic_chunk", "count": [ 4, 8 ] }, - { "item": "scrap", "count": [ 2, 6 ] }, - { "item": "sheet_metal", "count": [ 1, 2 ] }, - { "item": "lead", "charges": [ 1, 2 ] }, - { "item": "ceramic_shard", "count": [ 2, 6 ] } - ], "pre_terrain": "t_station_disc", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_current_trans", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 3 ] ], "time": "45 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "scrap", "count": [ 12, 16 ] }, - { "item": "steel_chunk", "count": [ 4, 6 ] }, - { "item": "lead", "charges": [ 4, 16 ] }, - { "item": "cable", "charges": [ 60, 120 ] }, - { "item": "sheet_metal", "count": [ 2, 6 ] }, - { "item": "ceramic_shard", "count": [ 4, 12 ] } - ], "pre_terrain": "t_current_trans", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" }, { "type": "construction", "id": "constr_remove_t_potential_trans", - "category": "CONSTRUCT", + "category": "OTHER", "required_skills": [ [ "electronics", 4 ] ], "time": "55 m", "using": [ [ "advanced_electronics_high_voltage", 1 ] ], - "byproducts": [ - { "item": "scrap", "count": [ 12, 16 ] }, - { "item": "steel_chunk", "count": [ 4, 6 ] }, - { "item": "lead", "charges": [ 12, 32 ] }, - { "item": "cable", "charges": [ 20, 40 ] }, - { "item": "sheet_metal", "count": [ 2, 6 ] }, - { "item": "ceramic_shard", "count": [ 4, 12 ] } - ], + "byproducts": [ ], "pre_terrain": "t_potential_trans", - "post_terrain": "t_concrete", + "pre_special": "check_deconstruct", + "post_flags": [ "keep_items" ], + "post_special": "done_deconstruct", "group": "advanced_object_deconstruction" } ] diff --git a/data/json/effects.json b/data/json/effects.json index 5303e158cf7e..4db18ff3ce13 100644 --- a/data/json/effects.json +++ b/data/json/effects.json @@ -839,6 +839,13 @@ "desc": [ "You can see through everything!" ], "flags": [ "EFFECT_SUPER_CLAIRVOYANCE" ] }, + { + "type": "effect_type", + "id": "debug_irradiation", + "name": [ "Irradiation triangle" ], + "desc": [ "This irradiates you every 15 minutes while aboveground so long as you have it in your inventory!" ], + "base_mods": { "rad_min": [ 1 ], "rad_max": [ 3 ], "rad_tick": [ 900 ] } + }, { "type": "effect_type", "id": "took_xanax", @@ -1001,8 +1008,9 @@ "str_mod": [ -1 ], "dex_mod": [ -1 ], "vomit_chance": [ 1000, 1200 ], - "fatigue_min": [ 360, 180 ], - "fatigue_chance": [ -102 ] + "fatigue_min": [ 2, 1 ], + "fatigue_chance": [ -102 ], + "fatigue_tick": [ 6 ] }, "scaling_mods": { "pain_max_val": [ 30, 20 ], @@ -1028,7 +1036,7 @@ "str_mod": [ -1 ], "dex_mod": [ -1 ], "vomit_chance": [ 1000 ], - "fatigue_min": [ 360 ], + "fatigue_min": [ 2 ], "fatigue_chance": [ -102 ], "fatigue_tick": [ 6 ], "pain_tick": [ 6 ], diff --git a/data/json/external_tileset/External_Tileset_DP_Normal.json b/data/json/external_tileset/External_Tileset_DP_Normal.json index 823603a0289e..7d6e0adfbbf9 100644 --- a/data/json/external_tileset/External_Tileset_DP_Normal.json +++ b/data/json/external_tileset/External_Tileset_DP_Normal.json @@ -26,7 +26,10 @@ { "id": [ "overlay_worn_shield_leather_large", "overlay_wielded_shield_leather_large" ], "fg": 17 }, { "id": "shield_banded_large", "fg": 18 }, { "id": [ "overlay_worn_shield_banded_large", "overlay_wielded_shield_banded_large" ], "fg": 19 }, - { "id": [ "f_hive_young", "f_hive_growing", "f_hive_recovering" ], "fg": 20 }, + { + "id": [ "beehive_empty", "overlay_wielded_beehive_empty", "f_hive_young", "f_hive_growing", "f_hive_recovering" ], + "fg": 20 + }, { "id": "f_hive_ready", "fg": 21 }, { "id": "razor_macuahuitl", "fg": 22 }, { "id": "overlay_wielded_razor_macuahuitl", "fg": 23 }, diff --git a/data/json/field_type.json b/data/json/field_type.json index 3c38e06a341f..4cc20b7e4059 100644 --- a/data/json/field_type.json +++ b/data/json/field_type.json @@ -210,8 +210,10 @@ ], "description_affix": "covered_in", "is_splattering": true, + "accelerated_decay": true, "priority": 2, - "half_life": "6 hours", + "half_life": "10 minutes", + "underwater_age_speedup": "10 minutes", "phase": "liquid", "display_field": true, "looks_like": "fd_sap" diff --git a/data/json/flags.json b/data/json/flags.json index c96eff446991..ee13b5168905 100644 --- a/data/json/flags.json +++ b/data/json/flags.json @@ -261,6 +261,11 @@ "context": [ "ARMOR", "TOOL_ARMOR" ], "info": "You can wear only one." }, + { + "id": "EXOSUIT", + "type": "json_flag", + "context": [ "ARMOR", "TOOL_ARMOR" ] + }, { "id": "FANCY", "type": "json_flag", diff --git a/data/json/furniture_and_terrain/furniture-appliances.json b/data/json/furniture_and_terrain/furniture-appliances.json index 42f1f2a45d9e..d3fcb21f80ba 100644 --- a/data/json/furniture_and_terrain/furniture-appliances.json +++ b/data/json/furniture_and_terrain/furniture-appliances.json @@ -2508,7 +2508,14 @@ "move_cost_mod": -1, "coverage": 60, "required_str": -1, - "flags": [ "TRANSPARENT", "NOITEM", "REDUCE_SCENT", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "REDUCE_SCENT", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "items": [ + { "item": "plut_generator_item", "count": 1 }, + { "item": "cable", "charges": 15 }, + { "item": "power_supply", "count": 3 } + ] + }, "bash": { "str_min": 50, "str_max": 400, @@ -2524,13 +2531,6 @@ "//": "Variable reduction, destroy_threshold equal to str_min instead of str_max due to delicate electronics", "ranged": { "reduction": [ 25, 50 ], "destroy_threshold": 50, "block_unaimed_chance": "50%" } }, - "deconstruct": { - "items": [ - { "item": "plut_generator_item", "count": 1 }, - { "item": "cable", "charges": 15 }, - { "item": "power_supply", "count": 3 } - ] - }, "//2": "Please keep steady_consumer to 300 s or more to avoid lag.", "active": [ "steady_consumer", { "power": -100, "consume_every": "300 s" } ] }, diff --git a/data/json/furniture_and_terrain/furniture-fireplaces.json b/data/json/furniture_and_terrain/furniture-fireplaces.json index ed8c4c521b9e..4f3a637c5e78 100644 --- a/data/json/furniture_and_terrain/furniture-fireplaces.json +++ b/data/json/furniture_and_terrain/furniture-fireplaces.json @@ -9,7 +9,8 @@ "move_cost_mod": 2, "coverage": 90, "required_str": -1, - "flags": [ "TRANSPARENT", "CONTAINER", "FIRE_CONTAINER", "SUPPRESS_SMOKE", "PLACE_ITEM", "MINEABLE" ], + "flags": [ "TRANSPARENT", "CONTAINER", "FIRE_CONTAINER", "SUPPRESS_SMOKE", "PLACE_ITEM", "MINEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { "items": [ { "item": "rock", "count": [ 35, 40 ] } ] }, "examine_action": "fireplace", "bash": { "str_min": 50, diff --git a/data/json/furniture_and_terrain/furniture-industrial.json b/data/json/furniture_and_terrain/furniture-industrial.json index a85dd8e1451d..ce7767fcf3a5 100644 --- a/data/json/furniture_and_terrain/furniture-industrial.json +++ b/data/json/furniture_and_terrain/furniture-industrial.json @@ -227,7 +227,15 @@ "move_cost_mod": 1, "coverage": 30, "required_str": -1, - "flags": [ "TRANSPARENT", "NOCOLLIDE" ], + "flags": [ "TRANSPARENT", "NOCOLLIDE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "items": [ + { "item": "scrap", "count": [ 1, 4 ] }, + { "item": "scrap_copper", "count": [ 10, 20 ] }, + { "item": "cable", "charges": [ 20, 100 ] }, + { "item": "pipe", "count": [ 1, 2 ] } + ] + }, "bash": { "str_min": 10, "str_max": 100, @@ -254,7 +262,19 @@ "move_cost_mod": 4, "coverage": 40, "required_str": -1, - "flags": [ "TRANSPARENT", "MOUNTABLE" ], + "flags": [ "TRANSPARENT", "MOUNTABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "items": [ + { "item": "scrap", "count": [ 1, 4 ] }, + { "item": "cable", "charges": [ 100, 800 ] }, + { "item": "pipe", "count": [ 0, 4 ] }, + { "item": "circuit", "count": [ 0, 5 ] }, + { "item": "e_scrap", "count": [ 2, 8 ] }, + { "item": "amplifier", "count": [ 0, 4 ] }, + { "item": "power_supply", "count": [ 0, 2 ] }, + { "item": "metal_tank_little", "count": [ 0, 6 ] } + ] + }, "bash": { "str_min": 25, "str_max": 200, diff --git a/data/json/furniture_and_terrain/furniture-rural.json b/data/json/furniture_and_terrain/furniture-rural.json index 170d3e9b6250..9db63c1c92a1 100644 --- a/data/json/furniture_and_terrain/furniture-rural.json +++ b/data/json/furniture_and_terrain/furniture-rural.json @@ -138,7 +138,7 @@ "description": "A traditional beehive, buzzing with activity. The colony is still recovering from last harvest.", "symbol": "^", "color": "brown", - "transforms_into": "f_hive_regrowing", + "transforms_into": "f_hive_ready", "deconstruct": { "items": [ { "item": "beehive_empty", "count": 1 }, { "item": "honeycomb", "count": [ 1, 2 ] } ] }, "bash": { "str_min": 12, diff --git a/data/json/furniture_and_terrain/furniture-surfaces.json b/data/json/furniture_and_terrain/furniture-surfaces.json index 884370177934..99931f12392b 100644 --- a/data/json/furniture_and_terrain/furniture-surfaces.json +++ b/data/json/furniture_and_terrain/furniture-surfaces.json @@ -170,6 +170,36 @@ "examine_action": "workbench", "workbench": { "multiplier": 1.2, "mass": "500 kg", "volume": "200L" } }, + { + "type": "furniture", + "id": "f_robobench", + "name": "Robotic workbench", + "description": "Having upgraded the basic workbench, you've now created a robotic workbench that helps speed up crafting.", + "symbol": "#", + "color": "red", + "move_cost_mod": 2, + "coverage": 50, + "required_str": 10, + "looks_like": "machinery_heavy", + "flags": [ "TRANSPARENT", "PLACE_ITEM", "MOUNTABLE", "FLAT_SURF", "EASY_DECONSTRUCT" ], + "deconstruct": { "items": [ { "item": "robobench", "count": 1 } ] }, + "bash": { + "str_min": 35, + "str_max": 80, + "sound": "metal screeching!", + "sound_fail": "clang!", + "items": [ + { "item": "pipe", "count": [ 4, 6 ] }, + { "item": "sheet_metal", "count": [ 0, 1 ] }, + { "item": "sheet_metal_small", "count": [ 12, 24 ] }, + { "item": "steel_chunk", "count": [ 4, 8 ] }, + { "item": "scrap", "count": [ 12, 24 ] } + ], + "ranged": { "reduction": [ 35, 35 ], "destroy_threshold": 80, "block_unaimed_chance": "50%" } + }, + "examine_action": "workbench", + "workbench": { "multiplier": 1.5, "mass": "500 kg", "volume": "200L" } + }, { "type": "furniture", "id": "f_leather_tarp", diff --git a/data/json/furniture_and_terrain/terrain-manufactured.json b/data/json/furniture_and_terrain/terrain-manufactured.json index a7473da10f5c..0357ef14b819 100644 --- a/data/json/furniture_and_terrain/terrain-manufactured.json +++ b/data/json/furniture_and_terrain/terrain-manufactured.json @@ -713,7 +713,15 @@ "color": "light_green", "looks_like": "t_machinery_electronic", "move_cost": 0, - "flags": [ "TRANSPARENT", "NOITEM", "REDUCE_SCENT", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "REDUCE_SCENT", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "plut_generator_item", "charges": [ 1, 1 ] }, + { "item": "power_supply", "charges": [ 3, 3 ] }, + { "item": "cable", "charges": [ 15, 15 ] } + ] + }, "bash": { "str_min": 50, "str_max": 400, @@ -742,7 +750,21 @@ "looks_like": "t_machinery_electronic", "move_cost": 0, "coverage": 90, - "flags": [ "NOITEM", "WALL" ], + "flags": [ "NOITEM", "WALL", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "RAM", "count": [ 4, 8 ] }, + { "item": "cable", "charges": [ 16, 40 ] }, + { "item": "small_lcd_screen", "count": [ 2, 4 ] }, + { "item": "e_scrap", "count": [ 12, 24 ] }, + { "item": "circuit", "count": [ 6, 30 ] }, + { "item": "power_supply", "count": [ 4, 8 ] }, + { "item": "amplifier", "count": [ 3, 6 ] }, + { "item": "plastic_chunk", "count": [ 4, 8 ] }, + { "item": "scrap", "count": [ 8, 16 ] } + ] + }, "bash": { "str_min": 8, "str_max": 80, @@ -763,7 +785,20 @@ "looks_like": "f_wreckage", "move_cost": 0, "coverage": 90, - "flags": [ "NOITEM", "WALL" ], + "flags": [ "NOITEM", "WALL", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "RAM", "count": [ 1, 2 ] }, + { "item": "cable", "charges": [ 4, 24 ] }, + { "item": "e_scrap", "count": [ 4, 12 ] }, + { "item": "circuit", "count": [ 2, 12 ] }, + { "item": "power_supply", "count": [ 1, 4 ] }, + { "item": "amplifier", "count": [ 1, 3 ] }, + { "item": "plastic_chunk", "count": [ 2, 6 ] }, + { "item": "scrap", "count": [ 6, 12 ] } + ] + }, "bash": { "str_min": 6, "str_max": 80, @@ -791,7 +826,19 @@ "looks_like": "t_machinery_electronic", "move_cost": 0, "coverage": 90, - "flags": [ "TRANSPARENT", "FLAMMABLE", "NOITEM", "WALL", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "FLAMMABLE", "NOITEM", "WALL", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "cable", "charges": [ 8, 24 ] }, + { "item": "power_supply", "count": [ 4, 8 ] }, + { "item": "amplifier", "count": [ 8, 16 ] }, + { "item": "steel_chunk", "count": [ 4, 16 ] }, + { "item": "scrap", "count": [ 12, 24 ] }, + { "item": "sheet_metal", "count": [ 6, 12 ] }, + { "item": "ceramic_shard", "count": [ 2, 6 ] } + ] + }, "bash": { "str_min": 20, "str_max": 150, @@ -818,7 +865,19 @@ "looks_like": "t_machinery_electronic", "move_cost": 0, "coverage": 65, - "flags": [ "TRANSPARENT", "FLAMMABLE", "NOITEM", "WALL", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "FLAMMABLE", "NOITEM", "WALL", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "cable", "charges": [ 4, 12 ] }, + { "item": "power_supply", "count": [ 3, 6 ] }, + { "item": "amplifier", "count": [ 6, 12 ] }, + { "item": "steel_chunk", "count": [ 2, 12 ] }, + { "item": "scrap", "count": [ 8, 18 ] }, + { "item": "sheet_metal", "count": [ 4, 8 ] }, + { "item": "ceramic_shard", "count": [ 1, 4 ] } + ] + }, "bash": { "str_min": 20, "str_max": 150, @@ -845,7 +904,22 @@ "looks_like": "t_machinery_electronic", "move_cost": 0, "coverage": 90, - "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "RAM", "count": [ 2, 6 ] }, + { "item": "cable", "charges": [ 4, 24 ] }, + { "item": "small_lcd_screen", "count": [ 6, 12 ] }, + { "item": "e_scrap", "count": [ 16, 24 ] }, + { "item": "circuit", "count": [ 12, 30 ] }, + { "item": "power_supply", "count": [ 6, 8 ] }, + { "item": "amplifier", "count": [ 6, 8 ] }, + { "item": "plastic_chunk", "count": [ 2, 4 ] }, + { "item": "scrap", "count": [ 8, 16 ] }, + { "item": "sheet_metal", "count": [ 2, 4 ] } + ] + }, "bash": { "str_min": 20, "str_max": 150, @@ -871,7 +945,22 @@ "looks_like": "t_machinery_electronic", "move_cost": 0, "coverage": 65, - "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "RAM", "count": [ 1, 2 ] }, + { "item": "cable", "charges": [ 2, 8 ] }, + { "item": "small_lcd_screen", "count": [ 2, 6 ] }, + { "item": "e_scrap", "count": [ 6, 12 ] }, + { "item": "circuit", "count": [ 8, 24 ] }, + { "item": "power_supply", "count": [ 2, 6 ] }, + { "item": "amplifier", "count": [ 1, 4 ] }, + { "item": "plastic_chunk", "count": [ 1, 2 ] }, + { "item": "scrap", "count": [ 4, 8 ] }, + { "item": "sheet_metal", "count": [ 1, 2 ] } + ] + }, "bash": { "str_min": 20, "str_max": 150, @@ -900,7 +989,16 @@ "color": "i_light_gray", "looks_like": "t_machinery_electronic", "move_cost": 0, - "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "cable", "charges": [ 0, 4 ] }, + { "item": "scrap", "count": [ 8, 12 ] }, + { "item": "steel_chunk", "count": [ 2, 4 ] }, + { "item": "ceramic_shard", "count": [ 8, 16 ] } + ] + }, "bash": { "str_min": 20, "str_max": 150, @@ -924,7 +1022,24 @@ "color": "light_gray", "looks_like": "t_machinery_electronic", "move_cost": 0, - "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "RAM", "count": [ 12, 24 ] }, + { "item": "cable", "charges": [ 6, 12 ] }, + { "item": "small_lcd_screen", "count": [ 8, 16 ] }, + { "item": "e_scrap", "count": [ 8, 12 ] }, + { "item": "circuit", "count": [ 6, 18 ] }, + { "item": "power_supply", "count": [ 8, 12 ] }, + { "item": "amplifier", "count": [ 2, 4 ] }, + { "item": "plastic_chunk", "count": [ 4, 8 ] }, + { "item": "scrap", "count": [ 2, 6 ] }, + { "item": "sheet_metal", "count": [ 1, 2 ] }, + { "item": "lead", "charges": [ 1, 2 ] }, + { "item": "ceramic_shard", "count": [ 2, 6 ] } + ] + }, "bash": { "str_min": 20, "str_max": 150, @@ -950,7 +1065,18 @@ "looks_like": "t_machinery_electronic", "move_cost": 0, "coverage": 50, - "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "scrap", "count": [ 12, 16 ] }, + { "item": "steel_chunk", "count": [ 4, 6 ] }, + { "item": "lead", "charges": [ 4, 16 ] }, + { "item": "cable", "charges": [ 60, 120 ] }, + { "item": "sheet_metal", "count": [ 2, 6 ] }, + { "item": "ceramic_shard", "count": [ 4, 12 ] } + ] + }, "bash": { "str_min": 20, "str_max": 150, @@ -979,7 +1105,18 @@ "looks_like": "t_machinery_electronic", "move_cost": 0, "coverage": 50, - "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "WALL", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_concrete", + "items": [ + { "item": "scrap", "count": [ 12, 16 ] }, + { "item": "steel_chunk", "count": [ 4, 6 ] }, + { "item": "lead", "charges": [ 12, 32 ] }, + { "item": "cable", "charges": [ 20, 40 ] }, + { "item": "sheet_metal", "count": [ 2, 6 ] }, + { "item": "ceramic_shard", "count": [ 4, 12 ] } + ] + }, "bash": { "str_min": 20, "str_max": 150, diff --git a/data/json/furniture_and_terrain/terrain-mechanisms.json b/data/json/furniture_and_terrain/terrain-mechanisms.json index b5bd2c68b290..6768342680bd 100644 --- a/data/json/furniture_and_terrain/terrain-mechanisms.json +++ b/data/json/furniture_and_terrain/terrain-mechanisms.json @@ -9,7 +9,22 @@ "move_cost": 0, "coverage": 50, "roof": "t_flat_roof", - "flags": [ "TRANSPARENT", "NOITEM", "INDOORS", "SHORT", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "INDOORS", "SHORT", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_floor", + "items": [ + { "item": "processor", "count": [ 1, 2 ] }, + { "item": "RAM", "count": [ 4, 8 ] }, + { "item": "cable", "charges": [ 4, 6 ] }, + { "item": "large_lcd_screen", "count": 1 }, + { "item": "e_scrap", "count": [ 10, 16 ] }, + { "item": "circuit", "count": [ 6, 10 ] }, + { "item": "power_supply", "count": [ 2, 4 ] }, + { "item": "amplifier", "count": [ 2, 4 ] }, + { "item": "plastic_chunk", "count": [ 10, 12 ] }, + { "item": "scrap", "count": [ 6, 8 ] } + ] + }, "bash": { "str_min": 16, "str_max": 150, @@ -43,7 +58,22 @@ "coverage": 50, "light_emitted": 10, "roof": "t_flat_roof", - "flags": [ "TRANSPARENT", "CONSOLE", "NOITEM", "INDOORS", "SHORT", "PERMEABLE" ], + "flags": [ "TRANSPARENT", "CONSOLE", "NOITEM", "INDOORS", "SHORT", "PERMEABLE", "ADV_DECONSTRUCT" ], + "deconstruct": { + "ter_set": "t_floor", + "items": [ + { "item": "processor", "count": [ 1, 2 ] }, + { "item": "RAM", "count": [ 4, 8 ] }, + { "item": "cable", "charges": [ 4, 6 ] }, + { "item": "large_lcd_screen", "count": 1 }, + { "item": "e_scrap", "count": [ 10, 16 ] }, + { "item": "circuit", "count": [ 6, 10 ] }, + { "item": "power_supply", "count": [ 2, 4 ] }, + { "item": "amplifier", "count": [ 2, 4 ] }, + { "item": "plastic_chunk", "count": [ 10, 12 ] }, + { "item": "scrap", "count": [ 6, 8 ] } + ] + }, "bash": { "str_min": 8, "str_max": 150, diff --git a/data/json/furniture_and_terrain/terrain-zlevel-transitions.json b/data/json/furniture_and_terrain/terrain-zlevel-transitions.json index b755bbe68dbb..501898b36e99 100644 --- a/data/json/furniture_and_terrain/terrain-zlevel-transitions.json +++ b/data/json/furniture_and_terrain/terrain-zlevel-transitions.json @@ -415,5 +415,48 @@ "looks_like": "t_railroad_track", "move_cost": 2, "flags": [ "TRANSPARENT", "RAIL", "ROAD" ] + }, + { + "type": "terrain", + "id": "t_concrete_ramp_down_high", + "name": "concrete ramp down (high end)", + "connects_to": "PAVEMENT", + "description": "The upper end of a concrete ramp leading down.", + "symbol": ">", + "color": "light_gray", + "move_cost": 2, + "flags": [ "TRANSPARENT", "ROAD", "Z_TRANSPARENT" ] + }, + { + "type": "terrain", + "id": "t_concrete_ramp_down_low", + "name": "concrete ramp down (low end)", + "connects_to": "WALL", + "description": "The lower end of a concrete ramp leading down.", + "symbol": ">", + "color": "light_gray", + "move_cost": 2, + "flags": [ "TRANSPARENT", "ROAD", "RAMP_DOWN", "Z_TRANSPARENT" ] + }, + { + "type": "terrain", + "id": "t_concrete_ramp_up_high", + "name": "concrete ramp up (high end)", + "connects_to": "WALL", + "description": "The upper end of a concrete ramp leading up.", + "symbol": "<", + "color": "light_gray", + "move_cost": 2, + "flags": [ "ROAD", "RAMP_UP" ] + }, + { + "type": "terrain", + "id": "t_concrete_ramp_up_low", + "name": "concrete ramp up (low end)", + "description": "The lower end of a concrete ramp leading up.", + "symbol": "<", + "color": "light_gray", + "move_cost": 2, + "flags": [ "TRANSPARENT", "ROAD" ] } ] diff --git a/data/json/item_category.json b/data/json/item_category.json index b2feb5a7cc04..ea830cc67375 100644 --- a/data/json/item_category.json +++ b/data/json/item_category.json @@ -4,35 +4,84 @@ "type": "ITEM_CATEGORY", "name": { "str": "GUNS" }, "zone": "LOOT_GUNS", - "sort_rank": -23 + "sort_rank": -42 }, { "id": "magazines", "type": "ITEM_CATEGORY", "name": { "str": "MAGAZINES" }, "zone": "LOOT_MAGAZINES", - "sort_rank": -22 + "sort_rank": -39 }, { "id": "ammo", "type": "ITEM_CATEGORY", "name": { "str": "AMMO" }, "zone": "LOOT_AMMO", - "sort_rank": -21 + "sort_rank": -36 }, { "id": "weapons", "type": "ITEM_CATEGORY", "name": { "str": "WEAPONS" }, "zone": "LOOT_WEAPONS", - "sort_rank": -20 + "sort_rank": -33 }, { "id": "tools", "type": "ITEM_CATEGORY", - "name": { "str": "TOOLS" }, + "name": { "str": "OTHER TOOLS" }, "zone": "LOOT_TOOLS", - "sort_rank": -19 + "sort_rank": -30 + }, + { + "id": "tools_entry", + "type": "ITEM_CATEGORY", + "name": { "str": "ENTRY TOOLS" }, + "zone": "LOOT_ENTRY_TOOLS", + "sort_rank": -27 + }, + { + "id": "tools_workshop", + "type": "ITEM_CATEGORY", + "name": { "str": "WORKSHOP TOOLS" }, + "zone": "LOOT_WORKSHOP_TOOLS", + "sort_rank": -24 + }, + { + "id": "tools_cooking", + "type": "ITEM_CATEGORY", + "name": { "str": "COOKING TOOLS" }, + "zone": "LOOT_COOKING_TOOLS", + "sort_rank": -21 + }, + { + "id": "tools_chemistry", + "type": "ITEM_CATEGORY", + "name": { "str": "CHEMISTRY TOOLS" }, + "zone": "LOOT_CHEMISTRY_TOOLS", + "sort_rank": -18 + }, + { + "id": "tools_farming", + "type": "ITEM_CATEGORY", + "name": { "str": "FARM TOOLS" }, + "zone": "LOOT_FARM_TOOLS", + "sort_rank": -15 + }, + { + "id": "deployables", + "type": "ITEM_CATEGORY", + "name": { "str": "DEPLOYABLES" }, + "zone": "LOOT_DEPLOYABLES", + "sort_rank": -12 + }, + { + "id": "electronics", + "type": "ITEM_CATEGORY", + "name": { "str": "ELECTRONICS" }, + "zone": "LOOT_ELECTRONICS", + "sort_rank": -9 }, { "id": "clothing", @@ -40,132 +89,203 @@ "name": { "str": "CLOTHING" }, "priority_zones": [ { "id": "LOOT_FCLOTHING", "filthy": true } ], "zone": "LOOT_CLOTHING", - "sort_rank": -18 + "sort_rank": -6 }, { "id": "food", "type": "ITEM_CATEGORY", "name": { "str": "FOOD" }, "//": "zone is hardcoded", - "sort_rank": -17 + "sort_rank": -3 + }, + { + "id": "cooking_ingredients", + "type": "ITEM_CATEGORY", + "name": { "str": "COOKING INGREDIENTS" }, + "zone": "LOOT_COOKING_INGREDIENTS", + "sort_rank": 1 }, { "id": "drugs", "type": "ITEM_CATEGORY", "name": { "str": "DRUGS" }, "zone": "LOOT_DRUGS", - "sort_rank": -16 + "sort_rank": 4 }, { "id": "books", "type": "ITEM_CATEGORY", "name": { "str": "BOOKS" }, "zone": "LOOT_BOOKS", - "sort_rank": -15 + "sort_rank": 7 }, { "id": "spellbooks", "type": "ITEM_CATEGORY", "name": { "str": "SPELLBOOKS" }, "zone": "LOOT_SPELLBOOKS", - "sort_rank": -14 - }, - { - "id": "maps", - "type": "ITEM_CATEGORY", - "name": { "str": "MAPS" }, - "sort_rank": -13 + "sort_rank": 10 }, { "id": "mods", "type": "ITEM_CATEGORY", "name": { "str": "MODS" }, "zone": "LOOT_MODS", - "sort_rank": -12 + "sort_rank": 13 }, { "id": "mutagen", "type": "ITEM_CATEGORY", "name": { "str": "MUTAGENS" }, "zone": "LOOT_MUTAGENS", - "sort_rank": -11 + "sort_rank": 16 }, { "id": "bionics", "type": "ITEM_CATEGORY", "name": { "str": "BIONICS" }, "zone": "LOOT_BIONICS", - "sort_rank": -10 + "sort_rank": 19 }, { "id": "veh_parts", "type": "ITEM_CATEGORY", "name": { "str": "VEHICLE PARTS" }, "zone": "LOOT_VEHICLE_PARTS", - "sort_rank": -9 + "sort_rank": 22 }, { "id": "other", "type": "ITEM_CATEGORY", "name": { "str": "OTHER" }, "zone": "LOOT_OTHER", - "sort_rank": -8 + "sort_rank": 25 }, { "id": "fuel", "type": "ITEM_CATEGORY", "name": { "str": "FUEL" }, "zone": "LOOT_FUEL", - "sort_rank": -7 + "sort_rank": 28 }, { "id": "seeds", "type": "ITEM_CATEGORY", "name": { "str": "SEEDS" }, "zone": "LOOT_SEEDS", - "sort_rank": -6 + "sort_rank": 31 }, { "id": "chems", "type": "ITEM_CATEGORY", "name": { "str": "CHEMICAL STUFF" }, "zone": "LOOT_CHEMICAL", - "sort_rank": 5 + "sort_rank": 34 }, { "id": "battery", "type": "ITEM_CATEGORY", "name": { "str": "BATTERIES" }, "zone": "LOOT_BATTERY", - "sort_rank": 6 + "sort_rank": 37 }, { "id": "spare_parts", "type": "ITEM_CATEGORY", "name": { "str": "SPARE PARTS" }, "zone": "LOOT_SPARE_PARTS", - "sort_rank": 8 + "sort_rank": 40 + }, + { + "id": "scrap_metal", + "type": "ITEM_CATEGORY", + "name": { "str": "METAL SCRAP" }, + "zone": "LOOT_SCRAP_METAL", + "sort_rank": 43 + }, + { + "id": "scrap_electronics", + "type": "ITEM_CATEGORY", + "name": { "str": "ELECTRONIC SCRAP" }, + "zone": "LOOT_SCRAP_ELECTRONICS", + "sort_rank": 46 + }, + { + "id": "scrap_fabric", + "type": "ITEM_CATEGORY", + "name": { "str": "FABRICS" }, + "zone": "LOOT_SCRAP_FABRIC", + "sort_rank": 49 + }, + { + "id": "scrap_wood", + "type": "ITEM_CATEGORY", + "name": { "str": "WOOD SCRAP" }, + "zone": "LOOT_SCRAP_WOOD", + "sort_rank": 52 + }, + { + "id": "scrap_plastic", + "type": "ITEM_CATEGORY", + "name": { "str": "PLASTIC SCRAP" }, + "zone": "LOOT_SCRAP_PLASTIC", + "sort_rank": 55 + }, + { + "id": "scrap_ceramics", + "type": "ITEM_CATEGORY", + "name": { "str": "CERAMIC SCRAP" }, + "zone": "LOOT_SCRAP_CERAMICS", + "sort_rank": 58 + }, + { + "id": "scrap_glass", + "type": "ITEM_CATEGORY", + "name": { "str": "GLASS SCRAP" }, + "zone": "LOOT_SCRAP_GLASS", + "sort_rank": 61 + }, + { + "id": "valuables", + "type": "ITEM_CATEGORY", + "name": { "str": "VALUABLES" }, + "zone": "LOOT_VALUABLES", + "sort_rank": 64 + }, + { + "id": "rocks", + "type": "ITEM_CATEGORY", + "name": { "str": "ROCKS" }, + "zone": "LOOT_ROCKS", + "sort_rank": 67 + }, + { + "id": "soil", + "type": "ITEM_CATEGORY", + "name": { "str": "SOIL" }, + "zone": "LOOT_SOIL", + "sort_rank": 70 }, { "id": "container", "type": "ITEM_CATEGORY", "name": { "str": "CONTAINERS" }, "zone": "LOOT_CONTAINERS", - "sort_rank": 9 + "sort_rank": 73 }, { "id": "artifacts", "type": "ITEM_CATEGORY", "name": { "str": "ARTIFACTS" }, "zone": "LOOT_ARTIFACTS", - "sort_rank": 10 + "sort_rank": 76 }, { "id": "maps", "type": "ITEM_CATEGORY", "name": { "str": "MAPS" }, "zone": "LOOT_MAP", - "sort_rank": 21 + "sort_rank": 80 }, { "id": "ITEMS_WORN", diff --git a/data/json/itemgroups/Locations_MapExtras/locations.json b/data/json/itemgroups/Locations_MapExtras/locations.json index b345fdf03e66..fe6ce0f960f9 100644 --- a/data/json/itemgroups/Locations_MapExtras/locations.json +++ b/data/json/itemgroups/Locations_MapExtras/locations.json @@ -1865,6 +1865,7 @@ [ "helmet_football", 5 ], [ "mouthpiece", 5 ], [ "roller_blades", 20 ], + [ "folding_skateboard", 10 ], [ "rollerskates", 10 ], [ "rollerskates", 10 ], [ "roller_shoes_off", 10 ], diff --git a/data/json/itemgroups/Locations_MapExtras/locations_commercial.json b/data/json/itemgroups/Locations_MapExtras/locations_commercial.json index 4322335b031f..62c1f4561c3d 100644 --- a/data/json/itemgroups/Locations_MapExtras/locations_commercial.json +++ b/data/json/itemgroups/Locations_MapExtras/locations_commercial.json @@ -462,6 +462,7 @@ [ "boots_hiking", 10 ], [ "roller_blades", 20 ], [ "rollerskates", 10 ], + [ "folding_skateboard", 10 ], [ "roller_shoes_off", 10 ], [ "runner_bag", 5 ], [ "gloves_tactical", 1 ], @@ -843,6 +844,7 @@ { "group": "kids_books", "prob": 215 }, { "item": "novel_pulp", "prob": 30 }, { "item": "folding_bicycle", "prob": 3 }, + { "item": "folding_skateboard", "prob": 3 }, { "item": "sunglasses", "prob": 25 }, { "item": "cowboy_hat", "prob": 25 }, { "item": "mp3", "prob": 35 }, @@ -1088,7 +1090,11 @@ { "item": "small_storage_battery", "prob": 10 }, { "item": "alternator_bicycle", "prob": 10 }, { "item": "folding_bicycle", "prob": 10 }, - { "item": "roller_blades", "prob": 10 } + { "item": "roller_blades", "prob": 10 }, + { "item": "folding_skateboard", "prob": 10 }, + { "item": "wheel_skateboard", "prob": 5 }, + { "item": "wheel_mount_skateboard", "prob": 5 }, + { "item": "frame_wood_deck", "prob": 5 } ] }, { diff --git a/data/json/itemgroups/Locations_MapExtras/locations_mapextras.json b/data/json/itemgroups/Locations_MapExtras/locations_mapextras.json index 54562824c0bb..109aa0d66cb0 100644 --- a/data/json/itemgroups/Locations_MapExtras/locations_mapextras.json +++ b/data/json/itemgroups/Locations_MapExtras/locations_mapextras.json @@ -18,30 +18,28 @@ { "item": "electric_lighter", "prob": 5 } ] }, - { "group": "salty_snacks", "prob": 80 }, - { "group": "liquor_and_spirits", "prob": 16 }, - { "group": "methlab", "prob": 25 }, - { "group": "softdrugs", "prob": 50 }, - { "group": "smokedrugs", "prob": 100 }, - { "group": "baddrugs", "prob": 90 }, { "distribution": [ - { "group": "gunmod_common", "prob": 50 }, - { "group": "gunmod_rare", "prob": 25 }, - { "group": "auto_sears", "prob": 25 } - ], - "prob": 25 + { "group": "salty_snacks", "prob": 25 }, + { "group": "liquor_and_spirits", "prob": 25 }, + { "group": "softdrugs", "prob": 50 } + ] }, + { "group": "methlab", "prob": 25 }, + { "group": "smokedrugs", "prob": 100 }, + { "group": "baddrugs", "prob": 90 }, { "distribution": [ { "group": "guns_pistol_common", "prob": 50 }, - { "group": "guns_rifle_common", "prob": 10 }, { "group": "guns_shotgun_common", "prob": 15 }, - { "group": "guns_smg_common", "prob": 25 } + { "group": "guns_smg_common", "prob": 35 }, + { "group": "weapons", "prob": 50 }, + { "group": "gunmod_common", "prob": 25 }, + { "group": "gunmod_rare", "prob": 10 }, + { "group": "auto_sears", "prob": 15 } ], "prob": 50 - }, - { "group": "weapons", "prob": 70 } + } ] } ] diff --git a/data/json/itemgroups/Locations_MapExtras/mall_item_groups.json b/data/json/itemgroups/Locations_MapExtras/mall_item_groups.json index fbe1a5f1bc6b..3e23c0ee13dc 100644 --- a/data/json/itemgroups/Locations_MapExtras/mall_item_groups.json +++ b/data/json/itemgroups/Locations_MapExtras/mall_item_groups.json @@ -103,6 +103,7 @@ [ "magic_8_ball", 30 ], [ "novel_pulp", 20 ], [ "folding_bicycle", 5 ], + [ "folding_skateboard", 5 ], [ "sunglasses", 25 ], [ "wolfsuit", 5 ], [ "dinosuit", 5 ], diff --git a/data/json/itemgroups/Locations_MapExtras/mansion.json b/data/json/itemgroups/Locations_MapExtras/mansion.json index f1ce5b506219..93a1c202904b 100644 --- a/data/json/itemgroups/Locations_MapExtras/mansion.json +++ b/data/json/itemgroups/Locations_MapExtras/mansion.json @@ -812,6 +812,7 @@ [ "hockey_stick", 45 ], [ "golf_club", 80 ], [ "roller_blades", 20 ], + [ "folding_skateboard", 10 ], [ "rollerskates", 10 ], [ "longbow", 5 ], [ "compositebow", 5 ], diff --git a/data/json/itemgroups/SUS/clothes_store.json b/data/json/itemgroups/SUS/clothes_store.json index 26bbdd050058..d8c880046ab6 100644 --- a/data/json/itemgroups/SUS/clothes_store.json +++ b/data/json/itemgroups/SUS/clothes_store.json @@ -79,21 +79,6 @@ { "item": "thread", "count": [ 2, 7 ], "prob": 75 } ] }, - { - "id": "SUS_tailoring_fasteners", - "type": "item_group", - "//": "SUS item groups are collections that contain a reasonable realistic distribution of items that might spawn in a given storage furniture.", - "//2": "This group is for a container of fasteners for making clothing.", - "subtype": "collection", - "entries": [ - { "item": "button_plastic", "count": [ 1, 5 ], "prob": 75 }, - { "item": "button_steel", "count": [ 1, 5 ], "prob": 75 }, - { "item": "button_wood", "count": [ 1, 5 ], "prob": 75 }, - { "item": "snapfastener_steel", "count": [ 1, 5 ], "prob": 75 }, - { "item": "zipper_long_plastic", "count": [ 1, 8 ], "prob": 75 }, - { "item": "zipper_short_plastic", "count": [ 1, 8 ], "prob": 75 } - ] - }, { "id": "SUS_tailoring_materials", "type": "item_group", diff --git a/data/json/itemgroups/activities_hobbies.json b/data/json/itemgroups/activities_hobbies.json index d84ee5a75d1f..7894e5ddb49d 100644 --- a/data/json/itemgroups/activities_hobbies.json +++ b/data/json/itemgroups/activities_hobbies.json @@ -77,6 +77,7 @@ [ "knee_pads", 40 ], [ "roller_blades", 20 ], [ "rollerskates", 10 ], + [ "folding_skateboard", 10 ], [ "manual_throw", 12 ], { "item": "protein_powder", diff --git a/data/json/itemgroups/collections_domestic.json b/data/json/itemgroups/collections_domestic.json index 36c069541d4e..7f496ae0ffe2 100644 --- a/data/json/itemgroups/collections_domestic.json +++ b/data/json/itemgroups/collections_domestic.json @@ -112,6 +112,7 @@ { "item": "bubblewrap", "prob": 50 }, { "item": "binoculars", "prob": 20 }, { "item": "roller_blades", "prob": 20 }, + { "item": "folding_skateboard", "prob": 10 }, { "item": "duct_tape", "prob": 100 }, { "item": "lawnmower", "prob": 25 }, { "item": "trash_can_empty", "prob": 25 }, @@ -801,6 +802,7 @@ { "item": "mask_hockey", "prob": 5 }, { "item": "hockey_stick", "prob": 10 }, { "item": "roller_blades", "prob": 20 }, + { "item": "folding_skateboard", "prob": 10 }, { "item": "roller_shoes_off", "prob": 10 }, { "item": "jersey", "prob": 40 }, { "item": "hairpin", "prob": 20 }, diff --git a/data/json/itemgroups/misc.json b/data/json/itemgroups/misc.json index 7530421ee2a9..1039ec4884e4 100644 --- a/data/json/itemgroups/misc.json +++ b/data/json/itemgroups/misc.json @@ -149,7 +149,7 @@ { "item": "copper", "charges": [ 800, 3200 ], "prob": 70 }, { "item": "lead", "charges": [ 800, 3200 ], "prob": 10 }, { "item": "tin", "charges": [ 800, 3200 ], "prob": 10 }, - { "item": "silver", "charges": [ 400, 1600 ], "prob": 5 }, + { "item": "silver_small", "charges": [ 400, 1600 ], "prob": 5 }, { "item": "gold_small", "charges": [ 400, 1600 ], "prob": 5 } ] }, diff --git a/data/json/items/ammo.json b/data/json/items/ammo.json index ceb9d0fb359f..f01fe230fb85 100644 --- a/data/json/items/ammo.json +++ b/data/json/items/ammo.json @@ -66,7 +66,7 @@ { "type": "AMMO", "id": "thread", - "category": "spare_parts", + "category": "scrap_fabric", "price": "50 USD", "price_postapoc": "25 cent", "name": { "str_sp": "thread" }, @@ -84,7 +84,7 @@ { "type": "AMMO", "id": "sinew", - "category": "spare_parts", + "category": "scrap_fabric", "price": "0 cent", "price_postapoc": "25 cent", "name": { "str": "sinew" }, @@ -102,7 +102,7 @@ { "type": "AMMO", "id": "plant_fibre", - "category": "spare_parts", + "category": "scrap_fabric", "price": "0 cent", "price_postapoc": "25 cent", "name": { "str": "plant fiber" }, @@ -120,7 +120,7 @@ { "type": "AMMO", "id": "yarn", - "category": "spare_parts", + "category": "scrap_fabric", "price": "0 cent", "price_postapoc": "25 cent", "name": { "str_sp": "yarn" }, @@ -155,7 +155,7 @@ { "type": "AMMO", "id": "duct_tape", - "category": "spare_parts", + "category": "tools_workshop", "price": "20 USD", "price_postapoc": "250 cent", "name": { "str": "duct tape" }, @@ -171,7 +171,7 @@ }, { "type": "AMMO", - "category": "other", + "category": "scrap_wood", "id": "rolling_paper", "symbol": ",", "color": "white", @@ -190,7 +190,7 @@ { "type": "AMMO", "id": "cable", - "category": "spare_parts", + "category": "scrap_electronics", "price": "20 USD", "price_postapoc": "1 USD", "name": { "str": "copper wire" }, @@ -265,7 +265,7 @@ "color": "light_gray", "name": { "str": "rock" }, "description": "A rock the size of a baseball. Makes a decent melee weapon, and is also good for throwing at enemies.", - "category": "spare_parts", + "category": "rocks", "material": "stone", "ammo_type": "rock", "flags": [ "TRADER_AVOID" ], @@ -674,7 +674,7 @@ { "type": "AMMO", "id": "copper", - "category": "spare_parts", + "category": "scrap_metal", "price": "10 USD", "price_postapoc": "250 cent", "name": { "str": "copper" }, @@ -738,7 +738,7 @@ { "type": "AMMO", "id": "cac2powder", - "category": "spare_parts", + "category": "chems", "price": "2 USD", "price_postapoc": "5 USD", "name": { "str_sp": "calcium carbide premix" }, @@ -1025,7 +1025,7 @@ { "id": "tinder", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_wood", "name": { "str_sp": "tinder" }, "description": "Flammable material, finely divided for easy combustion.", "weight": "10 g", @@ -1088,7 +1088,7 @@ { "id": "scrap_bronze", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str_sp": "bronze" }, "description": "Decent-sized chunks of bronze, for fashioning some old-school items.", "//": "Density 7.4-8.9g/cm³ depending on composition ~ 825g/100ml if we use DF's chosen density, scrap stacks at ~25% efficiency", diff --git a/data/json/items/ammo/20x66mm.json b/data/json/items/ammo/20x66mm.json index 92699d15dfef..fef2121bebae 100644 --- a/data/json/items/ammo/20x66mm.json +++ b/data/json/items/ammo/20x66mm.json @@ -133,7 +133,9 @@ "type": "AMMO", "name": { "str": "20x66mm buckshot" }, "//": "2.5x the Generic Rate of $1/shot", - "description": "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for Rivtech shotguns. Being caseless rounds, these cannot be disassembled or reloaded." + "description": "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for Rivtech shotguns. Being caseless rounds, these cannot be disassembled or reloaded.", + "range": 0, + "shape": [ "cone", { "half_angle": 15, "length": 12 } ] }, { "id": "20x66_slug", diff --git a/data/json/items/ammo/40x46mm.json b/data/json/items/ammo/40x46mm.json index 80ab851834db..1246e4572f02 100644 --- a/data/json/items/ammo/40x46mm.json +++ b/data/json/items/ammo/40x46mm.json @@ -51,7 +51,8 @@ "name": { "str": "40x46mm M576 buckshot" }, "description": "A 40x46mm buckshot load, designed for use in thick vegetation or room clearing.", "weight": "120 g", - "range": 12, + "range": 0, + "shape": [ "cone", { "half_angle": 15, "length": 12 } ], "damage": { "damage_type": "bullet", "amount": 120 }, "recoil": 1000, "casing": "40x46mm_m199_casing", @@ -77,7 +78,8 @@ "name": { "str": "improvised 40x46mm buckshot" }, "description": "An improvised 40x46mm buckshot load somewhat resembling M576. Aside from using the M118 casing normally used by HEDP shells, it performs as well as buckshot loads using the intended M199 casing.", "weight": "120 g", - "range": 10, + "range": 0, + "shape": [ "cone", { "half_angle": 15, "length": 12 } ], "damage": { "damage_type": "bullet", "amount": 120 }, "recoil": 1000, "casing": "40x46mm_m118_casing", @@ -116,7 +118,8 @@ "name": { "str": "improvised 40x46mm flechette" }, "description": "An improvised 40x46mm flechette load containing 70 steel darts. Aside from using the M118 casing normally used by HEDP shells, it performs as well as flechette shells using the M199 casing.", "weight": "120 g", - "range": 10, + "range": 0, + "shape": [ "cone", { "half_angle": 15, "length": 12 } ], "//": "Balanced as AP.", "damage": { "damage_type": "bullet", "amount": 84, "armor_penetration": 72 }, "recoil": 1000, @@ -130,7 +133,8 @@ "name": { "str": "improvised 40x46mm flechette" }, "description": "An improvised 40x46mm flechette load containing 70 steel darts, loaded into the M199 casing used by M576 buckshot shells.", "weight": "120 g", - "range": 10, + "range": 0, + "shape": [ "cone", { "half_angle": 15, "length": 12 } ], "//": "Balanced as AP.", "damage": { "damage_type": "bullet", "amount": 84, "armor_penetration": 72 }, "recoil": 1000, diff --git a/data/json/items/ammo/40x53mm.json b/data/json/items/ammo/40x53mm.json index 21567ef40bbe..eaa065f0ffa3 100644 --- a/data/json/items/ammo/40x53mm.json +++ b/data/json/items/ammo/40x53mm.json @@ -27,7 +27,8 @@ "description": "40x53mm canister shot loaded with 17 grain flechettes.", "weight": "340 g", "//": "Balanced as AP.", - "range": 10, + "range": 0, + "shape": [ "cone", { "half_angle": 15, "length": 10 } ], "damage": { "damage_type": "bullet", "amount": 91, "armor_penetration": 78 }, "recoil": 1000, "casing": "40x53mm_m169_casing", @@ -52,7 +53,8 @@ "name": { "str": "improvised 40x53mm buckshot" }, "description": "An improvised 40x53mm buckshot load somewhat resembling M576.", "weight": "340 g", - "range": 10, + "range": 0, + "shape": [ "cone", { "half_angle": 15, "length": 10 } ], "damage": { "damage_type": "bullet", "amount": 130 }, "recoil": 1200, "casing": "40x53mm_m169_casing", diff --git a/data/json/items/ammo/410shot.json b/data/json/items/ammo/410shot.json index 69bc748c7d1a..9927cf5d91c7 100644 --- a/data/json/items/ammo/410shot.json +++ b/data/json/items/ammo/410shot.json @@ -15,8 +15,9 @@ "stack_size": 20, "ammo_type": "410shot", "casing": "410shot_hull", - "range": 20, - "damage": { "damage_type": "bullet", "amount": 53 }, + "range": 0, + "shape": [ "cone", { "half_angle": 10, "length": 12 } ], + "damage": { "damage_type": "bullet", "amount": 30 }, "recoil": 1350, "loudness": 90, "effects": [ "COOKOFF", "SHOT" ] diff --git a/data/json/items/ammo/flintlock.json b/data/json/items/ammo/flintlock.json index 391a3ae0d037..725775c12096 100644 --- a/data/json/items/ammo/flintlock.json +++ b/data/json/items/ammo/flintlock.json @@ -37,8 +37,9 @@ "count": 30, "stack_size": 10, "ammo_type": "flintlockshot", - "range": 8, - "damage": { "damage_type": "bullet", "amount": 60, "armor_multiplier": 2 }, + "range": 0, + "shape": [ "cone", { "half_angle": 10, "length": 12 } ], + "damage": { "damage_type": "bullet", "amount": 63 }, "dispersion": 20, "recoil": 1500, "loudness": 90, diff --git a/data/json/items/ammo/nail.json b/data/json/items/ammo/nail.json index 35f8e9d9b15d..09e94ca5a822 100644 --- a/data/json/items/ammo/nail.json +++ b/data/json/items/ammo/nail.json @@ -13,7 +13,7 @@ { "id": "nail", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str": "nail" }, "description": "A pin-shaped piece of iron, can be used to construct various things with a hammer.", "weight": "4 g", diff --git a/data/json/items/ammo/shot.json b/data/json/items/ammo/shot.json index 5dd6d2b69c71..957415a5996a 100644 --- a/data/json/items/ammo/shot.json +++ b/data/json/items/ammo/shot.json @@ -96,7 +96,9 @@ "copy-from": "shot_abstract", "type": "AMMO", "name": { "str": "00 shot" }, - "description": "A shell filled with metal pellets. Extremely damaging, plus the spread makes it very accurate at short range. Favored by SWAT forces." + "description": "A shell filled with metal pellets. Extremely damaging, plus the spread makes it very accurate at short range. Favored by SWAT forces.", + "range": 0, + "shape": [ "cone", { "half_angle": 10, "length": 12 } ] }, { "id": "shot_beanbag", diff --git a/data/json/items/armor/ballistic_armor.json b/data/json/items/armor/ballistic_armor.json index 70ab6733e8a0..b1f86d12c1a0 100644 --- a/data/json/items/armor/ballistic_armor.json +++ b/data/json/items/armor/ballistic_armor.json @@ -57,7 +57,6 @@ "price_postapoc": "15 USD", "//": "Mono-material as it likely would need to be taken apart to repair, plus the material of the vest is less of a factor on resistances.", "material": [ "soil" ], - "coverage": 85, "encumbrance": 45, "material_thickness": 6, "extend": { "flags": [ "OVERSIZE", "FRAGILE" ] }, diff --git a/data/json/items/armor/power_armor.json b/data/json/items/armor/power_armor.json index 7565dd64977e..000e94cee28e 100644 --- a/data/json/items/armor/power_armor.json +++ b/data/json/items/armor/power_armor.json @@ -647,7 +647,7 @@ "NO_UNLOAD", "NO_RELOAD", "BELTED", - "ONLY_ONE", + "EXOSUIT", "POWERARMOR_COMPATIBLE", "OVERSIZE", "ALLOWS_NATURAL_ATTACKS" @@ -670,6 +670,7 @@ }, { "id": "exosuit_industrial", + "sub": "gloves_rubber", "type": "TOOL_ARMOR", "category": "armor", "name": { "str": "industrial exo-suit" }, @@ -716,7 +717,7 @@ "NO_RELOAD", "COMPACT", "BELTED", - "ONLY_ONE", + "EXOSUIT", "POWERARMOR_COMPATIBLE", "OVERSIZE", "ALLOWS_NATURAL_ATTACKS" diff --git a/data/json/items/armor/torso_armor.json b/data/json/items/armor/torso_armor.json index 6ad71b3184a4..cfd698332a4c 100644 --- a/data/json/items/armor/torso_armor.json +++ b/data/json/items/armor/torso_armor.json @@ -440,7 +440,6 @@ "description": "A cuirass made from large pieces of carved bone, laced together like lamellar armor. Tough but stiff, and a bit brittle.", "material": [ "bone_heavy" ], "color": "white", - "encumbrance": 12, "warmth": 12, "environmental_protection": 1, "valid_mods": [ ], diff --git a/data/json/items/chemicals_and_resources.json b/data/json/items/chemicals_and_resources.json index 06310c255bb4..f1501a0fa4dd 100644 --- a/data/json/items/chemicals_and_resources.json +++ b/data/json/items/chemicals_and_resources.json @@ -39,7 +39,7 @@ { "type": "AMMO", "id": "chunk_sulfur", - "category": "spare_parts", + "category": "chems", "price": "50 cent", "price_postapoc": "1 USD", "name": { "str": "chunk of sulfur", "str_pl": "chunks of sulfur" }, @@ -61,7 +61,7 @@ { "type": "AMMO", "id": "material_cement", - "category": "spare_parts", + "category": "rocks", "price": "2 USD", "price_postapoc": "10 cent", "name": { "str_sp": "cement" }, @@ -78,7 +78,7 @@ { "type": "AMMO", "id": "material_limestone", - "category": "spare_parts", + "category": "rocks", "price": "50 cent", "price_postapoc": "10 cent", "name": { "str_sp": "limestone" }, @@ -100,7 +100,7 @@ { "type": "AMMO", "id": "material_quicklime", - "category": "spare_parts", + "category": "rocks", "price": "1 USD", "price_postapoc": "10 cent", "name": { "str_sp": "quicklime" }, @@ -117,7 +117,7 @@ { "type": "AMMO", "id": "material_sand", - "category": "spare_parts", + "category": "scrap_glass", "price": "0 cent", "price_postapoc": "0 cent", "name": { "str_sp": "sand" }, @@ -134,7 +134,7 @@ { "type": "AMMO", "id": "material_soil", - "category": "spare_parts", + "category": "soil", "price": "0 cent", "price_postapoc": "0 cent", "name": { "str_sp": "soil" }, @@ -167,7 +167,7 @@ { "type": "GENERIC", "id": "material_rocksalt", - "category": "food", + "category": "cooking_ingredients", "price": "50 cent", "price_postapoc": "1 USD", "name": { "str_sp": "rock salt" }, @@ -182,7 +182,7 @@ { "type": "GENERIC", "id": "material_rhodonite", - "category": "spare_parts", + "category": "chems", "price": "250 cent", "price_postapoc": "1 USD", "name": { "str_sp": "rhodonite" }, @@ -198,7 +198,7 @@ { "type": "GENERIC", "id": "material_zincite", - "category": "spare_parts", + "category": "chems", "price": "250 cent", "price_postapoc": "1 USD", "name": { "str_sp": "zincite" }, @@ -756,7 +756,7 @@ { "type": "AMMO", "id": "material_niter", - "category": "spare_parts", + "category": "chems", "price": "75 cent", "price_postapoc": "1 USD", "name": { "str_sp": "niter" }, @@ -772,7 +772,7 @@ { "type": "GENERIC", "id": "iron_ore", - "category": "spare_parts", + "category": "scrap_metal", "price": "250 cent", "name": { "str": "chunk of iron ore", "str_pl": "chunks of iron ore" }, "symbol": ",", @@ -1238,7 +1238,7 @@ { "id": "steel_grille", "type": "GENERIC", - "category": "other", + "category": "tools_chemistry", "name": { "str": "steel grille" }, "description": "This is a metal grille. It can be used as a framework for making a chemical catalyst.", "weight": "600 g", @@ -1292,7 +1292,7 @@ { "id": "wooden_bead", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_wood", "name": { "str": "wooden bead" }, "description": "This is a wooden bead. It can be used to craft inscribable jewelry or create a beaded curtain door.", "weight": "1 g", diff --git a/data/json/items/comestibles/carnivore.json b/data/json/items/comestibles/carnivore.json index c3fd5d5e1cd7..dbaf7e73e631 100644 --- a/data/json/items/comestibles/carnivore.json +++ b/data/json/items/comestibles/carnivore.json @@ -55,7 +55,7 @@ "name": "human stomach", "description": "The stomach of a human. It is surprisingly durable.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "id": "hstomach_large", @@ -72,7 +72,7 @@ "name": { "str": "chunk of human fat", "str_pl": "chunks of human fat" }, "description": "Freshly harvested from a human body.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -83,7 +83,7 @@ "price": "5 USD", "//": "*May* have been commercially traded.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -186,7 +186,7 @@ "name": "mutant humanoid meat", "description": "Freshly butchered from the body of a heavily mutated creature that was unsettlingly humanoid in appearance. It smells like a failed chemical experiment. You'd have to be crazy or starving to eat this.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "id": "mutant_human_cooked", @@ -578,7 +578,7 @@ "fun": -50, "flags": [ "IS_BLOOD" ], "drop_action": { "type": "emit_actor", "emits": [ "emit_drop_blood" ], "scale_qty": true }, - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -750,7 +750,7 @@ "name": { "str": "chunk of mutant humanoid fat", "str_pl": "chunks of mutant humanoid fat" }, "description": "Freshly butchered fat from a heavily mutated humanoid.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -759,7 +759,7 @@ "copy-from": "mutant_tallow", "description": "A smooth white block of cleaned and rendered fat sourced from a mutant humanoid. It won't rot for a very long time, and can be used as an ingredient in many foods and projects.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -924,7 +924,7 @@ "name": { "str": "boiled large human stomach" }, "description": "A boiled stomach from a large humanoid creature, nothing else. It looks all but appetizing.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -952,7 +952,7 @@ "name": { "str": "boiled human stomach" }, "description": "A small boiled stomach from a human, nothing else. It looks all but appetizing.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -996,7 +996,7 @@ "name": "raw human skin", "description": "A carefully folded raw skin harvested from a human. You can cure it for storage and tanning, or eat it if you're desperate enough.", "material": [ "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -1041,7 +1041,7 @@ "name": "raw human pelt", "description": "A carefully folded raw skin harvested from a fur-bearing mutant human. It still has the fur attached. You can cure it for storage and tanning, or eat it if you're desperate enough.", "material": [ "fur", "hflesh" ], - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", diff --git a/data/json/items/comestibles/drink_other.json b/data/json/items/comestibles/drink_other.json index e2dde1660fee..04fc48e7dbd6 100644 --- a/data/json/items/comestibles/drink_other.json +++ b/data/json/items/comestibles/drink_other.json @@ -208,9 +208,24 @@ "type": "COMESTIBLE", "id": "cooking_oil2", "name": { "str_sp": "animal cooking oil" }, - "copy-from": "cooking_oil", + "//": "Can't copy-from the vegetable oil because it extends vitamins instead of overwriting them", + "weight": "15 g", + "color": "yellow", + "container": "jug_plastic", + "comestible_type": "DRINK", + "symbol": "~", + "quench": -1, + "healthy": -2, + "calories": 127, "description": "Thin yellow animal oil used for cooking.", + "price": "40 cent", + "price_postapoc": "5 USD", "material": [ "flesh", "oil" ], + "volume": "250 ml", + "charges": 16, + "phase": "liquid", + "fun": -25, + "flags": [ "NUTRIENT_OVERRIDE" ], "vitamins": [ [ "meat_allergen", 1 ] ] }, { diff --git a/data/json/items/comestibles/mutagen.json b/data/json/items/comestibles/mutagen.json index fe7f61a5f234..e44f26547a7e 100644 --- a/data/json/items/comestibles/mutagen.json +++ b/data/json/items/comestibles/mutagen.json @@ -495,7 +495,7 @@ "material": [ "hflesh" ], "volume": "250 ml", "fun": -60, - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -517,7 +517,7 @@ "material": [ "hflesh" ], "volume": "2 L", "fun": -20, - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", @@ -539,7 +539,7 @@ "material": [ "hflesh" ], "volume": "5 L", "fun": -20, - "vitamins": [ [ "meat_allergen", 1 ] ] + "vitamins": [ [ "meat_allergen", 1 ], [ "human_flesh_vitamin", 100 ] ] }, { "type": "COMESTIBLE", diff --git a/data/json/items/comestibles/other.json b/data/json/items/comestibles/other.json index 8edfbf1634f6..eceb0110ecc8 100644 --- a/data/json/items/comestibles/other.json +++ b/data/json/items/comestibles/other.json @@ -564,7 +564,15 @@ "healthy": -20, "quench": -47, "calories": 78, - "vitamins": [ [ "vitA", 0 ], [ "vitC", 2 ], [ "calcium", 1 ], [ "iron", 8 ], [ "vitB", 54 ], [ "meat_allergen", 1 ] ], + "vitamins": [ + [ "vitA", 0 ], + [ "vitC", 2 ], + [ "calcium", 1 ], + [ "iron", 8 ], + [ "vitB", 54 ], + [ "meat_allergen", 1 ], + [ "human_flesh_vitamin", 100 ] + ], "description": "This is a human brain soaked in a solution of highly toxic formaldehyde. Eating this would be a terrible idea.", "price": "80 cent", "price_postapoc": "0 cent", diff --git a/data/json/items/comestibles/sandwich.json b/data/json/items/comestibles/sandwich.json index 6ebbcb33741e..a210bf623bb3 100644 --- a/data/json/items/comestibles/sandwich.json +++ b/data/json/items/comestibles/sandwich.json @@ -1,7 +1,29 @@ [ + { + "type": "COMESTIBLE", + "id": "sandwich_generic", + "name": { "str": "GENERIC SANDWICH", "str_pl": "GENERIC SANDWICHES" }, + "weight": "300 g", + "healthy": 1, + "calories": 300, + "color": "brown", + "spoils_in": "1 day 12 hours", + "container": "wrapper", + "comestible_type": "FOOD", + "symbol": "%", + "description": "If you can see this, you shouldn't be able to. This is to solve dumb copy-from issues.", + "price": "2 USD", + "price_postapoc": "2 USD", + "primary_material": "wheat", + "volume": "500 ml", + "material": [ "wheat" ], + "fun": 12, + "charges": 4 + }, { "type": "COMESTIBLE", "id": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "deluxe sandwich", "str_pl": "deluxe sandwiches" }, "conditional_names": [ { @@ -23,21 +45,11 @@ { "type": "COMPONENT_ID", "condition": "soysauce", "name": "%s with soy sauce" }, { "type": "COMPONENT_ID", "condition": "seasoning_salt", "name": "%s with seasoned salt" } ], - "weight": "300 g", - "healthy": 1, - "calories": 300, - "color": "brown", - "spoils_in": "1 day 12 hours", - "container": "wrapper", - "comestible_type": "FOOD", - "symbol": "%", "description": "A sandwich of meat, vegetables, and cheese with condiments. Tasty and nutritious!", "price": "12 USD", "price_postapoc": "3 USD", "primary_material": "wheat", - "volume": "500 ml", "material": [ "flesh", "veggy", "wheat", "milk" ], - "fun": 12, "vitamins": [ [ "vitA", 8 ], [ "vitC", 26 ], @@ -48,13 +60,12 @@ [ "veggy_allergen", 1 ], [ "wheat_allergen", 1 ], [ "milk_allergen", 1 ] - ], - "charges": 4 + ] }, { "type": "COMESTIBLE", "id": "sandwich_cheese_grilled", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "grilled cheese sandwich", "str_pl": "grilled cheese sandwiches" }, "calories": 160, "description": "A delicious grilled cheese sandwich, because everything is better with melted cheese.", @@ -68,7 +79,7 @@ { "type": "COMESTIBLE", "id": "sandwich_cheese", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "cheese sandwich", "str_pl": "cheese sandwiches" }, "calories": 160, "description": "A simple cheese sandwich.", @@ -81,7 +92,7 @@ { "type": "COMESTIBLE", "id": "sandwich_jam", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "jam sandwich", "str_pl": "jam sandwiches" }, "conditional_names": [ { "type": "COMPONENT_ID", "condition": "apple", "name": "apple %s" }, @@ -122,7 +133,7 @@ { "type": "COMESTIBLE", "id": "sandwich_fairy", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str_sp": "fairy bread" }, "calories": 200, "description": "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-to-crust slathering of butter, and sprinkles. Supposedly a staple of birthday parties in Australia.", @@ -135,7 +146,7 @@ { "type": "COMESTIBLE", "id": "sandwich_honey", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "honey sandwich", "str_pl": "honey sandwiches" }, "calories": 200, "description": "A delicious honey sandwich.", @@ -148,7 +159,7 @@ { "type": "COMESTIBLE", "id": "sandwich_sauce", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "sauce sandwich", "str_pl": "sauce sandwiches" }, "conditional_names": [ { @@ -208,7 +219,7 @@ { "type": "COMESTIBLE", "id": "sandwich_veggy", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "vegetable sandwich", "str_pl": "vegetable sandwiches" }, "calories": 180, "description": "Bread and vegetables, that's it.", @@ -222,7 +233,7 @@ { "type": "COMESTIBLE", "id": "sandwich_t", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "meat sandwich", "str_pl": "meat sandwiches" }, "conditional_names": [ { @@ -295,7 +306,7 @@ { "type": "COMESTIBLE", "id": "fish_sandwich", - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "name": { "str": "fish sandwich", "str_pl": "fish sandwiches" }, "calories": 200, "description": "A delicious fish sandwich.", @@ -309,7 +320,7 @@ "type": "COMESTIBLE", "id": "sandwich_okay", "name": { "str": "okay sandwich", "str_pl": "okay sandwiches" }, - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "looks_like": "sandwich_deluxe", "description": "A simple sandwich, little more than meat and veggies on bread. Rather dry.", "price": "2 USD", @@ -322,7 +333,7 @@ "type": "COMESTIBLE", "id": "sandwich_deluxe_nocheese", "name": { "str": "dairy-free deluxe sandwich", "str_pl": "dairy-free deluxe sandwiches" }, - "copy-from": "sandwich_deluxe", + "copy-from": "sandwich_generic", "looks_like": "sandwich_deluxe", "conditional_names": [ { diff --git a/data/json/items/comestibles/veggy_dishes.json b/data/json/items/comestibles/veggy_dishes.json index 15e880c41080..738d88e3ebbb 100644 --- a/data/json/items/comestibles/veggy_dishes.json +++ b/data/json/items/comestibles/veggy_dishes.json @@ -908,12 +908,19 @@ "type": "COMESTIBLE", "id": "veggy_sausage", "name": "smoked veggy sausage", - "copy-from": "sausage", + "weight": "148 g", + "comestible_type": "FOOD", + "symbol": "%", + "quench": -1, "calories": 56, "healthy": 1, "material": [ "veggy" ], "description": "A plant based sausage that has been cured and smoked for long term storage.", + "price": "16 USD", + "volume": "250 ml", + "price_postapoc": "3 USD", "fun": 4, + "flags": [ "EATEN_HOT", "SMOKED" ], "vitamins": [ [ "veggy_allergen", 1 ] ] }, { diff --git a/data/json/items/furniture.json b/data/json/items/furniture.json index 7f44cf134f55..13a7fa07db8c 100644 --- a/data/json/items/furniture.json +++ b/data/json/items/furniture.json @@ -25,7 +25,8 @@ "price_postapoc": "5 USD", "material": "steel", "symbol": "{", - "color": "light_cyan" + "color": "light_cyan", + "category": "scrap_electronics" }, { "id": "freezer", @@ -39,7 +40,8 @@ "price_postapoc": "5 USD", "material": "steel", "symbol": "{", - "color": "blue" + "color": "blue", + "category": "scrap_electronics" }, { "id": "glass_fridge", @@ -54,7 +56,8 @@ "price_postapoc": "5 USD", "material": [ "steel", "glass" ], "symbol": "{", - "color": "light_cyan" + "color": "light_cyan", + "category": "scrap_electronics" }, { "id": "glass_freezer", @@ -68,7 +71,8 @@ "price_postapoc": "5 USD", "material": [ "steel", "glass" ], "symbol": "{", - "color": "blue" + "color": "blue", + "category": "scrap_electronics" }, { "id": "oven", @@ -82,7 +86,8 @@ "price_postapoc": "5 USD", "material": "steel", "symbol": "#", - "color": "dark_gray" + "color": "dark_gray", + "category": "scrap_electronics" }, { "id": "plut_generator_item", @@ -96,6 +101,7 @@ "price_postapoc": "100 USD", "material": "steel", "symbol": "0", - "color": "light_green" + "color": "light_green", + "category": "scrap_electronics" } ] diff --git a/data/json/items/generic.json b/data/json/items/generic.json index bf4082af0171..c879064de99f 100644 --- a/data/json/items/generic.json +++ b/data/json/items/generic.json @@ -200,7 +200,7 @@ "flags": [ "NO_SALVAGE" ], "weight": "114 g", "volume": "250 ml", - "category": "spare_parts", + "category": "scrap_fabric", "stackable": true }, { @@ -227,7 +227,7 @@ "flags": [ "NO_SALVAGE" ], "weight": "100 g", "volume": "250 ml", - "category": "spare_parts", + "category": "scrap_fabric", "to_hit": -1, "stackable": true }, @@ -244,14 +244,14 @@ "flags": [ "NO_SALVAGE" ], "weight": "100 g", "volume": "250 ml", - "category": "spare_parts", + "category": "scrap_fabric", "to_hit": -1, "stackable": true }, { "type": "GENERIC", "id": "nomex", - "category": "spare_parts", + "category": "scrap_fabric", "symbol": ",", "color": "light_gray", "name": { "str": "Nomex patch", "str_pl": "Nomex patches" }, @@ -267,7 +267,7 @@ { "type": "GENERIC", "id": "superglue", - "category": "spare_parts", + "category": "chems", "symbol": ",", "color": "white", "name": { "str_sp": "superglue" }, @@ -285,7 +285,7 @@ "type": "GENERIC", "id": "bone_glue", "symbol": ",", - "category": "spare_parts", + "category": "chems", "color": "brown", "name": { "str": "bone glue" }, "description": "Glue made from boiling animal bones. The adhesive isn't strong enough for heavy-duty usages, but it can be used as a varnish or holding together small items.", @@ -327,7 +327,7 @@ { "type": "GENERIC", "id": "chain", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str": "steel chain" }, "description": "A heavy steel chain. Useful as a weapon, or for crafting. It has a chance to wrap around your target, allowing for a bonus unarmed attack.", "weight": "3628 g", @@ -344,7 +344,7 @@ { "type": "GENERIC", "id": "chitin_piece", - "category": "spare_parts", + "category": "chems", "symbol": ",", "color": "light_gray", "name": { "str": "chunk of chitin", "str_pl": "chunks of chitin" }, @@ -363,7 +363,7 @@ { "type": "GENERIC", "id": "mutant_bug_hydrogen_sacs", - "category": "spare_parts", + "category": "chems", "symbol": "o", "color": "light_gray", "name": { "str": "cluster of gas sacs", "str_pl": "clusters of gas sacs" }, @@ -406,7 +406,7 @@ { "id": "bundle_rag", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_fabric", "name": { "str": "bundle of rags", "str_pl": "bundles of rags" }, "description": "Cotton rags, bundled tightly together for storage. Activate or disassemble to unpack.", "weight": "800 g", @@ -422,7 +422,7 @@ { "id": "bundle_leather", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_fabric", "name": { "str": "bundle of leather", "str_pl": "bundles of leather" }, "description": "Leather patches, bundled tightly together for storage. Disassemble to unpack.", "weight": "1000 g", @@ -438,7 +438,7 @@ { "id": "bundle_wool", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_fabric", "name": { "str": "bundle of felt", "str_pl": "bundles of felt" }, "description": "Felt patches, bundled tightly together for storage. Disassemble to unpack.", "weight": "1000 g", @@ -541,7 +541,8 @@ "material": "plastic", "weight": "18 g", "volume": "5 ml", - "to_hit": -3 + "to_hit": -3, + "category": "valuables" }, { "type": "GENERIC", @@ -555,7 +556,8 @@ "material": "plastic", "weight": "18 g", "volume": "1 ml", - "to_hit": -3 + "to_hit": -3, + "category": "valuables" }, { "type": "GENERIC", @@ -569,7 +571,8 @@ "material": [ "plastic" ], "weight": "30 g", "volume": "250 ml", - "to_hit": -3 + "to_hit": -3, + "category": "valuables" }, { "type": "GENERIC", @@ -578,7 +581,7 @@ "color": "yellow", "name": { "str": "candlestick" }, "description": "A gold candlestick.", - "category": "other", + "category": "valuables", "price": "100 USD", "price_postapoc": "10 cent", "material": "gold", @@ -647,7 +650,7 @@ "color": "light_gray", "name": { "str": "tree spile" }, "description": "A hollow metal cylinder which is inserted in a tree crust in order to slowly harvest its sap. Can be used on a maple tree in between late winter and early spring to harvest maple sap.", - "category": "tools", + "category": "tools_cooking", "price": "5 cent", "price_postapoc": "10 cent", "material": "steel", @@ -661,7 +664,7 @@ "color": "light_gray", "name": { "str": "wire" }, "description": "A length of thin, relatively stiff, steel wire. Like the sort you find in wire fences.", - "category": "spare_parts", + "category": "scrap_metal", "price": "200 USD", "price_postapoc": "1 USD", "material": "steel", @@ -683,7 +686,8 @@ "weight": "302 g", "volume": "500 ml", "to_hit": -2, - "stackable": true + "stackable": true, + "category": "scrap_metal" }, { "type": "GENERIC", @@ -692,7 +696,7 @@ "color": "light_gray", "name": { "str": "steel mesh", "str_pl": "steel meshes" }, "description": "A mat of woven fine steel wire, useful for dryer lint traps and reusable coffee filter baskets. You could put these on a window to keep mosquitoes and other bugs out, but chainlink fencing will do these days.", - "category": "spare_parts", + "category": "scrap_metal", "weight": "318 g", "volume": "500 ml", "price": "7 USD", @@ -707,7 +711,7 @@ "color": "dark_gray", "name": { "str": "rebar" }, "description": "A length of rebar, makes a nice melee weapon, and could be handy in constructing tougher walls and such.", - "category": "spare_parts", + "category": "scrap_metal", "price": "75 USD", "price_postapoc": "25 cent", "material": "steel", @@ -725,7 +729,7 @@ "color": "dark_gray", "name": { "str": "small railroad track" }, "description": "A length of track, made from some planks and rails.", - "category": "spare_parts", + "category": "scrap_metal", "price": "75 USD", "price_postapoc": "10 cent", "material": [ "wood", "steel" ], @@ -740,7 +744,7 @@ "color": "light_gray", "name": { "str_sp": "concrete" }, "description": "Some concrete, ready to be used in a construction project.", - "category": "spare_parts", + "category": "rocks", "container": "bag_canvas", "price": "100 USD", "price_postapoc": "25 cent", @@ -798,7 +802,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "spring" }, - "category": "spare_parts", + "category": "scrap_metal", "description": "A large, heavy-duty spring. Expands with significant force when compressed.", "price": "10 USD", "price_postapoc": "1 USD", @@ -860,7 +864,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "heating element" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A heating element, like the ones used in hotplates or kettles.", "price": "10 USD", "price_postapoc": "10 cent", @@ -874,7 +878,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "bimetal thermostat" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A simple thermostat controlled by thermal expansion of a bimetal strip.", "price": "10 USD", "price_postapoc": "10 cent", @@ -895,7 +899,8 @@ "weight": "15000 g", "volume": "20 L", "bashing": 5, - "to_hit": -5 + "to_hit": -5, + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -903,7 +908,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "pilot light" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A pilot light from a gas-burning device, this particular one is a simple piezoelectric igniter.", "price": "10 USD", "price_postapoc": "10 cent", @@ -950,7 +955,8 @@ "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "725 g", - "volume": "750 ml" + "volume": "750 ml", + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -963,7 +969,8 @@ "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "11339 g", - "volume": "9 L" + "volume": "9 L", + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -971,7 +978,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "laptop computer" }, - "category": "other", + "category": "electronics", "description": "A broken laptop, basically a paperweight now.", "price": "10 USD", "price_postapoc": "10 cent", @@ -986,7 +993,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken eyebot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken eyebot. Much less threatening now that it won't be calling for backup. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -1004,7 +1011,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken skitterbot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken skitterbot. Much less threatening now that it lies limp on solid ground. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -1022,7 +1029,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken lab defense bot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken lab defense bot, with its casing broken and fluid drained. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -1040,7 +1047,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken police bot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken police bot. Much less threatening now that it's quiet and still. Could be gutted for parts.", "price": "300 USD", "price_postapoc": "10 cent", @@ -1058,7 +1065,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "broken nurse bot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken nurse bot. Its smooth face staring vacantly into empty space. Could be gutted for parts.", "price": "300 USD", "price_postapoc": "10 cent", @@ -1076,7 +1083,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "broken grocery bot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken grocery bot. Its smiling face staring vacantly into empty space. Could be gutted for parts.", "price": "300 USD", "price_postapoc": "10 cent", @@ -1094,7 +1101,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "broken grocery bot" }, - "category": "other", + "category": "scrap_electronics", "description": "The body of a busted grocery bot. Its tarnished face is still smiling. Could be gutted for parts.", "price": "300 USD", "price_postapoc": "10 cent", @@ -1112,7 +1119,7 @@ "symbol": ",", "color": "yellow", "name": { "str": "broken hauler bot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken hauler bot, now just a mass of limp mechanical limbs and busted chassis. Only useful for parts now.", "price": "10 USD", "price_postapoc": "10 cent", @@ -1136,7 +1143,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken riot control bot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken riot control bot. Much less threatening now that it's out of gas. Could be gutted for parts.", "price": "300 USD", "price_postapoc": "10 cent", @@ -1154,7 +1161,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken prototype robot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken prototype robot, well more broken than before. Could be gutted for parts.", "price": "300 USD", "price_postapoc": "10 cent", @@ -1172,7 +1179,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken miner bot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken miner bot. Much less threatening now that it's no longer capable of drilling anything. Could be gutted for parts.", "price": "200 USD", "price_postapoc": "10 cent", @@ -1198,7 +1205,8 @@ "material": [ "superalloy" ], "symbol": ";", "color": "light_green", - "flags": [ "TRADER_AVOID", "NO_REPAIR" ] + "flags": [ "TRADER_AVOID", "NO_REPAIR" ], + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -1214,7 +1222,8 @@ "material": [ "superalloy" ], "symbol": ";", "color": "light_green", - "flags": [ "TRADER_AVOID", "NO_REPAIR" ] + "flags": [ "TRADER_AVOID", "NO_REPAIR" ], + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -1230,7 +1239,8 @@ "material": [ "superalloy" ], "symbol": ";", "color": "light_green", - "flags": [ "TRADER_AVOID", "NO_REPAIR" ] + "flags": [ "TRADER_AVOID", "NO_REPAIR" ], + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -1238,7 +1248,7 @@ "symbol": ",", "color": "yellow", "name": { "str": "broken riot dispatch", "str_pl": "broken riot dispatches" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken riot dispatch, with its mesh midsection filled with fried manhacks and its motor limp and still. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -1256,7 +1266,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken military dispatch", "str_pl": "broken military dispatches" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken military dispatch. Though the scratched, disarmed manhacks visible in its belly are disarmed, their destructive potential still inspires a spark of fear, even now. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -1274,7 +1284,7 @@ "symbol": ",", "color": "light_green", "name": { "str": "broken manhack" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken manhack. Much less threatening now that it lies limp on solid ground. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -1292,7 +1302,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken grenade hack" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken grenade hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", "price": "90 USD", "price_postapoc": "10 cent", @@ -1310,7 +1320,7 @@ "symbol": ",", "color": "magenta", "name": { "str": "broken mininuke hack" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken magenta hack. Just looking at the wreck makes you shiver. Could be gutted for parts.", "price": "180 USD", "price_postapoc": "10 cent", @@ -1328,7 +1338,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "broken tear gas hack" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken tear gas hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", "price": "90 USD", "price_postapoc": "10 cent", @@ -1346,7 +1356,7 @@ "symbol": ",", "color": "cyan", "name": { "str": "broken EMP hack" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken EMP hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", "price": "90 USD", "price_postapoc": "10 cent", @@ -1364,7 +1374,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "broken flashbang hack" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken flashbang hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", "price": "90 USD", "price_postapoc": "10 cent", @@ -1382,7 +1392,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "broken C-4 hack" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken C-4 hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", "price": "90 USD", "price_postapoc": "10 cent", @@ -1430,7 +1440,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "processor board" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A central processor unit, useful in advanced electronics crafting.", "price": "120 USD", "price_postapoc": "10 cent", @@ -1445,7 +1455,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "RAM" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A stick of memory. Useful in advanced electronics crafting.", "price": "90 USD", "price_postapoc": "10 cent", @@ -1461,7 +1471,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "power converter" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A power supply unit. Useful in lots of electronics recipes.", "price": "170 USD", "price_postapoc": "25 cent", @@ -1477,7 +1487,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "amplifier circuit" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A circuit designed to amplify the strength of a signal. Useful in lots of electronics recipes.", "price": "200 USD", "price_postapoc": "10 cent", @@ -1492,7 +1502,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "transponder circuit" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A circuit designed to repeat a signal. Useful for crafting communications equipment.", "price": "140 USD", "price_postapoc": "10 cent", @@ -1507,7 +1517,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "signal receiver" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A module designed to receive many forms of signals. Useful for crafting communications equipment.", "price": "135 USD", "price_postapoc": "10 cent", @@ -1522,7 +1532,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "large LCD screen" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A large backlit screen, used for displaying images. Useful in some electronics recipes.", "price": "100 USD", "price_postapoc": "10 cent", @@ -1537,7 +1547,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "small LCD screen" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A small backlit screen, used for displaying images. Useful in some electronics recipes.", "price": "240 USD", "price_postapoc": "10 cent", @@ -1552,7 +1562,7 @@ "symbol": ".", "color": "light_cyan", "name": { "str": "high-quality lens", "str_pl": "high-quality lenses" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A high-quality lens, useful for focusing or diffusing light. Might be useful for starting a fire.", "price": "1200 USD", "price_postapoc": "1 USD", @@ -1569,7 +1579,7 @@ "symbol": ".", "color": "light_cyan", "name": { "str": "small high-quality lens", "str_pl": "small high-quality lenses" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A small high-quality lens, useful for focusing or diffusing light. Might be useful for crafting.", "price": "60 USD", "price_postapoc": "50 cent", @@ -1583,7 +1593,7 @@ "symbol": ".", "color": "dark_gray", "name": { "str": "pair of tinted glass", "str_pl": "pairs of tinted glass" }, - "category": "spare_parts", + "category": "scrap_glass", "description": "A pair of small darkened glass, like the one that sunglasses are made of.", "price": "10 USD", "price_postapoc": "10 cent", @@ -1598,7 +1608,7 @@ "symbol": ",", "color": "dark_gray", "name": { "str": "burnt out bionic" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "Once a valuable bionic implant, it has not held up well under repeated use. This object has been destroyed by excessive electric current and is now useless.", "price": "135 USD", "price_postapoc": "10 cent", @@ -1642,7 +1652,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "antenna" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A simple thin aluminum shaft. Useful in lots of electronics recipes.", "price": "80 USD", "price_postapoc": "10 cent", @@ -1657,7 +1667,7 @@ "symbol": ",", "color": "light_gray", "name": { "str": "micro motor" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A very small electric motor like those used in RC cars. Useful in lots of electronics recipes.", "price": "10 USD", "price_postapoc": "25 cent", @@ -1671,7 +1681,7 @@ "symbol": ",", "color": "green", "name": { "str": "circuit board" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A printed card that supports and electrically connects electronic components on a non-conductive substrate.", "price": "50 USD", "price_postapoc": "10 cent", @@ -1686,7 +1696,7 @@ "symbol": ",", "color": "green", "name": { "str": "electronic scrap" }, - "category": "spare_parts", + "category": "scrap_electronics", "description": "A random collection of resistors, capacitors, and diodes which have been stripped from printed circuits.", "price": "30 USD", "price_postapoc": "10 cent", @@ -1723,12 +1733,13 @@ "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "2857 g", - "volume": "1 L" + "volume": "1 L", + "category": "scrap_electronics" }, { "type": "GENERIC", "id": "ceramic_armor", - "category": "spare_parts", + "category": "scrap_ceramics", "symbol": ",", "color": "yellow", "name": { "str": "ceramic armor plate" }, @@ -1776,7 +1787,8 @@ "name": { "str": "rag" }, "description": "This is a largish piece of cloth, useful in crafting and possibly for staunching bleeding.", "copy-from": "rag_abstract", - "use_action": [ { "type": "heal", "move_cost": 200, "used_up_item": "rag_bloody", "bleed": 0.5, "limb_power": 0 }, "WASH_HARD_ITEMS" ] + "use_action": [ { "type": "heal", "move_cost": 200, "used_up_item": "rag_bloody", "bleed": 0.5, "limb_power": 0 }, "WASH_HARD_ITEMS" ], + "category": "scrap_fabric" }, { "type": "GENERIC", @@ -1799,7 +1811,8 @@ "material": [ "steel", "cotton" ], "symbol": ";", "color": "light_gray", - "use_action": "GUN_CLEAN" + "use_action": "GUN_CLEAN", + "category": "tools_workshop" }, { "type": "GENERIC", @@ -1815,7 +1828,8 @@ "volume": "250 ml", "bashing": 4, "to_hit": -3, - "flags": [ "WATCH", "ALARMCLOCK" ] + "flags": [ "WATCH", "ALARMCLOCK" ], + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -1843,7 +1857,8 @@ "material": "plastic", "flags": [ "MC_MOBILE", "MC_RANDOM_STUFF", "MC_MAY_BE_ENCRYPTED", "MC_TURN_USED" ], "weight": "5 g", - "volume": "2 ml" + "volume": "2 ml", + "category": "valuables" }, { "type": "GENERIC", @@ -1857,7 +1872,8 @@ "material": "plastic", "flags": [ "MC_MOBILE", "MC_USED" ], "weight": "5 g", - "volume": "1 ml" + "volume": "1 ml", + "category": "valuables" }, { "type": "GENERIC", @@ -1871,7 +1887,8 @@ "material": "plastic", "flags": [ "MC_MOBILE", "MC_ENCRYPTED", "MC_TURN_USED" ], "weight": "5 g", - "volume": "1 ml" + "volume": "1 ml", + "category": "valuables" }, { "type": "GENERIC", @@ -1885,7 +1902,8 @@ "material": "plastic", "flags": [ "MC_MOBILE", "MC_ENCRYPTED", "MC_TURN_USED", "MC_SCIENCE_STUFF" ], "weight": "5 g", - "volume": "1 ml" + "volume": "1 ml", + "category": "valuables" }, { "type": "GENERIC", @@ -1909,7 +1927,7 @@ "color": "dark_gray", "name": { "str": "manhole cover" }, "description": "A heavy iron disc that typically covers a ladder into the sewers. Lifting it from the manhole is impossible without a crowbar.", - "category": "other", + "category": "scrap_metal", "price": "200 USD", "price_postapoc": "10 cent", "material": "iron", @@ -1930,7 +1948,8 @@ "weight": "220 g", "volume": "500 ml", "to_hit": -2, - "flags": [ "TRADER_AVOID", "TINDER" ] + "flags": [ "TRADER_AVOID", "TINDER" ], + "category": "scrap_wood" }, { "type": "GENERIC", @@ -1942,7 +1961,8 @@ "weight": "90 g", "volume": "250 ml", "to_hit": -2, - "flags": [ "TRADER_AVOID" ] + "flags": [ "TRADER_AVOID" ], + "category": "cooking_ingredients" }, { "type": "GENERIC", @@ -1971,7 +1991,8 @@ "material": [ "veggy" ], "volume": "1500 ml", "price": "0 cent", - "price_postapoc": "10 cent" + "price_postapoc": "10 cent", + "category": "cooking_ingredients" }, { "type": "GENERIC", @@ -1984,7 +2005,8 @@ "material": [ "veggy" ], "volume": "250 ml", "price": "0 cent", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "cooking_ingredients" }, { "type": "GENERIC", @@ -1997,7 +2019,8 @@ "material": [ "veggy" ], "volume": "250 ml", "price": "0 cent", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "cooking_ingredients" }, { "type": "GENERIC", @@ -2010,7 +2033,8 @@ "material": [ "veggy" ], "volume": "250 ml", "price": "0 cent", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "cooking_ingredients" }, { "type": "GENERIC", @@ -2018,7 +2042,7 @@ "symbol": ",", "color": "brown", "name": { "str": "lump of clay", "str_pl": "lumps of clay" }, - "category": "spare_parts", + "category": "scrap_ceramics", "description": "A fresh piece of clay. Useful for some crafting recipes.", "price": "531 cent", "price_postapoc": "10 cent", @@ -2033,7 +2057,7 @@ "symbol": ",", "color": "brown", "name": { "str": "brick" }, - "category": "spare_parts", + "category": "scrap_ceramics", "description": "A fire hardened building block used in masonry construction.", "price": "25 USD", "price_postapoc": "10 cent", @@ -2051,7 +2075,7 @@ "color": "light_gray", "name": { "str_sp": "mortar" }, "description": "Some mortar, ready to be used in building projects.", - "category": "spare_parts", + "category": "rocks", "container": "bag_canvas", "price": "50 USD", "price_postapoc": "25 cent", @@ -2063,7 +2087,7 @@ { "type": "GENERIC", "id": "soft_adobe_brick", - "category": "spare_parts", + "category": "scrap_ceramics", "symbol": ",", "color": "brown", "name": { "str": "soft adobe brick" }, @@ -2088,7 +2112,7 @@ { "type": "GENERIC", "id": "adobe_brick", - "category": "spare_parts", + "category": "scrap_ceramics", "symbol": ",", "color": "yellow", "looks_like": "brick", @@ -2111,7 +2135,7 @@ "color": "brown", "name": { "str_sp": "adobe mortar" }, "description": "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used to glue larger, heavier pieces of mud and clay together.", - "category": "spare_parts", + "category": "rocks", "container": "bag_canvas", "price": "2 USD", "price_postapoc": "10 cent", @@ -2133,7 +2157,8 @@ "weight": "323 g", "volume": "250 ml", "bashing": 4, - "to_hit": 1 + "to_hit": 1, + "category": "scrap_wood" }, { "type": "GENERIC", @@ -2148,7 +2173,8 @@ "weight": "323 g", "volume": "250 ml", "bashing": 4, - "to_hit": 1 + "to_hit": 1, + "category": "scrap_wood" }, { "type": "GENERIC", @@ -2163,7 +2189,8 @@ "weight": "323 g", "volume": "250 ml", "bashing": 4, - "to_hit": 1 + "to_hit": 1, + "category": "scrap_wood" }, { "type": "GENERIC", @@ -2177,7 +2204,8 @@ "material": "diamond", "weight": "200 mg", "volume": "6 ml", - "to_hit": -5 + "to_hit": -5, + "category": "valuables" }, { "type": "GENERIC", @@ -2191,7 +2219,8 @@ "material": "gemstone", "weight": "200 mg", "volume": "6 ml", - "to_hit": -5 + "to_hit": -5, + "category": "valuables" }, { "type": "GENERIC", @@ -2302,7 +2331,7 @@ "flags": [ "NO_SALVAGE" ], "weight": "100 g", "volume": "125 ml", - "category": "spare_parts", + "category": "scrap_fabric", "stackable": true, "to_hit": -1 }, @@ -2319,7 +2348,7 @@ "flags": [ "NO_SALVAGE" ], "weight": "114 g", "volume": "170 ml", - "category": "spare_parts", + "category": "scrap_fabric", "stackable": true, "to_hit": -1 }, @@ -2364,7 +2393,7 @@ "weight": "514 g", "volume": "1 L", "flags": [ "SLEEP_AID" ], - "category": "other" + "category": "scrap_fabric" }, { "type": "GENERIC", @@ -2379,7 +2408,7 @@ "weight": "774 g", "volume": "1750 ml", "flags": [ "SLEEP_AID" ], - "category": "other" + "category": "scrap_fabric" }, { "type": "GENERIC", @@ -2394,7 +2423,7 @@ "weight": "514 g", "volume": "1 L", "flags": [ "SLEEP_AID" ], - "category": "other" + "category": "scrap_fabric" }, { "type": "GENERIC", @@ -2408,7 +2437,8 @@ "material": [ "cotton" ], "weight": "514 g", "volume": "750 ml", - "flags": [ "SLEEP_AID" ] + "flags": [ "SLEEP_AID" ], + "category": "scrap_fabric" }, { "type": "GENERIC", @@ -2422,7 +2452,8 @@ "material": [ "cotton" ], "weight": "400 g", "volume": "850 ml", - "flags": [ "SLEEP_AID" ] + "flags": [ "SLEEP_AID" ], + "category": "scrap_fabric" }, { "type": "GENERIC", @@ -2435,7 +2466,8 @@ "symbol": ",", "material": [ "paper" ], "volume": "250 ml", - "price": "0 cent" + "price": "0 cent", + "category": "scrap_wood" }, { "id": "pouch_autoclave", @@ -2637,7 +2669,8 @@ 50000, 100000 ], - "ammo": "money" + "ammo": "money", + "category": "valuables" }, { "id": "robofac_test_data", @@ -2661,7 +2694,7 @@ "color": "yellow", "name": { "str": "silver gas discount card" }, "description": "This card gives you a little discount on the purchase of gasoline.", - "category": "other", + "category": "valuables", "price": "5 USD", "price_postapoc": "0 cent", "material": "plastic", @@ -2677,7 +2710,7 @@ "color": "yellow", "name": { "str": "gold gas discount card" }, "description": "This card gives you a good discount on the purchase of gasoline.", - "category": "other", + "category": "valuables", "price": "5 USD", "price_postapoc": "0 cent", "material": "plastic", @@ -2693,7 +2726,7 @@ "color": "yellow", "name": { "str": "platinum gas discount card" }, "description": "This card gives you a splendid discount on the purchase of gasoline.", - "category": "other", + "category": "valuables", "price": "5 USD", "price_postapoc": "0 cent", "material": "plastic", @@ -2714,7 +2747,8 @@ "material": "plastic", "weight": "6 g", "volume": "15 ml", - "to_hit": -3 + "to_hit": -3, + "category": "tools_entry" }, { "type": "GENERIC", @@ -2728,7 +2762,8 @@ "material": "plastic", "weight": "6 g", "volume": "5 ml", - "to_hit": -3 + "to_hit": -3, + "category": "tools_entry" }, { "type": "GENERIC", @@ -2743,7 +2778,8 @@ "material": "plastic", "weight": "6 g", "volume": "5 ml", - "to_hit": -3 + "to_hit": -3, + "category": "tools_entry" }, { "type": "GENERIC", @@ -2758,7 +2794,7 @@ "flags": [ "NO_SALVAGE" ], "weight": "80 g", "volume": "250 ml", - "category": "spare_parts", + "category": "scrap_fabric", "stackable": true }, { @@ -2810,7 +2846,8 @@ "weight": "10 g", "volume": "250 ml", "price": "5 USD", - "price_postapoc": "10 cent" + "price_postapoc": "10 cent", + "category": "scrap_electronics" }, { "id": "shrapnel", @@ -2830,7 +2867,7 @@ { "id": "clay_pot_flower", "type": "GENERIC", - "category": "other", + "category": "scrap_ceramics", "name": { "str": "clay flower pot" }, "description": "A nice looking clay pot used for planting.", "weight": "500 g", @@ -2846,7 +2883,7 @@ { "id": "plastic_pot_flower", "type": "GENERIC", - "category": "other", + "category": "scrap_plastic", "name": { "str": "plastic flower pot" }, "description": "A cheap plastic pot used for planting.", "weight": "190 g", @@ -3018,7 +3055,8 @@ "price_postapoc": "1 USD", "material": [ "steel", "plastic", "wood" ], "weight": "11339 g", - "volume": "3 L" + "volume": "3 L", + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -3026,7 +3064,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken turret" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken turret. Much less threatening now that it's laid limp on solid ground. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -3062,7 +3100,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken secubot" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken secubot, with its casing broken and fluid drained. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -3080,7 +3118,7 @@ "symbol": ",", "color": "green", "name": { "str": "broken M202A1 TALON" }, - "category": "other", + "category": "scrap_electronics", "description": "A broken TALON UGV, with its casing broken and fluid drained. Could be gutted for parts.", "price": "10 USD", "price_postapoc": "10 cent", @@ -3098,7 +3136,7 @@ "symbol": ",", "color": "brown", "name": { "str": "fire brick" }, - "category": "spare_parts", + "category": "scrap_ceramics", "description": "A reinforced brick designed to withstand intense heat. It could also be used as an impromptu anvil for light metalworking.", "price": "25 USD", "price_postapoc": "10 cent", diff --git a/data/json/items/generic/bathroom_house.json b/data/json/items/generic/bathroom_house.json index e20ef1c415df..ebdf0ac9ff0b 100644 --- a/data/json/items/generic/bathroom_house.json +++ b/data/json/items/generic/bathroom_house.json @@ -27,7 +27,8 @@ "weight": "110 g", "material": [ "plastic", "steel" ], "cutting": 2, - "qualities": [ [ "CUT", 1 ], [ "CUT_FINE", 1 ] ] + "qualities": [ [ "CUT", 1 ], [ "CUT_FINE", 1 ] ], + "category": "scrap_plastic" }, { "id": "hairbrush", @@ -41,7 +42,8 @@ { "id": "hbrush2", "text": "An old-fashioned hair-straightening device with a faux-wood handle." }, { "id": "hbrush3", "text": "A soft, cushioned hairbrush. The shiny chrome design appears modern." }, { "id": "hbrush4", "text": "A tacky kid's hairbrush. The cartoon whale on the handle seems friendly enough." } - ] + ], + "category": "scrap_plastic" }, { "id": "string_floss", @@ -67,7 +69,8 @@ }, { "id": "pcomb3", "text": "A comb made of soft plastic. Its tortoiseshell pattern makes it seem antique." }, { "id": "pcomb4", "text": "A comb which folds on a hinge, in case you want to look like a greaser." } - ] + ], + "category": "scrap_plastic" }, { "id": "hair_dryer", @@ -82,7 +85,8 @@ "weight": "680 g", "material": [ "plastic", "steel" ], "bashing": 3, - "to_hit": -1 + "to_hit": -1, + "category": "scrap_electronics" }, { "id": "curling_iron", @@ -97,6 +101,7 @@ "weight": "590 g", "material": [ "ceramic", "steel" ], "bashing": 3, - "to_hit": 1 + "to_hit": 1, + "category": "scrap_electronics" } ] diff --git a/data/json/items/generic/dining_kitchen.json b/data/json/items/generic/dining_kitchen.json index 2f6b13c7193d..e5725336a76c 100644 --- a/data/json/items/generic/dining_kitchen.json +++ b/data/json/items/generic/dining_kitchen.json @@ -124,7 +124,7 @@ { "copy-from": "base_ceramic_dish", "type": "GENERIC", - "category": "other", + "category": "scrap_ceramics", "id": "ceramic_plate", "name": { "str": "ceramic plate" }, "symbol": ",", @@ -133,7 +133,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_ceramics", "id": "ceramic_bowl", "name": { "str": "ceramic bowl" }, "symbol": ")", @@ -144,7 +144,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_ceramics", "id": "ceramic_cup", "name": { "str": "ceramic cup" }, "symbol": "u", @@ -156,7 +156,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_ceramics", "id": "ceramic_mug", "name": { "str": "coffee mug" }, "symbol": "u", @@ -193,7 +193,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_metal", "id": "tin_plate", "name": { "str": "tin plate" }, "symbol": ",", @@ -204,7 +204,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_metal", "id": "tin_cup", "name": { "str": "tin cup" }, "symbol": "u", @@ -217,7 +217,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_metal", "id": "bowl_pewter", "name": { "str": "pewter bowl" }, "description": "A small pewter serving bowl without a lid. Holds 250 ml of liquid.", @@ -228,7 +228,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_glass", "id": "glass", "name": { "str": "drinking glass", "str_pl": "drinking glasses" }, "symbol": "U", @@ -239,7 +239,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_glass", "id": "wine_glass", "name": { "str": "wine glass", "str_pl": "wine glasses" }, "proportional": { "weight": 0.5 }, @@ -251,7 +251,7 @@ }, { "type": "GENERIC", - "category": "other", + "category": "scrap_glass", "id": "glass_bowl", "name": { "str": "glass bowl" }, "symbol": "u", @@ -286,7 +286,7 @@ { "id": "plastic_bowl_kids", "type": "GENERIC", - "category": "other", + "category": "scrap_plastic", "name": { "str": "kiddie bowl" }, "symbol": "u", "proportional": { "weight": 0.6, "volume": 0.5 }, @@ -312,7 +312,7 @@ { "id": "sippy_cup", "type": "GENERIC", - "category": "other", + "category": "scrap_plastic", "name": { "str": "sippy cup" }, "symbol": "u", "proportional": { "weight": 0.4, "volume": 0.5 }, @@ -332,7 +332,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "pot", "name": { "str": "pot" }, "description": "Useful for boiling water when cooking spaghetti and more.", @@ -346,7 +346,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "iron_pot", "name": { "str": "cast-iron pot" }, "description": "This hefty black pot is made from cast iron and coated in a sturdy enamel.", @@ -360,7 +360,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "pot_copper", "name": { "str": "copper pot" }, "description": "Useful for boiling water when cooking spaghetti and more. Made from copper, with a lining of tin to prevent metal from leaching into acidic foods.", @@ -374,7 +374,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "casserole", "name": { "str": "casserole" }, "description": "A ceramic pot made for both cooking and serving, particularly one-pot dinners.", @@ -389,7 +389,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "stock_pot", "name": { "str": "stock pot" }, "description": "A large pot for making soup stocks. You could fit a whole turkey in there, with a bit of shoving.", @@ -405,7 +405,7 @@ { "id": "pot_canning", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "canning pot" }, "description": "A very large 25 liter pot, primarily meant for canning food in glass jars via the water bath method, though it can cook normal foods just as well. Canning foods with it will require a lot of water. If you're only canning a couple of jars at a time, you'd fill it up with rocks or something to displace the water above the lids.", "weight": "5625 g", @@ -423,7 +423,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "pan", "name": { "str": "cast-iron frying pan" }, "description": "A cast-iron pan. Makes a decent melee weapon, and is used for cooking.", @@ -440,7 +440,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "steel_pan", "name": { "str": "steel frying pan" }, "description": "A steel frying pan. Makes a decent melee weapon, and is used for cooking.", @@ -457,7 +457,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "copper_pan", "name": { "str": "copper frying pan" }, "description": "A copper frying pan, coated in a thin layer of tin. Makes a decent melee weapon, and is used for cooking.", @@ -475,7 +475,7 @@ { "id": "pot_makeshift", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "makeshift pot" }, "description": "A sheet of metal crudely hammered into a cooking pot. Good enough to cook food and boil water, but not as useful as proper cookware.", "weight": "6000 g", @@ -494,7 +494,7 @@ { "id": "pot_makeshift_copper", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "makeshift copper pot" }, "description": "A cooking pot crudely hammered out of copper. Good enough to cook food and boil water, but not as useful as proper cookware.", "weight": "884 g", @@ -512,7 +512,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "id": "kettle", "name": { "str": "kettle" }, "description": "A stovetop kettle for boiling water.", diff --git a/data/json/items/generic/string.json b/data/json/items/generic/string.json index 830e32aa17ef..db60ff0d566b 100644 --- a/data/json/items/generic/string.json +++ b/data/json/items/generic/string.json @@ -39,7 +39,7 @@ "id": "string_6", "type": "GENERIC", "stackable": true, - "category": "spare_parts", + "category": "scrap_fabric", "name": { "str": "short string" }, "description": "A 6-inch (or about 15 cm) long piece of cotton string.", "weight": "6 g", diff --git a/data/json/items/handloaded_bullets.json b/data/json/items/handloaded_bullets.json index 39cb32833056..d00b963ff890 100644 --- a/data/json/items/handloaded_bullets.json +++ b/data/json/items/handloaded_bullets.json @@ -34,8 +34,9 @@ "weight": "2 g", "bashing": 1, "ammo_type": "blunderbuss", - "damage": { "damage_type": "bullet", "amount": 55, "armor_multiplier": 3 }, - "range": 6, + "damage": { "damage_type": "bullet", "amount": 55, "armor_multiplier": 1.5 }, + "range": 0, + "shape": [ "cone", { "half_angle": 18, "length": 10 } ], "dispersion": 1000, "recoil": 780, "effects": [ "COOKOFF", "SHOT", "RECYCLED" ] @@ -55,8 +56,9 @@ "bashing": 1, "ammo_type": "blunderbuss", "//": "Balanced as standard FMJ to allow lower damage but more penetration over shot.", - "damage": { "damage_type": "bullet", "amount": 44, "armor_penetration": 24, "armor_multiplier": 2 }, - "range": 10, + "damage": { "damage_type": "bullet", "amount": 44, "armor_penetration": 24, "armor_multiplier": 1.5 }, + "range": 0, + "shape": [ "cone", { "half_angle": 10, "length": 12 } ], "dispersion": 1000, "recoil": 840, "effects": [ "COOKOFF", "SHOT", "RECYCLED" ] diff --git a/data/json/items/items_holiday.json b/data/json/items/items_holiday.json index 3adb618859a1..c9542a9f422e 100644 --- a/data/json/items/items_holiday.json +++ b/data/json/items/items_holiday.json @@ -66,6 +66,7 @@ "color": "green", "looks_like": "steel_plate", "flags": [ "ALLOWS_REMOTE_USE" ], - "use_action": { "type": "deploy_furn", "furn_type": "f_winter_wreath" } + "use_action": { "type": "deploy_furn", "furn_type": "f_winter_wreath" }, + "category": "deployables" } ] diff --git a/data/json/items/melee/knives_kitchen.json b/data/json/items/melee/knives_kitchen.json index fbab655cdcf2..8cb9cd59caf5 100644 --- a/data/json/items/melee/knives_kitchen.json +++ b/data/json/items/melee/knives_kitchen.json @@ -4,7 +4,7 @@ "name": { "str": "generic kitchen knife", "str_pl": "generic kitchen knives" }, "description": "generic item template", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "weapon_category": [ "KNIVES" ], "material": "steel", "symbol": ";", diff --git a/data/json/items/resources/glass.json b/data/json/items/resources/glass.json index d6b539f68189..54c53ec2757c 100644 --- a/data/json/items/resources/glass.json +++ b/data/json/items/resources/glass.json @@ -5,7 +5,7 @@ "symbol": ",", "color": "light_cyan", "name": { "str": "glass shard" }, - "category": "other", + "category": "scrap_glass", "description": "A broken shard of glass covered in sharp edges. With a piece of rag you could use it to make it a primitive weapon.", "material": "glass", "weight": "75 g", @@ -23,7 +23,7 @@ "color": "light_cyan", "name": { "str": "sheet of glass", "str_pl": "sheets of glass" }, "description": "A large sheet of glass. Easily shattered. Useful for repairing windows.", - "category": "spare_parts", + "category": "scrap_glass", "price": "50 USD", "price_postapoc": "1 USD", "material": "glass", @@ -46,7 +46,7 @@ "color": "light_blue", "name": { "str": "sheet of reinforced glass", "str_pl": "sheets of reinforced glass" }, "description": "A large sheet of glass strengthened with steel wiring.", - "category": "spare_parts", + "category": "scrap_glass", "price": "100 USD", "price_postapoc": "250 cent", "material": [ "glass", "steel" ], @@ -62,7 +62,7 @@ "color": "light_blue", "name": { "str": "pane of reinforced glass", "str_pl": "panes of reinforced glass" }, "description": "A small pane of glass strengthened with steel wiring.", - "category": "spare_parts", + "category": "scrap_glass", "price": "50 USD", "price_postapoc": "1 USD", "material": [ "glass", "steel" ], @@ -78,7 +78,7 @@ "color": "light_cyan", "name": { "str": "sheet of tempered glass", "str_pl": "sheets of tempered glass" }, "description": "A large, durable sheet of tempered glass, approximately six millimeters thick. A common type of safety glass with the curious property of breaking into small, non-lethal pieces upon shattering.", - "category": "spare_parts", + "category": "scrap_glass", "price": "100 USD", "price_postapoc": "1 USD", "material": "glass", diff --git a/data/json/items/resources/home_improvement.json b/data/json/items/resources/home_improvement.json index a30e702eaae8..39bcdec65db5 100644 --- a/data/json/items/resources/home_improvement.json +++ b/data/json/items/resources/home_improvement.json @@ -165,7 +165,7 @@ "symbol": ".", "color": "yellow", "name": { "str": "peephole" }, - "category": "spare_parts", + "category": "scrap_metal", "description": "A metal cylinder with a small lens inside intended to be installed on a door.", "price": "120 USD", "price_postapoc": "50 cent", @@ -181,7 +181,7 @@ "color": "brown", "looks_like": "r_carpet", "name": { "str": "mesh screen" }, - "category": "spare_parts", + "category": "scrap_plastic", "description": "A roll of fine mesh screen for bug barriers on porches.", "price": "12 USD", "price_postapoc": "50 cent", diff --git a/data/json/items/resources/metal.json b/data/json/items/resources/metal.json index d15ca316dfd9..b420ca57496f 100644 --- a/data/json/items/resources/metal.json +++ b/data/json/items/resources/metal.json @@ -5,7 +5,7 @@ "weapon_category": [ "BATONS" ], "name": { "str": "pipe" }, "description": "A steel pipe, makes a good melee weapon. Useful in a few crafting recipes.", - "category": "spare_parts", + "category": "scrap_metal", "weight": "1250 g", "to_hit": 1, "color": "dark_gray", @@ -22,7 +22,7 @@ { "id": "scrap", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str": "scrap metal" }, "description": "A bulky assortment of small bits of scrap steel useful in all kinds of crafting.", "weight": "50 g", @@ -43,7 +43,7 @@ "type": "GENERIC", "name": { "str": "spike" }, "description": "A large and slightly misshapen spike, could do some damage mounted on a vehicle.", - "category": "spare_parts", + "category": "scrap_metal", "weight": "550 g", "to_hit": -2, "color": "light_gray", @@ -62,7 +62,7 @@ "weapon_category": [ "BATONS" ], "name": { "str": "copper tubing" }, "description": "A copper tube, too thin to be much use as a melee weapon, but will do if nothing else is available. Useful in a few crafting recipes.", - "category": "spare_parts", + "category": "scrap_metal", "weight": "345 g", "to_hit": -1, "color": "light_red", @@ -77,7 +77,7 @@ { "id": "material_aluminium_ingot", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str": "aluminum ingot" }, "description": "A small aluminum ingot, standardized for further processing. Light but durable, this could be cast into various shapes for construction or ground down to a powder, for more… high-profile applications.", "weight": "270 g", @@ -93,7 +93,7 @@ { "id": "bismuth", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str_sp": "bismuth" }, "description": "A dense but brittle metal often used as an alternative to lead.", "weight": "2 g", @@ -112,7 +112,7 @@ { "id": "gold_small", "type": "AMMO", - "category": "spare_parts", + "category": "valuables", "name": { "str_sp": "gold" }, "description": "A soft shiny metal. Before the apocalypse this would've been worth a small fortune but now its value is greatly diminished.", "weight": "5 g", @@ -131,7 +131,7 @@ { "id": "platinum_small", "type": "AMMO", - "category": "spare_parts", + "category": "valuables", "name": { "str_sp": "platinum" }, "description": "A soft shiny metal. Before the apocalypse this would've been worth a small fortune but now its value is greatly diminished.", "weight": "5 g", @@ -150,7 +150,7 @@ { "id": "zinc_metal", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str_sp": "zinc" }, "description": "A slightly brittle metal. Apart from being an essential mineral that the body needs, it reacts readily with acids, alkalis and other non-metals. It can be crushed to make zinc powder, used in the production of batteries, among other things.", "weight": "70 mg", @@ -168,7 +168,7 @@ { "id": "lead", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str_sp": "lead" }, "description": "A soft dull metal known since ancient times. Due to its malleability it has a wide variety of uses including the manufacture of ammunition.", "weight": "3 g", @@ -187,7 +187,7 @@ { "id": "magnesium", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str_sp": "magnesium powder" }, "description": "A gray powder composed of the highly flammable alkaline earth metal magnesium. Useful for constructing flares and similar items.", "weight": "1120 mg", @@ -206,7 +206,7 @@ { "id": "silver_small", "type": "AMMO", - "category": "spare_parts", + "category": "valuables", "name": { "str_sp": "silver" }, "description": "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its value is now greatly diminished.", "weight": "3 g", @@ -225,7 +225,7 @@ { "id": "sheet_metal_small", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str": "small metal sheet" }, "description": "A small sheet of metal.", "looks_like": "sheet_metal", @@ -246,7 +246,7 @@ { "id": "steel_chunk", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str": "chunk of steel", "str_pl": "chunks of steel" }, "description": "A misshapen chunk of steel. Makes a decent weapon in a pinch, and is also useful for some crafting recipes.", "weight": "250 g", @@ -267,7 +267,7 @@ { "id": "steel_lump", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str": "lump of steel", "str_pl": "lumps of steel" }, "description": "A heavy formed piece of steel. Useful for some crafting recipes.", "weight": "1000 g", @@ -288,7 +288,7 @@ { "id": "hinge", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_metal", "name": { "str": "door hinge" }, "description": "A small metal hinge with two metal plates with screw holes. Useful for making doors.", "weight": "300 g", @@ -310,7 +310,7 @@ "symbol": ",", "color": "light_gray", "name": { "str_sp": "scrap copper" }, - "category": "spare_parts", + "category": "scrap_metal", "description": "A small chunk of copper, usable for crafting or repairs.", "price": "10 USD", "price_postapoc": "10 cent", @@ -326,7 +326,7 @@ { "id": "tin", "type": "AMMO", - "category": "spare_parts", + "category": "valuables", "price": "750 cent", "price_postapoc": "10 cent", "name": { "str_sp": "tin" }, @@ -345,7 +345,7 @@ { "id": "solder_wire", "type": "AMMO", - "category": "spare_parts", + "category": "scrap_electronics", "price": "50 USD", "price_postapoc": "50 cent", "name": { "str_sp": "solder" }, diff --git a/data/json/items/resources/misc.json b/data/json/items/resources/misc.json index 3eae9c2980b6..0f41c1ef6b9f 100644 --- a/data/json/items/resources/misc.json +++ b/data/json/items/resources/misc.json @@ -48,7 +48,8 @@ "cutting": 2, "to_hit": -1, "qualities": [ [ "BUTCHER", -66 ] ], - "stackable": true + "stackable": true, + "category": "scrap_ceramics" }, { "id": "fighter_sting", @@ -88,7 +89,7 @@ { "id": "mattress", "type": "GENERIC", - "category": "spare_parts", + "category": "deployables", "name": { "str": "mattress", "str_pl": "mattresses" }, "description": "This is a single, or twin, sized mattress.", "weight": "20000 g", @@ -104,7 +105,7 @@ { "id": "down_mattress", "type": "GENERIC", - "category": "spare_parts", + "category": "deployables", "name": { "str": "down mattress", "str_pl": "down mattresses" }, "description": "This is a single, or twin, sized down filled mattress.", "weight": "6 kg", @@ -148,7 +149,8 @@ "bashing": 5, "cutting": 3, "to_hit": -3, - "qualities": [ [ "BUTCHER", -50 ] ] + "qualities": [ [ "BUTCHER", -50 ] ], + "category": "rocks" }, { "id": "ugl_buttstock", diff --git a/data/json/items/resources/plastic.json b/data/json/items/resources/plastic.json index 55c21b5a0184..10906c2bd017 100644 --- a/data/json/items/resources/plastic.json +++ b/data/json/items/resources/plastic.json @@ -2,7 +2,7 @@ { "id": "plastic_chunk", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_plastic", "name": { "str": "plastic chunk" }, "description": "This is a piece of plastic. It could be used to fabricate, repair, or reinforce plastic items.", "weight": "50 g", @@ -35,7 +35,7 @@ { "id": "nylon", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_fabric", "name": { "str_sp": "synthetic fabric" }, "description": "This is small bolt of synthetic fabric. Unlike you and other natural materials, it won't degrade much with age. Maybe that's less of a bad thing now.", "weight": "55 g", @@ -51,7 +51,7 @@ { "id": "plastic_sheet", "type": "GENERIC", - "category": "spare_parts", + "category": "tools_cooking", "name": { "str": "plastic sheet" }, "description": "This is a large sheet of heavy flexible plastic, the sort that might have been used for commercial wrapping or for weather-sealing a home.", "weight": "1000 g", @@ -67,7 +67,7 @@ { "id": "rigid_plastic_sheet", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_plastic", "name": "rigid plastic sheet", "description": "A large, rigid sheet of translucent plastic, useful for all manner of things; from construction to art, or even junior snowboarding.", "weight": "7500 g", @@ -81,7 +81,7 @@ { "id": "plastic_scrap", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_plastic", "name": { "str": "plastic scrap" }, "description": "This is a tiny piece of plastic. Useless on its own, but could be melted down if you gather enough.", "weight": "5 g", diff --git a/data/json/items/resources/wood.json b/data/json/items/resources/wood.json index ef9a43077e3d..f26aaa64a11b 100644 --- a/data/json/items/resources/wood.json +++ b/data/json/items/resources/wood.json @@ -6,7 +6,7 @@ "color": "brown", "name": { "str": "log" }, "description": "A large chunk of log, cut from a tree. (a)ctivate a wood axe or wood saw to cut it into planks.", - "category": "other", + "category": "scrap_wood", "price": "100 USD", "price_postapoc": "10 cent", "material": "wood", @@ -23,7 +23,7 @@ "color": "brown", "name": { "str_sp": "splintered wood" }, "description": "A splintered piece of wood, could be used as a skewer or for kindling.", - "category": "other", + "category": "scrap_wood", "material": "wood", "weight": "225 g", "volume": "250 ml", @@ -48,7 +48,7 @@ "volume": "1250 ml", "bashing": 14, "to_hit": -1, - "category": "spare_parts", + "category": "scrap_wood", "stackable": true }, { @@ -66,7 +66,7 @@ "looks_like": "stick", "bashing": 18, "to_hit": -1, - "category": "spare_parts", + "category": "scrap_wood", "stackable": true }, { @@ -87,14 +87,15 @@ "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "STAB" ], "price": "40 USD", "price_postapoc": "50 cent", - "qualities": [ [ "HAMMER", 1 ] ] + "qualities": [ [ "HAMMER", 1 ] ], + "category": "scrap_wood" }, { "type": "GENERIC", "id": "2x4", "name": { "str": "plank" }, "description": "A narrow, thick plank of wood, like a 2 by 4 or similar piece of dimensional lumber. Makes a decent melee weapon, and can be used for all kinds construction.", - "category": "spare_parts", + "category": "scrap_wood", "weight": "2200 g", "to_hit": 1, "color": "brown", @@ -113,7 +114,7 @@ "id": "wood_beam", "name": { "str": "heavy wooden beam" }, "description": "An enormous beam of solid wood, very heavy and hard to lug around, but also very sturdy for construction. You could saw or chop it into smaller pieces, like planks or panels.", - "category": "spare_parts", + "category": "scrap_wood", "weight": "36000 g", "volume": "60000 ml", "//": "weight for a roughly 6x6x8 wooden beam. Probably a bit small tbh.", @@ -132,7 +133,7 @@ "name": { "str": "wooden panel" }, "description": "A wide, thin wooden board - plywood, OSB, MDF, tongue-in-groove boards, or similar, already cut to shape. These large flat boards are good for all kinds of construction, but for really big projects you'd need a proper sheet of uncut plywood or the like.", "//": "Weight and volume assumes 18 square feet of 1/2 inch plywood. The actual size of the panel likely varies wildly and the item entry may represent several smaller pieces.", - "category": "spare_parts", + "category": "scrap_wood", "weight": "15000 g", "to_hit": 1, "color": "brown", @@ -153,7 +154,7 @@ "name": { "str": "large wooden sheet" }, "description": "A standard 4x8 sheet of flat wood - usually plywood, OSB, or MDF. Heavy and bulky, this is extremely useful for all manner of construction, but you might have to cut it to size before doing smaller projects.", "//": "Weight and volume assumes 32 square feet of 1/2 inch plywood. Due to its enormously bulky shape, volume is higher than actual displacement volume", - "category": "spare_parts", + "category": "scrap_wood", "weight": "20000 g", "to_hit": 1, "color": "brown", @@ -180,6 +181,6 @@ "weight": "240 g", "volume": "3000 ml", "looks_like": "straw_pile", - "category": "spare_parts" + "category": "scrap_wood" } ] diff --git a/data/json/items/robot_parts.json b/data/json/items/robot_parts.json index 93601d784513..86e5f0d1e85e 100644 --- a/data/json/items/robot_parts.json +++ b/data/json/items/robot_parts.json @@ -18,49 +18,56 @@ "id": "targeting_module", "name": { "str": "targeting module" }, "description": "This module integrates visual and proprioceptive information from peripheric sensors and outputs information necessary for accurate aiming.", - "copy-from": "robot_module_abstract" + "copy-from": "robot_module_abstract", + "category": "scrap_electronics" }, { "type": "GENERIC", "id": "identification_module", "name": { "str": "identification module" }, "description": "This module continuously runs image recognition algorithms to identify friends from foe.", - "copy-from": "robot_module_abstract" + "copy-from": "robot_module_abstract", + "category": "scrap_electronics" }, { "type": "GENERIC", "id": "pathfinding_module", "name": { "str": "pathfinding module" }, "description": "This module uses a combination of vector integration and egocentric mapping to find the best path available.", - "copy-from": "robot_module_abstract" + "copy-from": "robot_module_abstract", + "category": "scrap_electronics" }, { "type": "GENERIC", "id": "memory_module", "name": { "str": "memory banks module" }, "description": "Allows for storage and recovery of information.", - "copy-from": "robot_module_abstract" + "copy-from": "robot_module_abstract", + "category": "scrap_electronics" }, { "type": "GENERIC", "id": "sensor_module", "name": { "str": "sensor array" }, "description": "A wide range of sensors meant to give the ability to perceive the surrounding world.", - "copy-from": "robot_module_abstract" + "copy-from": "robot_module_abstract", + "category": "scrap_electronics" }, { "type": "GENERIC", "id": "self_monitoring_module", "name": { "str_sp": "self monitoring sensors" }, "description": "An array of sensors and diagnostic modules allowing the robot to perceive itself.", - "copy-from": "robot_module_abstract" + "copy-from": "robot_module_abstract", + "category": "scrap_electronics" }, { "type": "GENERIC", "id": "ai_module", "name": { "str": "AI core" }, "description": "This module is responsible for decision-making, it basically runs the AI of the robot.", - "copy-from": "robot_module_abstract" + "copy-from": "robot_module_abstract", + "category": "scrap_electronics" }, { "type": "GENERIC", @@ -82,7 +89,8 @@ "id": "gun_module", "name": { "str": "gun operating system" }, "description": "This system can operate most conventional weapons.", - "copy-from": "robot_module_abstract" + "copy-from": "robot_module_abstract", + "category": "scrap_electronics" }, { "type": "GENERIC", diff --git a/data/json/items/software.json b/data/json/items/software.json index da82c818a2b6..fbbfc4d96ae2 100644 --- a/data/json/items/software.json +++ b/data/json/items/software.json @@ -174,7 +174,8 @@ "name": { "str_sp": "misc software" }, "description": "A miscellaneous piece of hobby software. Probably useless.", "price": "3 USD", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "valuables" }, { "id": "software_hacking", @@ -183,7 +184,8 @@ "name": { "str_sp": "hackPRO" }, "description": "A piece of hacking software.", "price": "8 USD", - "price_postapoc": "20 USD" + "price_postapoc": "20 USD", + "category": "valuables" }, { "id": "software_medical", @@ -192,7 +194,8 @@ "name": { "str_sp": "MediSoft" }, "description": "A piece of medical software.", "price": "6 USD", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "valuables" }, { "id": "software_math", @@ -201,7 +204,8 @@ "name": { "str_sp": "MatheMAX" }, "description": "A piece of mathematical software.", "price": "5 USD", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "valuables" }, { "id": "software_blood_data", @@ -210,7 +214,8 @@ "name": { "str_sp": "infection data" }, "description": "Medical data on zombie blood.", "price": "2 USD", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "valuables" }, { "id": "software_lab_data", @@ -219,7 +224,8 @@ "name": { "str_sp": "lab data" }, "description": "Research archives from a government laboratory.", "price": "2 USD", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "valuables" }, { "id": "software_train_data", @@ -228,7 +234,8 @@ "name": { "str_sp": "train data" }, "description": "Logistical data on subterranean train routes and schedules.", "price": "2 USD", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "valuables" }, { "id": "mind_scan_robofac", @@ -237,7 +244,8 @@ "symbol": "#", "container": "data_card", "description": "Data stolen from a dead scientist memory banks. Is the owner of these thoughts still hidden here, amidst the unreadable data; or are these just a collection of the precious moments of someone's life?\n\nWhatever the case, the idea of perpetually keeping a part of you within a metallic pill makes you feel uncomfortable.", - "flags": [ "NO_DROP" ] + "flags": [ "NO_DROP" ], + "category": "valuables" }, { "id": "software_electronics_reference", @@ -246,6 +254,7 @@ "name": { "str": "integrated circuit datasheet archives", "str_pl": "misc software" }, "description": "Huge archives of numerous IC circuit datasheets from several major manufacturers. Probably valuable to the right person, as it would be hard to salvage and reuse these components without them.", "price": "400 USD", - "price_postapoc": "0 cent" + "price_postapoc": "0 cent", + "category": "valuables" } ] diff --git a/data/json/items/tool/cooking.json b/data/json/items/tool/cooking.json index ff0681c1a9a3..005742be0129 100644 --- a/data/json/items/tool/cooking.json +++ b/data/json/items/tool/cooking.json @@ -2,7 +2,7 @@ { "id": "atomic_coffeepot", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "atomic coffee maker" }, "description": "This is a Curie-G coffeemaker, by CuppaTech. It famously uses a radioactive generator to heat water for coffee. Normally the water is heated using energy stored in a capacitor, and makes ordinary coffee. However, as a special feature, water from the RTG containment area can be used, giving the coffee a very special kick. The Curie-G is illegal in most countries.", "weight": "6585 g", @@ -52,7 +52,7 @@ { "id": "can_sealer", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "can sealer" }, "description": "A hand crank powered cast steel machine designed to automatically seal tin cans.", "weight": "9800 g", @@ -68,7 +68,7 @@ { "id": "carver_off", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "electric carver (off)", "str_pl": "electric carvers (off)" }, "description": "An electric meat carver powered by batteries. Two serrated blades that vibrate together to slice just about anything from turkey to ham… even zombies!", "weight": "1106 g", @@ -121,7 +121,7 @@ { "id": "char_purifier", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "charcoal water purifier" }, "description": "Using this item on a container full of water will purify the water using layered charcoal. Once the charcoal has purified enough water, it will become unusable and can be disassembled and recycled. Water taken from uncertain sources like a river may be dirty.", "weight": "1820 g", @@ -142,7 +142,7 @@ { "id": "char_smoker", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "charcoal smoker" }, "description": "This is a portable charcoal smoker. Good for weekend barbecuing and preserving meat with smoke.", "weight": "2600 g", @@ -161,7 +161,7 @@ { "id": "charcoal_cooker", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "charcoal cooker" }, "description": "This is a little metal tank for holding charcoal with a pilot light attached. You could use it for cooking food.", "weight": "400 g", @@ -183,7 +183,7 @@ { "id": "clay_pot", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "clay pot" }, "description": "A crude clay pot with lid used for cooking.", "weight": "500 g", @@ -202,7 +202,7 @@ { "id": "clay_quern", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "clay quern" }, "description": "This is a simple hand-powered clay quern for grinding grain.", "weight": "2264 g", @@ -216,7 +216,7 @@ { "id": "clay_teapot", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "clay teapot" }, "description": "A clay teapot. Now all you need is tea and water.", "weight": "400 g", @@ -235,7 +235,7 @@ { "id": "coffeemaker", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "coffeemaker" }, "description": "This is a heating element with pot and frame for holding coffee or other powders. It's got a battery compartment for use when the power goes out. You can use it to make coffee, or other drinks if you so choose.", "weight": "3100 g", @@ -262,7 +262,7 @@ { "id": "dehydrator", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "food dehydrator" }, "description": "This is a portable electric food dehydrator. It's powered by batteries, and could be invaluable in preserving food.", "weight": "4200 g", @@ -287,7 +287,7 @@ { "id": "eggs_ferment", "type": "GENERIC", - "category": "food", + "category": "cooking_ingredients", "name": { "str": "fermenting eggs jar" }, "description": "This jar contains a batch of eggs in a pickling solution. You can seal up the jar once the process is completed.", "weight": "1750 g", @@ -311,7 +311,7 @@ { "id": "esbit_stove", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "hexamine stove" }, "description": "Known as an Esbit stove, this is a lightweight, folding stove designed to use small hexamine tablets for cooking.", "weight": "180 g", @@ -333,7 +333,7 @@ { "id": "flask_yeast", "type": "GENERIC", - "category": "food", + "category": "cooking_ingredients", "name": { "str_sp": "small sealed yeast culture" }, "description": "A sealed flask holding sanitized yeast wort. You may harvest the yeast inside when it's done culturing.", "weight": "250 g", @@ -461,7 +461,7 @@ { "id": "food_processor", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "food processor" }, "description": "This is a kitchen appliance capable of slicing, chopping, shredding, grinding, pureeing and mixing.", "weight": "3000 g", @@ -486,7 +486,7 @@ { "id": "gasoline_cooker", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "gasoline cooker" }, "description": "This is a simple heater powered by gasoline. It is designed for cooking food.", "weight": "1944 g", @@ -526,7 +526,7 @@ { "id": "hotplate", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "hotplate" }, "description": "This is a small heating element on a stand, powered by batteries. It is indispensable for cooking and chemistry. Try not to burn yourself.", "weight": "2835 g", @@ -624,7 +624,7 @@ { "id": "makeshift_sealer", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "makeshift vacuum sealer" }, "description": "This is a homemade heat sealer unit with an air pump. It's used for vacuum packing food to preserve it.", "weight": "3218 g", @@ -648,7 +648,7 @@ { "id": "mess_kit", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "mess kit" }, "description": "A self-contained camping mess kit, containing everything you might need for wilderness cooking. This model relies on a battery-operated hotplate, rather than the more commonplace chemical-fueled Esbit stove.", "weight": "1500 g", @@ -676,7 +676,7 @@ { "id": "mess_tin", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "mess tin" }, "description": "A compact military-style pan and tray, designed for heating food over a fire or portable stove. It is shallower than a proper pot or pan, and lacks the integrated heating elements modern mess kits have.", "weight": "500 g", @@ -694,7 +694,7 @@ { "id": "mil_mess_kit", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "military mess kit" }, "description": "Military mess kit designed for long-range reconnaissance patrols deployed behind enemy lines. All parts are made from thin sheet of aluminum / superalloy composite and are insulated with ceramic coating. Relies on a battery-operated hotplate, rather than the smoke-producing chemical-fueled Esbit stove. Compact, durable and lightweight.", "weight": "900 g", @@ -722,7 +722,7 @@ { "id": "mortar_pestle", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "mortar and pestle", "str_pl": "mortars and pestles" }, "description": "This is a simple combination of a small grindstone and a bowl-shaped stone. Used for grinding grain, but time-consuming compared to more complex methods.", "weight": "1000 g", @@ -739,7 +739,7 @@ { "id": "multi_cooker", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "multi cooker" }, "description": "A professional-grade multi-cooker, with a battery slot for camping trips or tailgating. Its multitude of settings and features promise to handle any sort of cooking, from parboiling potatoes to cooking curry to popping popcorn. There's no manual, but you're sure you can work it out.", "weight": "11339 g", @@ -773,7 +773,7 @@ { "id": "oil_cooker", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "lamp oil cooker" }, "description": "This is a simple heater powered by lamp oil. It is designed for cooking food.", "weight": "2264 g", @@ -795,7 +795,7 @@ { "id": "pastaextruder", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "pasta extruder" }, "description": "A pasta extruder run by a hand-crank. Useful in making pasta. It comes with various heads to make various kinds of pasta.", "weight": "2628 g", @@ -811,7 +811,7 @@ { "id": "pickles_ferment", "type": "GENERIC", - "category": "food", + "category": "cooking_ingredients", "name": { "str": "fermenting pickle jar" }, "description": "This jar contains a batch of pickles set to ferment. You can seal up the jar once the process is completed.", "weight": "1750 g", @@ -836,7 +836,7 @@ { "id": "popcan_stove", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "soda can stove kit" }, "//": "Should be 20 but currently recipes do not utilize this value", "description": "This is an ultra-light alcohol-burning stove with simmer ring. It comes with a 500 ml container to hold concentrated alcohol fuel.", @@ -858,7 +858,7 @@ { "id": "pressure_cooker", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "pressure cooker" }, "description": "Useful for boiling water when cooking spaghetti and more. This sealed pot is designed to cook food at higher pressures and temperatures. Can also be used for pressure sensitive chemical reactions.", "weight": "2200 g", @@ -879,7 +879,7 @@ { "id": "rock_quern", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "quern" }, "description": "This is a simple hand-powered stone quern for grinding grain.", "weight": "3264 g", @@ -895,7 +895,7 @@ { "id": "sauerkraut_ferment", "type": "GENERIC", - "category": "food", + "category": "cooking_ingredients", "name": { "str": "fermenting sauerkraut jar" }, "description": "This jar contains a batch of sauerkraut set to ferment. You can seal up the jar once the process is completed.", "weight": "1750 g", @@ -920,7 +920,7 @@ { "id": "still", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "still" }, "description": "This is a still. It's useful for creating distillation of alcohol and other, more curious substances.", "weight": "10000 g", @@ -966,7 +966,7 @@ { "id": "survivor_mess_kit", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "survivor mess kit" }, "description": "A homemade mess kit, containing everything you might need for creating post-apocalyptic cuisine. Powered by a lamp oil burner, it is composed of simple yet durable tools and materials.", "weight": "2160 g", @@ -988,7 +988,7 @@ { "id": "teapot", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "teapot" }, "description": "A small metal teapot. Teatime wouldn't be complete without one.", "weight": "229 g", @@ -1006,7 +1006,7 @@ { "id": "vac_sealer", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "vacuum sealer" }, "description": "This is a portable heat sealer unit with an air pump. It's used for vacuum packing food to preserve it.", "weight": "2449 g", @@ -1031,7 +1031,7 @@ { "id": "waffleiron", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "waffle iron" }, "description": "A waffle iron. For making waffles.", "weight": "2628 g", @@ -1048,7 +1048,7 @@ { "id": "water_purifier", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "water purifier" }, "description": "This is a battery-powered device designed to purify drinking water. Using this item on a container full of water will purify the contents. It could be useful for water taken from uncertain sources like a river, as it may be non-potable.", "weight": "1360 g", diff --git a/data/json/items/tool/deployable.json b/data/json/items/tool/deployable.json index 8b6694d82acf..0ec125640f48 100644 --- a/data/json/items/tool/deployable.json +++ b/data/json/items/tool/deployable.json @@ -2,7 +2,7 @@ { "id": "brazier", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "brazier" }, "description": "A large metal stand used to contain a fire. Fires set in a brazier will not spread to surrounding flammable objects.", "weight": "5000 g", @@ -21,7 +21,7 @@ { "id": "hobo_stove", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "hobo stove" }, "description": "This is a small improvised wood stove, made from a metal can or similar container of the right size. It's too small to fit anything much larger than splintered wood. Activate it to Deploy.", "weight": "70 g", @@ -38,7 +38,7 @@ { "id": "55gal_firebarrel", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "fire barrel (200L)", "str_pl": "fire barrels (200L)" }, "description": "A large metal barrel used to contain a fire. It has multiple holes punched in its walls for air supply. Fires set in a fire barrel will not spread to surrounding flammable objects.", "weight": "20000 g", @@ -57,7 +57,7 @@ { "id": "30gal_firebarrel", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "fire barrel (100L)", "str_pl": "fire barrels (100L)" }, "description": "A large metal barrel used to contain a fire. It has multiple holes punched in its walls for air supply. Fires set in a fire barrel will not spread to surrounding flammable objects.", "weight": "12000 g", @@ -76,7 +76,7 @@ { "id": "camp_chair", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "camp chair" }, "description": "Folded camp chair, deploy to sit down.", "weight": "1000 g", @@ -95,7 +95,7 @@ { "id": "cot", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "cot" }, "description": "This is a military style fold up cot. While it may not be quite as comfortable as a bed, it's better than slumming it on the ground.", "weight": "6164 g", @@ -120,7 +120,7 @@ { "id": "folding_bicycle", "type": "TOOL", - "category": "tools", + "category": "deployables", "name": { "str": "folding bicycle" }, "description": "This is a bicycle folded into a relatively portable package.", "weight": "9071 g", @@ -140,6 +140,29 @@ }, "flags": [ "ALLOWS_REMOTE_USE" ] }, + { + "id": "folding_skateboard", + "type": "TOOL", + "category": "tools", + "name": { "str": "skateboard" }, + "description": "This is a skateboard.", + "weight": "2898 g", + "volume": "3750 ml", + "price": "350 USD", + "price_postapoc": "20 USD", + "to_hit": -5, + "bashing": 10, + "material": "aluminum", + "symbol": "0", + "color": "light_gray", + "use_action": { + "type": "unfold_vehicle", + "vehicle_name": "skateboard", + "unfold_msg": "You lay the skateboard down on the ground.", + "moves": 0 + }, + "flags": [ "ALLOWS_REMOTE_USE" ] + }, { "id": "generic_folded_vehicle", "type": "TOOL", @@ -175,7 +198,7 @@ { "id": "inflatable_boat", "type": "TOOL", - "category": "tools", + "category": "deployables", "symbol": "0", "color": "light_gray", "name": { "str": "inflatable boat" }, @@ -199,7 +222,7 @@ { "id": "metal_smoking_rack", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "metal smoking rack" }, "description": "A metal rack designed to smoke food for better preservation and taste. It is folded for easy transportation.", "weight": "5000 g", @@ -217,7 +240,7 @@ { "id": "tourist_table", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "tourist table" }, "description": "Metal tourist table for off-road trips. It is folded for easy transportation.", "weight": "6000 g", @@ -235,7 +258,7 @@ { "id": "leather_tarp", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "leather tarp" }, "description": "A large sheet of sewn leather that can be deployed instead of a picnic blanket, but it's more valuable as a butchery appliance as it does not soak in blood. It's rolled and ready for carrying.", "weight": "2000 g", @@ -253,7 +276,7 @@ { "id": "fiber_mat", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "fiber mat" }, "description": "A large mat woven from fibrous material that can be used instead of a picnic blanket, but it's more valuable as a butchery appliance. Too thin to be used as a comfortable sleeping place. It's rolled and ready for carrying.", "weight": "1000 g", @@ -271,7 +294,7 @@ { "id": "churn", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "folded butter churn" }, "description": "A large wooden container used to turn raw milk into butter and buttermilk. This model uses a foot crank and holds three gallons of raw milk.", "weight": "6464 g", diff --git a/data/json/items/tool/electronics.json b/data/json/items/tool/electronics.json index 6f340e8fd747..ff09b4c207e9 100644 --- a/data/json/items/tool/electronics.json +++ b/data/json/items/tool/electronics.json @@ -2,7 +2,7 @@ { "id": "adv_UPS_off", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "advanced UPS", "str_pl": "advanced UPS's" }, "description": "This is an advanced version of the unified power supply, or UPS. Designed for military use to power advanced weapons, it uses plutonium fuel cells which provide better efficiency, but are not rechargeable. It can power many household electronics as well.", "weight": "500 g", @@ -21,7 +21,7 @@ { "id": "camera", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "camera" }, "description": "A point-and-shoot digital camera, with digital viewfinder, a backup 'iron-sight', and flash. You can look at your photos on the digital screen, or transfer them with a memory card. Takes conventional batteries.", "weight": "907 g", @@ -54,7 +54,7 @@ { "id": "camera_pro", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "professional camera" }, "description": "A 35 mm digital SLR (single-lens reflex) camera, with optical and digital viewfinders, zoom lens with auto-focus and stabilizer, and flash. You can view your photos on it or transfer them with a memory card; it runs on a rechargeable power cell that can be switched to charge via Unified Power Supply. Before the Cataclysm, you could have taken professional-grade photos using this.", "weight": "2268 g", @@ -75,7 +75,7 @@ { "id": "cell_phone", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "cellphone" }, "description": "This is a cellphone, an older cousin of a smartphone but still popular in certain circles due to its reliability, sturdiness and the ability to run on common batteries. Using this cellphone will turn it on and provide light, assuming it is sufficiently charged. It also has a clock app that includes an alarm.", "weight": "226 g", @@ -126,7 +126,6 @@ { "id": "control_laptop", "type": "TOOL", - "category": "tools", "copy-from": "laptop", "name": { "str": "control laptop" }, "description": "A modified laptop, now capable of transmitting in the ultra-high frequencies utilized by robots. Activate it to command robots from afar, or to toggle charging via UPS.", @@ -142,7 +141,7 @@ { "id": "directional_antenna", "type": "GENERIC", - "category": "tools", + "category": "electronics", "name": { "str": "directional antenna" }, "description": "This is an antenna designed to pick up signals better when pointed at the source. You could use this with a radio to receive faint signals.", "weight": "500 g", @@ -178,7 +177,7 @@ { "id": "eink_tablet_pc", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "e-ink tablet PC" }, "description": "A tablet PC using an efficient color e-ink display, with a recharging battery that can be switched to draw from a UPS. Before the Cataclysm, these were nifty gadgets; now, it's an almost priceless resource.", "weight": "250 g", @@ -199,7 +198,7 @@ { "id": "electrohack", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "electrohack" }, "description": "This device has many ports attached, allowing it to connect to almost any control panel or other electronic machine (but not computers). With a little skill, it can be used to crack passwords and more. It requires 25 charges of battery power per use.", "weight": "114 g", @@ -231,7 +230,7 @@ { "id": "geiger_off", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "geiger counter (off)", "str_pl": "geiger counters (off)" }, "description": "This is a tool for measuring radiation. Using it will prompt you to choose whether to scan yourself or the terrain, or to turn it on, which will provide continuous feedback on ambient radiation. It is currently off.", "weight": "225 g", @@ -276,7 +275,7 @@ { "id": "hand_crank_charger", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "hand-crank charger" }, "description": "This is a hand-powered battery charger. It has an adjustable receptacle designed to accept a wide variety of rechargeable battery cells.", "weight": "2000 g", @@ -306,7 +305,7 @@ { "id": "laptop", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": "laptop computer", "description": "A laptop computer with an internal rechargeable battery, also capable of using UPS.", "symbol": ",", @@ -350,7 +349,7 @@ { "id": "mp3", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "mp3 player (off)", "str_pl": "mp3 players (off)" }, "description": "This battery-powered device is loaded up with someone's music collection. Fortunately, there's lots of songs you like, and listening to it will raise your morale slightly. Use it to turn it on, or toggle charging on the go from a Unified Power System.", "weight": "140 g", @@ -381,7 +380,7 @@ { "id": "noise_emitter", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "noise emitter (off)", "str_pl": "noise emitters (off)" }, "description": "This device was constructed by 'enhancing' a speaker ripped off from some electronic device with some amplifier circuits. It has now no other use beside emitting loud crackling static noise, that could distract zombies.", "weight": "340 g", @@ -426,7 +425,7 @@ { "id": "portable_game", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "handheld game system" }, "description": "This is a portable games console in working condition, with an LED-screen allowing you to play in the dark. You can use it to play it for a little while, running down the integrated battery. Can also be set to draw power from a UPS.", "weight": "200 g", @@ -446,7 +445,7 @@ { "id": "smart_phone", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "smartphone" }, "description": "A popular, fancy smartphone. Capable of making photos due to integrated camera and illuminating an area as per flashlight app, assuming it has enough charge. The smartphone also has a clock app that includes an alarm. Runs on a small, rechargeable power cell compatible with Unified Power Supply if set to charge from one.", "weight": "230 g", @@ -507,7 +506,7 @@ { "id": "UPS_off", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "UPS", "str_pl": "UPS's" }, "description": "This is a unified power supply, or UPS. It is a civilian evolution of a military project. Designed to power advanced weapons and armor, the civilian version serves as a portable power bank and inverter for many household electronics.", "weight": "680 g", @@ -529,7 +528,7 @@ { "id": "vibrator", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "vibrator" }, "description": "This battery-devouring device is just the thing to knead the tension out and help you relax. Use it to take a break and unwind.", "weight": "500 g", @@ -561,7 +560,7 @@ { "id": "bionic_scanner", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "bionic scanner" }, "description": "A small metal scanner specialized in detecting bionic hardware. Activate to start scanning nearby corpses for bionics.", "weight": "141 g", @@ -598,7 +597,7 @@ { "id": "bionic_scanner_on", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "bionic scanner (on)" }, "description": "A small metal scanner specialized in detecting bionic hardware. While in use it will steadily drain power, automatically scanning corpses near you for bionics.", "weight": "141 g", diff --git a/data/json/items/tool/entry_tools.json b/data/json/items/tool/entry_tools.json index 997e757ebd1c..e525a9beb82a 100644 --- a/data/json/items/tool/entry_tools.json +++ b/data/json/items/tool/entry_tools.json @@ -2,7 +2,7 @@ { "id": "crowbar", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "CLUBS", "1H_HOOKED" ], "name": { "str": "crowbar" }, "description": "This is a hefty prying tool. Use it to open locked doors without destroying them or to lift manhole covers. You could also wield it to bash some heads in.", @@ -24,7 +24,7 @@ { "id": "hairpin_picklock", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "looks_like": "hairpin", "name": { "str": "hairpin lockpick" }, "description": "This is a metal hairpin bent into shape by hand, worse than an improvised set but easier to work with than a bone skewer. You need MacGyver-like skills to open locks with this as it is brittle, but it lowers the chance of an alarm being set off. If you're crouched, examining a locked door will have you prioritize picking the lock instead of using a crowbar on it.", @@ -40,7 +40,7 @@ { "id": "crude_picklock", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "name": { "str": "improvised lockpick" }, "description": "This is an improvised set of picks and torsion wrenches made from scrap metal. You need MacGyver-like skills to open locks with these as they are brittle, but they lower the chances of alarms being set off. If you're crouched, examining a locked door will have you prioritize picking the lock instead of using a crowbar on it.", "weight": "23 g", @@ -55,7 +55,7 @@ { "id": "iceaxe", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "HAND_AXES" ], "name": { "str": "ice axe" }, "description": "This is an ice axe with hammer on its head, a multi-purpose hiking and climbing tool used by mountaineers. It is sturdy enough to pry open closed doors or lift manhole covers.", @@ -76,7 +76,7 @@ { "id": "makeshift_crowbar", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "CLUBS", "1H_HOOKED" ], "name": { "str": "makeshift crowbar" }, "description": "This is a pipe whose ends have been bent and hammered flat to resemble a crowbar. Use it to open locked crates without destroying them, to lift manhole covers, or even open doors and windows. You could also wield it to fight with, in a pinch.", @@ -98,7 +98,7 @@ { "id": "picklocks", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "name": { "str": "locksmith kit" }, "description": "This is a locksmith's set of sturdy steel lock picks and torsion wrenches. It is essential for silently and quickly opening locks, provided you have some mechanical skill. If you're crouched, examining a locked door will have you prioritize picking the lock instead of using a crowbar on it.", "weight": "544 g", diff --git a/data/json/items/tool/fire.json b/data/json/items/tool/fire.json index 3f67971ff016..a642a70fbdb2 100644 --- a/data/json/items/tool/fire.json +++ b/data/json/items/tool/fire.json @@ -29,12 +29,13 @@ ] ] ], - "flags": [ "FIRESTARTER" ] + "flags": [ "FIRESTARTER" ], + "category": "tools_cooking" }, { "id": "fire_drill", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "fire drill" }, "description": "This fire drill is a simple item for starting fires; it is made from two pieces of wood and some string. Since it is constructed out of simple materials, it's slow and rather difficult to get a fire started using this tool.", "weight": "240 g", @@ -53,7 +54,7 @@ { "id": "fire_drill_large", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "camp fire drill" }, "description": "This stout fire drill is a simple item for starting fires; it is made from two pieces of wood and some string. Since it is constructed out of simple materials, it's slow and rather difficult to get a fire started using this tool.", "weight": "1280 g", @@ -72,7 +73,7 @@ { "id": "flint_steel", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "flint and steel", "str_pl": "sets of flint and steel" }, "description": "This is a magnesium bar and a carbon steel striker. Use it to spark a flame.", "weight": "400 g", @@ -92,7 +93,7 @@ { "id": "lighter", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "lighter" }, "description": "This is a disposable plastic lighter. A lighter must be carried to use various drugs, like cigarettes, or to light things like Molotov cocktails. You can also use a lighter to light nearby items on fire.", "weight": "14 g", @@ -111,7 +112,7 @@ { "id": "magnifying_glass", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "name": { "str": "magnifying glass", "str_pl": "magnifying glasses" }, "description": "This is a magnifying glass. May be useful for starting fires during sunny skies.", "weight": "400 g", @@ -128,7 +129,7 @@ { "id": "matches", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "matchbook" }, "description": "This is a small book of matches with a coarse strike surface on the outside flap. Matches must be carried to use various drugs like cigarettes, or to light things like Molotov cocktails. You can also use matches to light nearby items on fire.", "weight": "10 g", @@ -147,7 +148,7 @@ { "id": "ref_lighter", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "refillable lighter" }, "description": "This is a lighter featuring a flip top cover and refuelable tank. A lighter must be carried to use various drugs, like cigarettes, or to light things like Molotov cocktails. You can also use a lighter to light nearby items on fire.", "weight": "20 g", @@ -179,7 +180,7 @@ { "id": "ref_lighter_on", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "refillable lighter" }, "description": "This is a lighter featuring a flip top cover and refuelable tank. It is lit.", "weight": "20 g", @@ -210,7 +211,7 @@ { "id": "tinderbox", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "ember carrier" }, "description": "This is a small container for holding tinder, with holes punched in it to provide a controlled airflow. It can nurture a smoldering ember for a long time, to start fires without modern tools.", "weight": "500 g", @@ -236,7 +237,7 @@ { "id": "tinderbox_on", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "ember carrier (lit)", "str_pl": "ember carriers (lit)" }, "description": "This is a small container for holding tinder, with holes punched in it to provide a controlled airflow. An ember is smoldering inside it, and can be used to start a campfire.", "weight": "500 g", diff --git a/data/json/items/tool/firefighting.json b/data/json/items/tool/firefighting.json index 566ba0322463..232c0726b741 100644 --- a/data/json/items/tool/firefighting.json +++ b/data/json/items/tool/firefighting.json @@ -2,7 +2,7 @@ { "id": "crash_axe", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "HAND_AXES" ], "symbol": ";", "color": "light_gray", @@ -45,7 +45,7 @@ { "id": "fire_ax", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "2H_AXES" ], "name": { "str": "fire axe" }, "description": "This is a large, two-handed pickhead axe normally used by firefighters. It makes a powerful melee weapon, but is a bit slow to recover between swings.", @@ -66,7 +66,7 @@ { "id": "halligan", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "CLUBS" ], "name": { "str": "Halligan bar" }, "description": "This is a heavy multiple-use tool commonly carried by firefighters, law enforcement, and military rescue units. Use it to open locked doors without destroying them or to lift manhole covers. You could also wield it to bash some heads in.", @@ -146,7 +146,7 @@ { "id": "ny_hook", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "HOOKED_POLES" ], "symbol": "/", "color": "yellow", diff --git a/data/json/items/tool/fishing.json b/data/json/items/tool/fishing.json index aae4d54be298..683e9c669996 100644 --- a/data/json/items/tool/fishing.json +++ b/data/json/items/tool/fishing.json @@ -2,7 +2,7 @@ { "id": "fish_trap", "type": "TOOL", - "category": "tools", + "category": "tools_farming", "name": { "str": "plastic fish trap" }, "description": "This is a makeshift fish trap made from plastic bottles. It's simple, even primitive, but easy to use. The principle of action: the fish swims inside for bait, but can't get out. Not humane, prohibited by law, but there are no cops left to care.", "weight": "85 g", @@ -31,7 +31,7 @@ { "id": "fishing_hook_basic", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "fishing hook" }, "description": "A simple fishing hook.", "weight": "1 g", @@ -46,7 +46,7 @@ { "id": "fishing_hook_bone", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "improvised fishing hook" }, "description": "An improvised fishing hook carved from wood or bone.", "weight": "1 g", @@ -61,7 +61,7 @@ { "id": "fishing_rod_basic", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "basic fishing rod" }, "description": "'Fishing rod' might be a bit too charitable of a description. In truth, this is a stick with a piece of string and a hook.", "weight": "1700 g", @@ -80,7 +80,7 @@ { "id": "fishing_rod_professional", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "pro fishing rod" }, "description": "A professional fishing rod with a matching set of weights. With this you should be able to catch 'em all.", "weight": "1000 g", diff --git a/data/json/items/tool/handloading.json b/data/json/items/tool/handloading.json index 0c11be4b12b9..f7b2181ae3da 100644 --- a/data/json/items/tool/handloading.json +++ b/data/json/items/tool/handloading.json @@ -2,7 +2,7 @@ { "id": "press", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "hand press", "str_pl": "hand presses" }, "description": "This is a small hand press for hand loading firearm ammunition. It comes with everything you need to start hand loading your own munitions.", "weight": "2268 g", @@ -18,7 +18,7 @@ { "id": "press_dowel", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "makeshift shotshell press", "str_pl": "makeshift shotshell presses" }, "description": "This is a collection of items improvised for field reloading of shotshells. A plank with a hole cut in the center, a medium-sized nail, and a selection of whittled dowels are used to seat wads, decap primers, and reprime (carefully!) hulls. The opposite side of the plank has been shaped to allow for roll crimping of the plastic hulls.", "weight": "348 g", @@ -35,7 +35,7 @@ { "id": "puller", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "kinetic bullet puller" }, "description": "This is a tool used for properly disassembling firearm ammunition.", "weight": "500 g", diff --git a/data/json/items/tool/knives.json b/data/json/items/tool/knives.json index 55170e5828a3..eb3e928197c5 100644 --- a/data/json/items/tool/knives.json +++ b/data/json/items/tool/knives.json @@ -2,7 +2,7 @@ { "id": "copper_knife", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "weapon_category": [ "KNIVES" ], "name": { "str": "copper knife", "str_pl": "copper knives" }, "description": "A knife consisting of crudely-worked copper, and a simple handle. Primitive, but a step above stone-age.", @@ -41,7 +41,7 @@ { "id": "honey_scraper", "type": "GENERIC", - "category": "tools", + "category": "tools_cooking", "weapon_category": [ "KNIVES" ], "name": { "str": "honey scraper" }, "description": "A sharp, knife-like tool used in harvesting honey from beehives. Makes a passable melee weapon.", @@ -60,7 +60,7 @@ { "id": "pockknife", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "KNIVES" ], "name": { "str": "pocket knife", "str_pl": "pocket knives" }, "description": "This is a small pocket knife. It isn't great for combat, but it's better than nothing. It's sharp enough to butcher with.", diff --git a/data/json/items/tool/landscaping.json b/data/json/items/tool/landscaping.json index 6ed6e2c4dc85..bbfa3cf4c15e 100644 --- a/data/json/items/tool/landscaping.json +++ b/data/json/items/tool/landscaping.json @@ -2,7 +2,7 @@ { "id": "digging_stick", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "CLUBS" ], "name": { "str": "digging stick" }, "description": "This is a large stick, with the end carved into a broad blade for digging. It could be used to dig shallow pits, but not deep ones.", @@ -21,7 +21,7 @@ { "id": "g_shovel", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "trowel" }, "description": "A small, sharp gardening shovel, perfect for digging up grubs and worms.", "weight": "280 g", @@ -39,7 +39,7 @@ { "id": "hoe", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "HOOKED_POLES" ], "name": { "str": "hoe" }, "description": "This is a farming implement. You can use it to turn tillable land into a slow-to-cross pile of dirt, or dig a shallow pit.", @@ -60,7 +60,7 @@ { "id": "primitive_shovel", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "CLUBS" ], "name": { "str": "primitive shovel" }, "conditional_names": [ @@ -82,7 +82,7 @@ { "id": "scythe", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "HOOKED_POLES" ], "name": { "str": "scythe" }, "description": "This is an old-fashioned farming tool used to cut tall grass. While it may be a giant blade on the end of a stick, it is incredibly awkward to use for anything but its intended purpose.", @@ -103,7 +103,7 @@ { "id": "shovel", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "CLUBS" ], "name": { "str": "shovel" }, "description": "This is a digging tool. Use it to dig pits adjacent to your location.", @@ -136,7 +136,7 @@ { "id": "sickle", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "1H_HOOKED" ], "name": { "str": "sickle" }, "description": "This is an old-fashioned farming tool used to cut tall grass. While it may be a massive curved blade on a handle, it is incredibly awkward to use for anything but its intended purpose.", @@ -157,7 +157,7 @@ { "id": "trimmer_off", "type": "TOOL", - "category": "tools", + "category": "tools_farming", "name": { "str": "hedge trimmer (off)", "str_pl": "hedge trimmers (off)" }, "description": "A cordless, double-sided, gasoline-powered hedge trimmer. A long line of sharp-edged teeth extends from the engine; turning the trimmer on will make them rapidly vibrate. The poor man's chainsaw as far as the zombies are concerned.", "weight": "4500 g", diff --git a/data/json/items/tool/lighting.json b/data/json/items/tool/lighting.json index a6c0b64f1595..c54e7a3c6a33 100644 --- a/data/json/items/tool/lighting.json +++ b/data/json/items/tool/lighting.json @@ -2,7 +2,7 @@ { "id": "atomic_lamp", "type": "GENERIC", - "category": "tools", + "category": "electronics", "name": { "str": "atomic lamp" }, "description": "Powered by the magic of nuclear decay and low-energy LEDs, this very expensive lamp will emit a small amount of light for at least a decade. Before the Cataclysm, it was mostly an expensive way to show off your preparedness. Now, it's actually pretty cool. Use it to close the cover and hide the light.", "weight": "605 g", @@ -20,7 +20,7 @@ { "id": "atomic_lamp_off", "type": "GENERIC", - "category": "tools", + "category": "electronics", "name": { "str": "atomic lamp (covered)", "str_pl": "atomic lamps (covered)" }, "description": "Powered by the magic of nuclear decay and low-energy LEDs, this very expensive lamp will emit a small amount of light for at least a decade. Before the Cataclysm, it was mostly an expensive way to show off your preparedness. Now, it's actually pretty cool. The cover is closed. Use it to open the cover and show the light.", "weight": "605 g", @@ -44,7 +44,7 @@ { "id": "atomic_light", "type": "GENERIC", - "category": "tools", + "category": "electronics", "name": { "str": "atomic reading light" }, "description": "Powered by the magic of nuclear decay and low-energy LEDs, this extremely expensive little light will provide just enough light to read by for at least a decade. It is also available with a cute cartoon bear cover to turn it into a nightlight for a very wealthy child with a fear of the dark. Use it to close the cover and hide the light.", "weight": "237 g", @@ -67,7 +67,7 @@ { "id": "atomic_light_off", "type": "GENERIC", - "category": "tools", + "category": "electronics", "name": { "str": "atomic reading light (covered)", "str_pl": "atomic reading lights (covered)" }, "description": "Powered by the magic of nuclear decay and low-energy LEDs, this extremely expensive little light will provide just enough light to read by for at least a decade. It is also available with a cute cartoon bear cover to turn it into a nightlight for a very wealthy child with a fear of the dark. The cover is closed. Use it to open the cover and show the light.", "weight": "237 g", @@ -141,7 +141,7 @@ { "id": "electric_lantern", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "electric lantern (off)", "str_pl": "electric lanterns (off)" }, "description": "This is a battery-powered lamp. It does not provide much light, but it lasts a long time. Use it to turn it on.", "weight": "980 g", @@ -193,7 +193,7 @@ { "id": "flashlight", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "flashlight (off)", "str_pl": "flashlights (off)" }, "description": "This is a typical household flashlight with a plastic handle. Using this flashlight will turn it on and provide light, assuming it is charged with batteries.", "material": [ "plastic", "aluminum" ], @@ -381,7 +381,7 @@ { "id": "heavy_flashlight", "type": "TOOL", - "category": "tools", + "category": "electronics", "weapon_category": [ "BATONS" ], "name": { "str": "heavy duty flashlight (off)", "str_pl": "heavy duty flashlights (off)" }, "description": "This is a heavy duty tubular aluminum LED flashlight as often used by security guards. Makes for a passable melee weapon. Using this flashlight will turn it on and provide light, assuming it is charged with batteries.", @@ -571,7 +571,7 @@ { "id": "reading_light", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "reading light" }, "description": "A little clip-on LED light, meant for reading books in the dark.", "weight": "90 g", @@ -608,7 +608,7 @@ { "id": "smart_lamp", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "smart lamp (off)", "str_pl": "smart lamps (off)" }, "description": "This is a smart lamp, it can be activated remotely.", "weight": "400 g", diff --git a/data/json/items/tool/masonry.json b/data/json/items/tool/masonry.json index 38e95a07279b..69a55a17d1b5 100644 --- a/data/json/items/tool/masonry.json +++ b/data/json/items/tool/masonry.json @@ -2,7 +2,7 @@ { "id": "masonrysaw_off", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "masonry saw (off)", "str_pl": "masonry saws (off)" }, "description": "This is a construction tool for cutting through concrete or other surfaces. It runs on gasoline. Using this item will cause it to turn on, turning it into a very powerful but unwieldy melee weapon or a terrible chainsaw.", "looks_like": "chainsaw_off", diff --git a/data/json/items/tool/med.json b/data/json/items/tool/med.json index 4a1cc3baa5a2..da76979aca26 100644 --- a/data/json/items/tool/med.json +++ b/data/json/items/tool/med.json @@ -21,7 +21,7 @@ { "id": "autoclave", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "autoclave" }, "description": "This is an autoclave. It's useful for sterilizing things like CBMs. It requires a massive amount of power, so standard batteries will not power it sufficiently. Examine a non-sterile CBM and mend it to sterilize.", "weight": "34500 g", @@ -81,7 +81,7 @@ { "id": "scalpel", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "weapon_category": [ "KNIVES" ], "name": { "str": "scalpel" }, "description": "This is a very sharp knife designed for surgical cutting. Its small, sharp blade allows for precision strikes in the hands of the skilled.", @@ -121,7 +121,7 @@ { "id": "syringe", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "syringe" }, "description": "A medical syringe. Used for administering intravenous drugs.", "weight": "10 g", @@ -135,7 +135,7 @@ { "id": "thermometer", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "thermometer" }, "description": "A plastic thermometer that can read the air temperature.", "weight": "1 g", @@ -172,7 +172,7 @@ { "id": "vacutainer", "type": "CONTAINER", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "blood draw kit" }, "description": "This is a kit for drawing blood, including a test tube for holding the sample. Use this tool to draw blood, either from yourself or from a corpse you are standing on.", "weight": "13 g", @@ -193,7 +193,7 @@ { "id": "wrapped_rad_badge", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "wrapped radiation badge" }, "description": "This is a badge that detects radiation dosage sealed in a radiation-blocking bag. Use it to remove it from the bag.", "weight": "20 g", diff --git a/data/json/items/tool/metalworking.json b/data/json/items/tool/metalworking.json index c5e443df4d15..d449444f6dc3 100644 --- a/data/json/items/tool/metalworking.json +++ b/data/json/items/tool/metalworking.json @@ -2,7 +2,7 @@ { "id": "anvil", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "anvil" }, "description": "This is an enormously heavy block of oddly shaped steel with a chisel-like projection set into the corner. It's used in most metalworking fabrication recipes.", "weight": "54000 g", @@ -20,7 +20,7 @@ { "id": "anvil_bronze", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "bronze anvil" }, "description": "This is a block of oddly shaped bronze with a chisel-like projection set into the corner. It's used in most metalworking fabrication recipes.", "weight": "2200 g", @@ -38,7 +38,7 @@ { "id": "boltcutters", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "pair of bolt cutters", "str_pl": "pairs of bolt cutters" }, "description": "This is a large pair of bolt cutters. You could use them to cut padlocks or heavy gauge wire.", "weight": "1224 g", @@ -56,7 +56,7 @@ { "id": "char_forge", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "charcoal forge" }, "description": "This is a portable, charcoal fired, metalworking forge. If combined with the right tools, you could use this for metalworking, or it could be used to repair metal items.", "weight": "8600 g", @@ -104,7 +104,7 @@ { "id": "char_kiln", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "charcoal kiln" }, "description": "A stout metal box used for producing charcoal via pyrolysis; the incomplete burning of organic materials in the absence of oxygen.", "weight": "6400 g", @@ -121,7 +121,7 @@ { "id": "chisel", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "metalworking chisel" }, "description": "This is a short, stout metalworking chisel. It's used in some metalworking fabrication recipes.", "weight": "660 g", @@ -140,7 +140,7 @@ { "id": "crucible", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "crucible" }, "description": "This is a small metalworking crucible. It's used in some metalworking fabrication recipes.", "weight": "1400 g", @@ -157,7 +157,7 @@ { "id": "crucible_clay", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "clay crucible" }, "description": "This is a primitive metalworking crucible made of clay. You could use it for metalworking.", "weight": "1642 g", @@ -174,7 +174,7 @@ { "id": "forge", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "electric forge" }, "description": "This is a portable electric metalworking forge, powered by batteries. Combined with the right tools, you could use this for metalworking, or it could be used to repair metal items. With a little mechanical know-how, you could probably even convert it to run directly off a vehicle's power system.", "weight": "10000 g", @@ -224,7 +224,7 @@ { "id": "kiln_done", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "finished charcoal kiln" }, "description": "A charcoal kiln that has finished burning. Disassemble it to retrieve the charcoal and kiln.", "weight": "8142 g", @@ -241,7 +241,7 @@ { "id": "kiln_full", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "filled charcoal kiln" }, "description": "A kiln filled with wood which will become charcoal after a slow period of burning.", "weight": "15142 g", @@ -265,7 +265,7 @@ { "id": "kiln_lit", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "lit charcoal kiln" }, "description": "A kiln full of wood that has been lit; better drop it!", "weight": "15142 g", @@ -304,7 +304,7 @@ { "id": "swage", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "swage and die set" }, "description": "These are a set of swages and dies for metalsmithing. These loops and metal blocks are used in some metalworking fabrication recipes.", "weight": "2620 g", @@ -321,7 +321,7 @@ { "id": "tongs", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "pair of metal tongs", "str_pl": "pairs of metal tongs" }, "description": "These are long, metal tongs. They are commonly used for cooking or in metalworking fabrication recipes.", "weight": "540 g", diff --git a/data/json/items/tool/misc.json b/data/json/items/tool/misc.json index 25deb4b2844c..35b99f97551e 100644 --- a/data/json/items/tool/misc.json +++ b/data/json/items/tool/misc.json @@ -32,7 +32,7 @@ { "id": "alarmclock", "type": "GENERIC", - "category": "tools", + "category": "electronics", "name": { "str": "alarm clock" }, "description": "A wind-up alarm clock. Though the noise it makes is unpleasant to wake up to, it's always good to get an early start to your day. Can also be disassembled into some useful parts.", "weight": "562 g", @@ -241,7 +241,7 @@ { "id": "e_tool", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "CLUBS" ], "name": { "str": "entrenching tool" }, "description": "This is a stout collapsible spade. It's commonly used by military forces and favored by hikers for digging. This was a popular weapon during WW1.", @@ -295,7 +295,7 @@ { "id": "fur_rollmat", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "fur rollmat" }, "description": "This is a bedroll made of pelts which can be rolled up for transport. It insulates you from the floor, making it easier to sleep. Use it to unroll and place on the ground.", "weight": "1800 g", @@ -319,7 +319,7 @@ { "id": "grapnel", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "name": { "str": "grappling hook" }, "description": "A folding grappling hook attached to a stout 30-foot long piece of lightweight cord. Useful for keeping yourself safe from falls. Can be used in place of a long rope for butchering, in a pinch.", "weight": "1980 g", @@ -359,7 +359,7 @@ { "id": "hand_pump", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "symbol": "/", "color": "blue", "name": { "str": "hand pump" }, @@ -435,7 +435,7 @@ { "id": "large_space_heater", "type": "TOOL", - "category": "tools", + "category": "deployables", "name": { "str": "large space heater" }, "description": "A portable electric heater that steadily emits warm air. Raises temperature about 10 degrees C and fills a larger volume of air than the smaller version.", "weight": "12000 g", @@ -479,7 +479,7 @@ { "id": "lifestraw", "type": "TOOL", - "category": "tools", + "category": "tools_cooking", "name": { "str": "lifestraw" }, "description": "Set the lifestraw in suspect water, let sit for one minute then drink. The two part filtration system will purify the water you drink. Water taken from uncertain sources like a river may be dirty.", "weight": "104 g", @@ -588,7 +588,7 @@ { "id": "rollmat", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "rollmat" }, "description": "This is a sheet of foam which can be rolled tightly for storage. It insulates you from the floor, making it easier to sleep. Use it to unroll and place on the ground.", "weight": "250 g", @@ -646,7 +646,7 @@ { "id": "small_space_heater", "type": "TOOL", - "category": "tools", + "category": "deployables", "name": { "str": "small space heater" }, "description": "A portable electric heater that steadily emits warm air. Raises temperature about 10 degrees C.", "weight": "6000 g", @@ -712,7 +712,7 @@ { "id": "stepladder", "type": "TOOL", - "category": "tools", + "category": "deployables", "name": { "str": "stepladder" }, "description": "This is a wooden stepladder. Use it to set it down.", "weight": "20000 g", @@ -897,7 +897,7 @@ { "id": "whistle_multitool", "type": "TOOL", - "category": "tools", + "category": "tools_farming", "name": { "str": "whistle multitool" }, "description": "A cheap gadget combining a whistle, thermometer, magnifying glass, and compass.", "weight": "7 g", diff --git a/data/json/items/tool/pets.json b/data/json/items/tool/pets.json index dae965ba7ace..6a506677fdbb 100644 --- a/data/json/items/tool/pets.json +++ b/data/json/items/tool/pets.json @@ -2,7 +2,7 @@ { "id": "chicken_cage", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "chicken cage" }, "description": "A wire container made for transporting chickens, but you can use it to hold any tiny animal. Use it on a suitable animal to capture, use it on an empty tile to release.", "weight": "250 g", @@ -21,7 +21,7 @@ { "id": "dog_whistle", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "dog whistle" }, "description": "This is a small whistle. When used, it produces a high tone that causes nearby friendly dogs to either follow you closely and stop attacking, or start attacking enemies if they are currently docile.", "weight": "22 g", @@ -36,7 +36,7 @@ { "id": "shears", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str_sp": "shears" }, "description": "This is a set of shears designed to obtain wool from sheep.", "weight": "820 g", @@ -54,7 +54,7 @@ { "id": "elec_shears", "type": "TOOL", - "category": "tools", + "category": "tools_farming", "name": { "str_sp": "electric shears" }, "description": "These electric shears can be used to shear animals quicker.", "weight": "1200 g", @@ -75,7 +75,7 @@ { "id": "horse_tack", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "horse tack" }, "description": "A saddle, bridle, and associated tack that can be placed on a tamed animal that is capable of being ridden.", "weight": "2 kg", @@ -92,7 +92,7 @@ { "id": "pet_carrier", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "pet carrier" }, "description": "A plastic container meant to hold pets for transport. Use it on a suitable animal to capture, use it on an empty tile to release.", "weight": "1000 g", @@ -126,7 +126,7 @@ { "id": "dog_whistle_wood", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "name": { "str": "wooden dog whistle" }, "description": "This is a whistle carved out of hardwood. When used, it produces a high tone that causes nearby friendly dogs to either follow you closely and stop attacking, or start attacking enemies if they are currently docile.", "weight": "50 g", diff --git a/data/json/items/tool/radio_tools.json b/data/json/items/tool/radio_tools.json index 9468c6e16c27..97d7c4362b95 100644 --- a/data/json/items/tool/radio_tools.json +++ b/data/json/items/tool/radio_tools.json @@ -28,7 +28,7 @@ "id": "radiocontrol", "copy-from": "radio_car_base", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "RC control" }, "description": "A remote control for RC cars, with joystick to steer the car and colorful buttons that don't seem to do anything. Perhaps they were for the deluxe model?", "symbol": "#", @@ -58,7 +58,7 @@ "id": "radio_car", "copy-from": "radio_car_base", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "RC car" }, "description": "A remote-controlled car. Fun for young and old alike.", "symbol": "#", @@ -97,7 +97,7 @@ { "id": "radio", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "radio (off)", "str_pl": "radios (off)" }, "description": "This is a portable radio. Using this radio turns it on. It will pick up any nearby signals being broadcast and play them audibly.", "weight": "295 g", @@ -144,7 +144,7 @@ { "id": "two_way_radio", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "two-way radio" }, "description": "This is a radio with a transmitting unit. You could use it to contact someone who also has one. Unfortunately no one seems to use those nowadays…", "weight": "400 g", @@ -177,7 +177,7 @@ { "id": "remotevehcontrol", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "remote vehicle controller" }, "description": "A remote controller for real cars. Can turn onboard devices on and off. Some cars can be driven remotely.", "weight": "907 g", diff --git a/data/json/items/tool/raincatchers.json b/data/json/items/tool/raincatchers.json index a0c8a93caf14..cb5d4439d7f3 100644 --- a/data/json/items/tool/raincatchers.json +++ b/data/json/items/tool/raincatchers.json @@ -2,7 +2,7 @@ { "id": "birchbark_funnel", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "birchbark funnel" }, "description": "This is a small birchbark funnel. Place it above an outdoor container to collect rainwater.", "weight": "3 g", @@ -26,7 +26,7 @@ { "id": "funnel", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "funnel" }, "description": "This is a funnel used to collect rainwater. Use it outside and place a container beneath it to collect water when it rains.", "weight": "606 g", @@ -51,7 +51,7 @@ { "id": "leather_funnel", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "leather funnel" }, "description": "This is a small, leather funnel used to collect rainwater. Use it outside and place a container beneath it to collect water when it rains.", "weight": "4 g", @@ -75,7 +75,7 @@ { "id": "makeshift_funnel", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "makeshift funnel" }, "description": "This is a small, makeshift funnel used to collect rainwater. Use it outside and place a container beneath it to collect water when it rains.", "weight": "4 g", @@ -99,7 +99,7 @@ { "id": "metal_funnel", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "metal funnel" }, "description": "This is a large metal funnel used to collect rainwater. Less portable than plastic funnels, but collects more water. Use it outside and place a container beneath it to collect water when it rains.", "weight": "4017 g", @@ -124,7 +124,7 @@ { "id": "tarp_raincatcher", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "tarp raincatcher" }, "description": "Some sticks and string with a tarpaulin to set up an improvised raincatcher.", "weight": "3980 g", diff --git a/data/json/items/tool/science.json b/data/json/items/tool/science.json index cd116f49789f..b9150a1966e9 100644 --- a/data/json/items/tool/science.json +++ b/data/json/items/tool/science.json @@ -2,7 +2,7 @@ { "id": "barometer", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "barometer" }, "description": "A plastic barometer that can read the atmospheric pressure.", "weight": "1 g", @@ -39,7 +39,7 @@ { "id": "chemistry_set", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "chemistry set" }, "description": "This is a chemistry set stored in a box. The contents include glass containers, hoses, metal wire, a hotplate, and safety glasses. It might be used to craft some chemistry projects if you're so inclined.", "weight": "5200 g", @@ -67,7 +67,7 @@ { "id": "chemistry_set_basic", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "basic chemistry set" }, "description": "This is a basic chemistry set which includes glass containers, hoses and safety glasses. It might be used to craft some chemistry projects if you're so inclined, but you'll need a source of heat.", "weight": "1884 g", @@ -84,7 +84,7 @@ { "id": "electrolysis_kit", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "electrolysis kit" }, "description": "A set of wiring and electrodes for applying a direct current, usually to a liquid. Useful for crafting. Load with a storage battery or 12V vehicle battery to use.", "weight": "250 g", @@ -131,7 +131,7 @@ { "id": "hydrogen_tank", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "hydrogen tank" }, "description": "This is a tank of compressed hydrogen gas. If you need to make water from scratch, or lift a zeppelin, it could come in handy.", "weight": "2268 g", @@ -151,7 +151,7 @@ { "id": "hygrometer", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "hygrometer" }, "description": "A plastic hygrometer that can read the relative humidity in the air.", "weight": "1 g", @@ -168,7 +168,7 @@ { "id": "nitrogen_tank", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "nitrogen tank" }, "description": "This is a tank of compressed nitrogen gas. Nitrogen is useful for its lack of reactivity. Don't try to breathe it.", "weight": "2268 g", @@ -188,7 +188,7 @@ { "id": "oxygen_cylinder", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "oxygen cylinder" }, "description": "A large steel cylinder used for storing pressurized gas. It is marked with a faded, but legible O2 symbol.", "weight": "12888 g", @@ -208,7 +208,7 @@ { "id": "platinum_grille", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "platinum grille" }, "description": "This is a metal grille with a layer of platinum plating, suitable for use as a catalyst for some chemical reactions.", "weight": "660 g", @@ -246,7 +246,7 @@ { "id": "telepad", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "teleport pad" }, "description": "This is a kit for a teleporter trap consisting of a teleporter and a solar cell that is triggered when stepped upon.", "weight": "2000 g", @@ -284,7 +284,7 @@ { "id": "weather_reader", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "Doppler Radar Turbo 2000" }, "description": "A briefcase with built-in laptop that looks like it's from the 80s. Its vintage monochrome monitor displays a plethora of meteorological data. No sign of the FLDSMDFR, however.", "weight": "10 g", @@ -319,7 +319,7 @@ { "id": "analytical_set_basic", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "basic laboratory analysis kit" }, "description": "This hefty kit contains some basic things you should probably not try to do precise chemistry without: namely, a small balance scale, a spectrophotometer, a melting point apparatus, a pH meter, and a set of paper for thin layer chromatography. This makes it a lot easier to feel confident that the chemical you've made is what you think you've made.", "weight": "12500 g", @@ -344,7 +344,7 @@ { "id": "balance_small", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "small weight scale" }, "description": "This is a simple scale that uses a set of steel weights on sliding bars to measure a sample's mass quite accurately.", "weight": "1000 g", @@ -360,7 +360,7 @@ { "id": "spectrophotometer", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "spectrophotometer" }, "description": "This ubiquitous analytical chemistry tool measures the light absorption of a liquid sample in a special tube called a cuvette.", "weight": "5000 g", @@ -384,7 +384,7 @@ { "id": "ph_meter", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "pH meter" }, "description": "This is basically a pair of glass probes on a voltmeter. By putting one probe into a calibration solution (conveniently included) and the other in a substance, you can calculate the acidity.", "weight": "500 g", @@ -416,7 +416,7 @@ { "id": "voltmeter", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "voltmeter" }, "description": "This device has two probes that let you measure the electrical potential between two points. Activate to check the status of any local grid connections or battery charge in your surroundings, as well as make modifications to grid connections", "weight": "500 g", @@ -450,7 +450,7 @@ { "id": "melting_point", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "melting point apparatus", "str_pl": "units of melting point apparatus" }, "description": "This is basically a hot plate, with a metal housing attached. The metal housing has a magnification viewport and a slot into which a capillary tube containing a crystallized sample is inserted. The device lets you precisely measure the melting point of a crystal, a property very useful in identifying what it is and how pure it is.", "weight": "5000 g", @@ -482,7 +482,7 @@ { "id": "vortex", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "vortex device" }, "description": "This is a small, hefty, boring looking machine. Its weighted trapezoidal frame has a single on-off switch and a speed dial, and on top of it sits a rubber receptacle. Pressing a test tube into the receptacle would, with power, rapidly shake and mix the contents of the test tube. It's surprisingly fun to use.", "weight": "3500 g", @@ -498,7 +498,7 @@ { "id": "light_detector", "type": "GENERIC", - "category": "spare_parts", + "category": "tools_chemistry", "name": { "str": "light detector" }, "description": "This is a photodiode on a chip, designed to convert incoming light to electrical energy for quantification.", "weight": "50 g", @@ -515,7 +515,7 @@ { "id": "glass_prism", "type": "GENERIC", - "category": "spare_parts", + "category": "tools_chemistry", "name": { "str": "glass prism" }, "description": "This is a high quality crystal glass prism for separating and redirecting light.", "weight": "50 g", @@ -548,7 +548,7 @@ { "id": "microscope", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "microscope" }, "description": "A classic tool for the ages! This hefty, durable piece of lab equipment makes small things look bigger. Without electricity the light doesn't work, but the rest of it is surprisingly functional. Unfortunately it's not useful for very much at the moment.", "weight": "2000 g", @@ -564,7 +564,7 @@ { "id": "microscope_dissecting", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "dissecting microscope" }, "description": "This microscope has less magnification than a standard one. It's also stereoscopic and produces a neat 3d image of the surface. It was typically used for doing dissections and other fine detail work on small creatures. It still works pretty well with an added light source, but what would you do with it?", "weight": "2200 g", @@ -580,7 +580,7 @@ { "id": "funnel_separation", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "separation funnel" }, "description": "This thing doesn't look much like a funnel. It's a teardrop shaped piece of glass with a stopper at the wide end and a valve at the other. It can be used to wash one liquid with another, like water and an oil, and then draw off whichever of the two liquids contains a higher amount of whatever compound you're trying to isolate. With a high level of skill it can also be used to make juvenile farting noises.", "weight": "200 g", @@ -599,7 +599,7 @@ { "id": "rotovap", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "rotary evaporator" }, "description": "Just looking at this thing makes you feel like a proper mad scientist. It's a series of glass tubes and round flasks, connected to a central motor and a heating element. The heating element warms one flask, kept rotating by the motor, evaporating the contents. The vapour is then condensed in the tubes and collected in another flask, in case you wanted to save it for later.", "weight": "18000 g", @@ -616,7 +616,7 @@ { "id": "still_lab", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "fractional distillation apparatus", "str_pl": "fractional distillation apparati" }, "description": "One of the classic pieces of mad science glassware, this is basically a small volume still that passes the vapour through a fractional distillation column and then condenses the distillate in a cooled collection column. A grad student or a robot (is there really any difference?) collects the distillate in fractions so that specific contents can be analyzed. Going a few milliliters at a time, it would not be very effective to try to distill whiskey in this thing.", "weight": "1000 g", @@ -634,7 +634,7 @@ { "id": "gelbox", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "electrophoresis tray" }, "description": "This is a set of plastic trays, electrodes, and a power supply designed to create an electric voltage gradient through a liquid solution containing a solid gel. Stuff like proteins and DNA would then get separated on the gel according to electrical charge and size. Pretty useless now, for anything but salvage.", "weight": "1000 g", @@ -651,7 +651,7 @@ { "id": "microcentrifuge", "type": "TOOL", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "microcentrifuge" }, "description": "This is a smaller, benchtop version of the larger furniture-sized centrifuge. Don't be fooled by its portable scale; it's still a very powerful piece of equipment that can spin stuff really quickly. It's not a toy!", "weight": "2000 g", diff --git a/data/json/items/tool/shelters.json b/data/json/items/tool/shelters.json index 09f4ff113be9..6318a173ade8 100644 --- a/data/json/items/tool/shelters.json +++ b/data/json/items/tool/shelters.json @@ -18,7 +18,7 @@ { "id": "large_tent_kit", "type": "TOOL", - "category": "tools", + "category": "deployables", "name": { "str": "large tent" }, "description": "This is a family sized tent. It provides a large amount of space, but is very bulky.", "weight": "2266 g", @@ -44,7 +44,7 @@ { "id": "shelter_kit", "type": "TOOL", - "category": "tools", + "category": "deployables", "name": { "str": "shelter kit" }, "description": "This is a small shelter, made of sticks and skins. Use it to place.", "weight": "1360 g", @@ -69,7 +69,7 @@ { "id": "tent_kit", "type": "TOOL", - "category": "tools", + "category": "deployables", "name": { "str": "tent" }, "description": "This is a small personal tent, it's just big enough to fit you comfortably.", "weight": "1133 g", diff --git a/data/json/items/tool/stationary.json b/data/json/items/tool/stationary.json index 5355ccabe972..4ec93597d7a4 100644 --- a/data/json/items/tool/stationary.json +++ b/data/json/items/tool/stationary.json @@ -2,7 +2,7 @@ { "id": "stapler", "type": "GENERIC", - "category": "tools", + "category": "scrap_metal", "name": { "str": "stapler" }, "description": "A stapler for fastening sheets of paper together.", "weight": "300 g", @@ -16,7 +16,7 @@ { "id": "pen", "type": "GENERIC", - "category": "tools", + "category": "other", "name": { "str": "pen" }, "description": "A plastic ball point pen.", "weight": "20 g", @@ -30,7 +30,7 @@ { "id": "scissors", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "KNIVES" ], "name": { "str": "pair of scissors", "str_pl": "pairs of scissors" }, "description": "These are a long pair of heavy-duty scissors. Use scissors to cut items made from cotton (like clothing) into rags.", @@ -50,7 +50,7 @@ "type": "GENERIC", "id": "paper", "name": "paper", - "category": "spare_parts", + "category": "scrap_wood", "weight": "3 g", "color": "white", "symbol": "`", diff --git a/data/json/items/tool/tailoring.json b/data/json/items/tool/tailoring.json index 6c825bed98fd..01dc1a89c9a6 100644 --- a/data/json/items/tool/tailoring.json +++ b/data/json/items/tool/tailoring.json @@ -2,7 +2,7 @@ { "id": "awl_bone", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "bone sewing awl" }, "description": "This is a crude sharpened bone awl; those were used for leatherworking before metal was discovered. It can also serve as an improvised stabbing weapon, but will break quickly.", "weight": "200 g", @@ -35,7 +35,7 @@ { "id": "knitting_needles", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "knitting needles", "str_pl": "pairs of knitting needles" }, "description": "A pair of stout wooden needles with round ends used to turn thread and yarn into cloth.", "weight": "56 g", @@ -52,7 +52,7 @@ { "id": "needle_bone", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "bone needle" }, "description": "This is sharp needle made from a bone. It would be useful for making rough clothing and items. Its low quality makes it rather unsuitable for anything requiring speed or precision.", "weight": "85 g", @@ -81,7 +81,7 @@ { "id": "needle_curved", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "curved needle" }, "description": "A curved sharp needle made of steel. Its rounded shape allows it to make stitches that only pierce one side of the material. While unsuitable for most tailoring projects, it's a necessity for stitching neoprene.", "weight": "85 g", @@ -110,7 +110,7 @@ { "id": "needle_wood", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "wooden needle" }, "description": "This is a wooden needle whittled down to a sharp point. It has a narrow hole carved into the head for threading. Its low quality makes it rather unsuitable for anything requiring speed or precision, or involving tougher materials like Kevlar.", "weight": "85 g", @@ -139,7 +139,7 @@ { "id": "sewing_kit", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "sewing kit" }, "description": "This is a plastic kit with a variety of needles, some plastic spools for thread, and a few other useful textile tools. Use a sewing kit on an article of clothing to attempt to repair or reinforce that clothing. This uses your tailoring skill.", "weight": "85 g", @@ -183,7 +183,7 @@ { "id": "tailors_kit", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "tailor's kit" }, "description": "This is a high quality kit consisting of a variety of needles, some plastic spools for thread, some small scissors, and an awl. Using your tailoring skill, this kit can customize your clothing and armor, whether up-armoring them or altering some items to fit large mutant wearers.", "weight": "100 g", diff --git a/data/json/items/tool/toiletries.json b/data/json/items/tool/toiletries.json index 56bce9be4705..04d379254231 100644 --- a/data/json/items/tool/toiletries.json +++ b/data/json/items/tool/toiletries.json @@ -2,7 +2,7 @@ { "id": "bathroom_scale", "type": "GENERIC", - "category": "tools", + "category": "scrap_metal", "name": { "str": "bathroom scale" }, "symbol": "■", "color": "light_gray", @@ -20,7 +20,7 @@ { "id": "brush", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "scrub brush", "str_pl": "scrub brushes" }, "description": "This is a simple scrub brush.", "weight": "70 g", @@ -37,7 +37,7 @@ { "id": "elec_hairtrimmer", "type": "TOOL", - "category": "tools", + "category": "electronics", "name": { "str": "electric hair trimmer" }, "description": "This is a pocket-sized electric trimmer made for cutting hair. You can use it to cut your hair if it's supplied with batteries. It requires 10 batteries per use.", "weight": "138 g", @@ -93,7 +93,7 @@ }, { "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "id": "razor_blade", "symbol": ",", "color": "light_cyan", @@ -128,7 +128,7 @@ { "id": "sponge", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "sponge" }, "description": "A sponge is a tool or cleaning aid made of soft, porous material. Typically used for cleaning impervious surfaces.", "weight": "80 g", @@ -181,7 +181,7 @@ { "id": "washboard", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "washboard" }, "description": "This is a wooden washboard. You can use it to wash filthy clothing if it's supplied with cleansing agent.", "weight": "90 g", @@ -198,7 +198,7 @@ { "id": "wash_kit", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "washing kit" }, "description": "A combination kit of a washboard and a scrubbing tool. Everything you need to clean items after the apocalypse.", "weight": "100 g", diff --git a/data/json/items/tool/traps.json b/data/json/items/tool/traps.json index 3091c837c45a..22e9a8ff3190 100644 --- a/data/json/items/tool/traps.json +++ b/data/json/items/tool/traps.json @@ -2,7 +2,7 @@ { "id": "beartrap", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "bear trap" }, "description": "This is a spring-loaded pair of steel jaws connected to a sensitive pressure plate. Use it to set it on the ground, creating a trap that will ensnare and damage anything that steps on it. If you are carrying a shovel, you will have the option of burying it.", "weight": "14000 g", @@ -29,7 +29,7 @@ { "id": "blade_trap", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "blade trap" }, "description": "This is a machete attached laterally to a motor, with a tripwire controlling its throttle. When the tripwire is pulled, the blade is swung around with great force. The trap forms a 3x3 area of effect.", "weight": "2381 g", @@ -54,7 +54,7 @@ { "id": "board_trap", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "nailboard trap" }, "description": "These are several pieces of wood nailed together, with some nails sticking straight up. If an unsuspecting victim steps on it, they'll get nails through the foot.", "weight": "2041 g", @@ -79,7 +79,7 @@ { "id": "boobytrap", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "booby trap" }, "description": "This is a crude explosive device triggered by a piece of string. Use it to set up and watch some poor bastard trigger it.", "weight": "586 g", @@ -101,7 +101,7 @@ { "id": "bubblewrap", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "bubble wrap" }, "description": "This is a sheet of plastic covered with air-filled bubbles. Use it to set it on the ground, creating a trap that will warn you with noise when something steps on it.", "weight": "6 g", @@ -123,7 +123,7 @@ { "id": "caltrops", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str_sp": "loose caltrops" }, "description": "These are small metal objects covered with many sharp points. If an unsuspecting victim steps on one, they'll get a spine through the foot.", "weight": "264 g", @@ -147,7 +147,7 @@ { "id": "caltrops_glass", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str_sp": "loose glass caltrops" }, "description": "These are glass shards glued together to expose their sharp edges. If an unsuspecting victim steps on one, they'll get cut.", "weight": "264 g", @@ -170,7 +170,7 @@ { "id": "crossbow_trap", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "crossbow trap" }, "description": "This is a simple tripwire, which is attached to the trigger of a loaded crossbow. When pulled, the crossbow fires. Only a single round can be used, after which the trap is disabled.", "weight": "1772 g", @@ -193,7 +193,7 @@ { "id": "landmine", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "land mine" }, "description": "This is a military anti-personnel mine that is triggered when stepped upon.", "weight": "2360 g", @@ -218,7 +218,7 @@ { "id": "shotgun_trap", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "double-barreled shotgun trap" }, "description": "This is a simple tripwire is attached to the trigger of a loaded double-barreled shotgun. When pulled, the shotgun fires, discharging both barrels into the target.", "weight": "3500 g", @@ -257,7 +257,7 @@ { "id": "tripwire", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "tripwire trap" }, "description": "This is some thin strong cable with some affixing tools on either end. A tripwire trap must be placed across a doorway or other thin passage. Its purpose is to trip up bypassers, causing them to stumble and possibly hurt themselves slightly.", "weight": "40 g", @@ -280,7 +280,7 @@ { "id": "can_alarm_trap", "type": "GENERIC", - "category": "tools", + "category": "deployables", "name": { "str": "makeshift perimeter alarm" }, "description": "This is a set of empty cans used as makeshift noisemakers, strung up across a doorway or other thin passage. It will make noise when activated to alert you of intruders, but is otherwise harmless.", "weight": "120 g", @@ -304,7 +304,7 @@ { "id": "glass_shard_trap", "type": "GENERIC", - "category": "other", + "category": "deployables", "symbol": ",", "color": "light_cyan", "name": { "str": "glass shard trap" }, diff --git a/data/json/items/tool/woodworking.json b/data/json/items/tool/woodworking.json index 7a89d6522983..6ba754fb4276 100644 --- a/data/json/items/tool/woodworking.json +++ b/data/json/items/tool/woodworking.json @@ -2,7 +2,7 @@ { "id": "ax", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "2H_AXES" ], "name": { "str": "wood axe" }, "description": "This is a large, two-handed wood axe. It makes a good melee weapon, but is a bit slow to recover between swings.", @@ -35,7 +35,7 @@ { "id": "chainsaw_off", "type": "TOOL", - "category": "tools", + "category": "tools_farming", "name": { "str": "chainsaw (off)", "str_pl": "chainsaws (off)" }, "description": "This is a lumbering tool moonlighting as weapon of opportunity. If loaded with gas, using this item will cause it to turn on, turning it into a very powerful but unwieldy melee weapon.", "weight": "6577 g", @@ -84,7 +84,7 @@ { "id": "circsaw_off", "type": "TOOL", - "category": "tools", + "category": "tools_farming", "name": { "str": "circular saw (off)", "str_pl": "circular saws (off)" }, "description": "A lightweight handheld cordless circular saw. Spins a circular blade fast enough to cut wood, zombies, or in an emergency, pizza. The blade, while effective in combat, is hard to hit with due to its small size.", "weight": "2940 g", @@ -130,7 +130,7 @@ { "id": "copper_ax", "type": "GENERIC", - "category": "tools", + "category": "tools_farming", "weapon_category": [ "2H_AXES" ], "name": { "str": "copper axe" }, "description": "This is a decent-sized chunk of worked copper affixed to a wooden shaft, to make a crude yet effective axe.", @@ -171,7 +171,7 @@ { "id": "elec_chainsaw_off", "type": "TOOL", - "category": "tools", + "category": "tools_farming", "name": { "str": "electric chainsaw (off)", "str_pl": "electric chainsaws (off)" }, "description": "This is a lumbering tool moonlighting as weapon of opportunity. If loaded with batteries, using this item will cause it to turn on, turning it into a very powerful but unwieldy melee weapon.", "weight": "6577 g", @@ -272,7 +272,7 @@ { "id": "saw", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "wood saw" }, "description": "This is a thin saw, useful for cutting through wood objects.", "weight": "283 g", diff --git a/data/json/items/tool/workshop.json b/data/json/items/tool/workshop.json index 28572aced703..a0c0e1e075e8 100644 --- a/data/json/items/tool/workshop.json +++ b/data/json/items/tool/workshop.json @@ -88,7 +88,7 @@ { "id": "acetylene_machine", "type": "GENERIC", - "category": "tools", + "category": "tools_chemistry", "name": { "str": "acetylene-gas machine" }, "symbol": "&", "color": "light_gray", @@ -104,7 +104,7 @@ { "id": "angle_grinder", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "angle grinder" }, "description": "This widespread powertool is often used for removing excess material or polishing surfaces.", "weight": "2780 g", @@ -133,7 +133,7 @@ { "id": "brick_kiln", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "brick kiln" }, "description": "This is a portable charcoal-fired kiln. It is designed for firing bricks, but you could use it to fire anything made of clay.", "weight": "9600 g", @@ -152,7 +152,7 @@ { "id": "carding_paddles", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "carding paddles", "str_pl": "pairs of carding paddles" }, "description": "A pair of toothy wooden paddles used to clean fibers for use in textile production.", "weight": "360 g", @@ -168,7 +168,7 @@ { "id": "chipper", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "paint chipper" }, "description": "A tool similar to a chisel, designed to remove paint.", "weight": "60 g", @@ -185,7 +185,7 @@ { "id": "clamp", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "clamp" }, "description": "This clamp is useful for keeping things still, especially if you have several of them.", "weight": "320 g", @@ -203,7 +203,7 @@ { "id": "claw_bar", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "CLUBS", "1H_HOOKED" ], "name": { "str": "claw bar" }, "description": "This is a small prying tool with a clawed bend at one end for pulling spikes. Use it to open locked doors without destroying them or to lift manhole covers. You could also wield it to bash some heads in.", @@ -224,7 +224,7 @@ { "id": "con_mix", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "concrete mixer" }, "description": "A portable concrete mixer. It is still large and heavy, but it can be operated solo, and runs on batteries. It also has a heater built in.", "weight": "9071 g", @@ -251,7 +251,7 @@ { "id": "cordless_drill", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "cordless drill" }, "description": "This is a cordless battery-powered drill with a selection of drill bits.", "weight": "2721 g", @@ -277,7 +277,7 @@ { "id": "distaff_spindle", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "distaff and spindle", "str_pl": "distaves and spindles" }, "description": "A pair of specialized wooden rods used to spin fibers into thread and yarn.", "weight": "612 g", @@ -294,7 +294,7 @@ { "id": "elec_jackhammer", "type": "TOOL", - "category": "tools", + "category": "tools_entry", "name": { "str": "electric jackhammer" }, "description": "This is a construction tool for drilling through hard rock or other surfaces. It runs on a rechargeable cell, optionally compatible with UPS. Use it to blast a hole in adjacent solid terrain.", "weight": "40000 g", @@ -317,7 +317,7 @@ { "id": "hacksaw", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "hacksaw" }, "description": "This is a sturdy saw, useful for cutting through metal objects.", "weight": "952 g", @@ -365,7 +365,7 @@ { "id": "hammer", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "1H_HAMMERS" ], "name": { "str": "hammer" }, "description": "This is a demagnetized steel claw hammer with a wooden grip. With a hammer, nails, and two by fours in your inventory, you could board up adjacent doors and windows. It has myriad other uses as well.", @@ -396,7 +396,7 @@ { "id": "hand_drill", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "hand drill" }, "description": "A primitive manual drill with a single drill bit. It is slow and it will exhaust you quickly.", "weight": "907 g", @@ -414,7 +414,7 @@ { "id": "hose", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "rubber hose" }, "description": "This is a flexible rubber hose. It could be used for crafting, or siphoning fuel from a vehicle.", "weight": "544 g", @@ -431,7 +431,7 @@ { "id": "jack", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "bottle jack" }, "description": "A portable hydraulic bottle jack used for lifting vehicles.", "material": "steel", @@ -448,7 +448,7 @@ { "id": "jack_makeshift", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "makeshift jack" }, "description": "A poorly constructed improvised scissor jack used for lifting vehicles if you're brave enough to use it.", "material": "steel", @@ -465,7 +465,7 @@ { "id": "jack_small", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "scissor jack" }, "description": "A compact scissor jack used for lifting vehicles.", "material": "steel", @@ -482,7 +482,7 @@ { "id": "jackhammer", "type": "TOOL", - "category": "tools", + "category": "tools_entry", "name": { "str": "jackhammer" }, "description": "This is a construction tool for drilling through hard rock or other surfaces. It runs on gasoline. Use it (if loaded) to blast a hole in adjacent solid terrain.", "weight": "15875 g", @@ -504,7 +504,7 @@ { "id": "auger", "type": "TOOL", - "category": "tools", + "category": "tools_farming", "name": { "str": "Auger" }, "description": "This is a construction tool for boring holes in ground. It runs on gasoline. For health reasons alone, augers are a worthwhile investment.", "looks_like": "jackhammer", @@ -527,7 +527,7 @@ { "id": "kiln", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "electric kiln" }, "description": "This is a portable electric kiln, powered by batteries. It is designed for firing bricks, but you could use it to fire anything made of clay. With a little mechanical know-how, you could probably even convert it to run directly off a vehicle's power system.", "weight": "12000 g", @@ -549,7 +549,7 @@ { "id": "large_repairkit", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "gunsmith repair kit" }, "description": "This is a complete toolkit made to repair damaged firearms. Powered by standard batteries, it is a vital tool for long-term firearms maintenance. It requires 25 charges of battery power per use.", "weight": "9860 g", @@ -588,7 +588,7 @@ { "id": "makeshift_hammer", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "1H_HAMMERS" ], "name": { "str": "makeshift hammer" }, "description": "This is a crude hammer made from a piece of metal affixed to a stick. It functions adequately as a hammer, but really can't compare to a proper one.", @@ -608,7 +608,7 @@ { "id": "metal_file", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "metal fileset" }, "description": "These tools are commonly used to remove small amounts of materials from the surface of metal objects.", "weight": "76 g", @@ -626,7 +626,7 @@ { "id": "metal_smoother", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "metallic smoother" }, "description": "This metallic tool is most often used to smooth concrete, or mortar, in construction projects.", "weight": "362 g", @@ -642,7 +642,7 @@ { "id": "misc_repairkit", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "misc repair kit" }, "description": "This is a portable toolkit, consisting of a small carving knife for precise carving of replacement parts from raw materials, a wood saw for more heavy-duty wood cutting, and a patch of soft material for cleaning surfaces. If supplied with duct tape, it can be used to repair certain items.", "weight": "386 g", @@ -705,7 +705,7 @@ { "id": "mold_plastic", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "plastic mold" }, "description": "This is a plastic mold. It could be shaped and used to craft items made of plastic.", "weight": "320 g", @@ -722,7 +722,7 @@ { "id": "multitool", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "multi-tool" }, "//": "The multi-tool is a bit more of a toolkit than a knife.", "description": "A cleverly designed all-in-one tool which combines several smaller tools into the handles of a pair of pliers.", @@ -742,7 +742,7 @@ { "id": "oxy_torch", "type": "TOOL", - "category": "tools", + "category": "tools_entry", "name": { "str": "acetylene torch", "str_pl": "acetylene torches" }, "description": "A compact tool kit intended for welding and cutting metal, this portable oxyacetylene torch includes a torch handle and cutting attachment in an easy-to-carry tote. It requires connecting to pressurized cylinders of an appropriate welding gas before use. In addition to its metalworking uses, you can activate it in order to destroy metal barriers.", "weight": "1600 g", @@ -762,7 +762,7 @@ { "id": "paint_brush", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "paint brush", "str_pl": "paint brushes" }, "description": "A wide brush, suitable for painting walls.", "weight": "60 g", @@ -778,7 +778,7 @@ { "id": "pickaxe", "type": "GENERIC", - "category": "tools", + "category": "tools_entry", "weapon_category": [ "HOOKED_POLES" ], "name": { "str": "pickaxe" }, "description": "This is a large steel pickaxe, suitable for breaking up hard things or (with enough skill) hard targets. Strike the earth!", @@ -799,7 +799,7 @@ { "id": "pin_reamer", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "pin reamer" }, "description": "Handheld pin reamers of this kind are used to enlarge existing holes, or remove any burs and such from them.", "weight": "76 g", @@ -817,7 +817,7 @@ { "id": "pliers", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str_sp": "pliers" }, "description": "This is a basic pair of slip-joint pliers, able to handle basic mechanical work and pulling apart some ammunition cartridges. Anything too complex will require a wrench.", "weight": "807 g", @@ -834,7 +834,7 @@ { "id": "polisher", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "electric polisher" }, "description": "An electric polisher which can be used to buff metal surfaces until they are reflective like a mirror.", "weight": "1000 g", @@ -888,7 +888,7 @@ { "id": "screwdriver", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "STILETTOS" ], "name": { "str": "screwdriver" }, "description": "This is a Philips-head screwdriver. It is important for almost all electronics crafting, most mechanics crafting, and has many more uses.", @@ -908,7 +908,7 @@ { "id": "screwdriver_set", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "screwdriver set" }, "description": "This is a set of screwdrivers in several sizes and blade types. Guaranteed to have the right tools for more precise work.", "weight": "340 g", @@ -927,7 +927,7 @@ { "id": "small_repairkit", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "firearm repair kit" }, "description": "This is a portable toolkit made to repair damaged firearms. Powered by standard batteries, it is a vital tool for long-term firearms maintenance. It requires 100 charges of battery power per use.", "weight": "2420 g", @@ -967,7 +967,7 @@ { "id": "soldering_iron", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "STILETTOS" ], "name": { "str": "electric soldering iron" }, "description": "This is a device with a metal tip that can get very hot. It is necessary for advanced electronics crafting. You could also use it to cauterize wounds, if you had to.", @@ -1045,7 +1045,7 @@ { "id": "toolbox", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "toolbox", "str_pl": "toolboxes" }, "description": "This is a stout metal box containing a complete tool kit suitable for most household maintenance and construction activities.", "weight": "3522 g", @@ -1111,7 +1111,7 @@ { "id": "toolbox_workshop", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "workshop toolbox", "str_pl": "workshop toolboxes" }, "description": "This is a stout metal box containing a complete tool kit suitable for most household maintenance and construction activities, as well as additional tools used in workshops for advanced fabrication jobs.", "looks_like": "toolbox", @@ -1258,7 +1258,7 @@ { "id": "welder", "type": "TOOL", - "category": "tools", + "category": "tools_workshop", "name": { "str": "arc welder" }, "description": "This is a battery powered tool for welding metal pieces together using an electric arc. It is an indispensable tool for construction or repair.", "weight": "4200 g", @@ -1309,7 +1309,7 @@ { "id": "wood_smoother", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "CLUBS" ], "name": { "str": "wooden smoother" }, "description": "This large makeshift tool is used in smoothing concrete or mortar in construction projects. You could also use it as an improvised head-basher.", @@ -1327,7 +1327,7 @@ { "id": "wool_staple", "type": "GENERIC", - "category": "spare_parts", + "category": "scrap_fabric", "name": { "str": "wool staple" }, "description": "The natural cluster of wool fibers. Could be processed to the felt patches or yarns.", "weight": "200 g", @@ -1343,7 +1343,7 @@ { "id": "xacto", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "KNIVES" ], "name": { "str": "X-Acto knife", "str_pl": "X-Acto knives" }, "description": "This is a small, sharp knife, designed for making precise cuts for textiles or crafts. It could cause decent damage, but is difficult to hit things with it. Its small, sharp blade allows for precision strikes in the hands of the skilled. It is too small to butcher corpses with.", @@ -1363,7 +1363,7 @@ { "id": "wrench", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "weapon_category": [ "BATONS" ], "name": { "str": "wrench", "str_pl": "wrenches" }, "description": "This is an adjustable crescent wrench. It could be a decent melee weapon, and is used in many mechanics crafting recipes.", @@ -1381,7 +1381,7 @@ { "id": "makeshift_hose", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": "leather hose", "description": "This is a hose made out of leather. Watertight and flexiable, it can be used to siphon fuel from a vehicle tank. However, it's not as elastic a rubber hose.", "weight": "600 g", @@ -1396,7 +1396,7 @@ { "id": "makeshift_hand_drill", "type": "GENERIC", - "category": "tools", + "category": "tools_workshop", "name": { "str": "makeshift hand drill" }, "description": "This is a makeshift manual drill made out of pipe and improvised drill bit. It is very slow and it will exhaust you quickly.", "weight": "1354 g", diff --git a/data/json/items/vehicle/frames.json b/data/json/items/vehicle/frames.json index f2d6b5a4d098..b3bd9f841b78 100644 --- a/data/json/items/vehicle/frames.json +++ b/data/json/items/vehicle/frames.json @@ -120,5 +120,20 @@ "price": "35 USD", "price_postapoc": "1 USD", "copy-from": "foldframe" + }, + { + "type": "GENERIC", + "id": "frame_wood_deck", + "name": { "str": "skateboard deck" }, + "symbol": "]", + "description": "A small skateboard frame made of thin layers of wood glued together.", + "weight": "1500 g", + "to_hit": -5, + "color": "brown", + "material": [ "wood" ], + "volume": "8750 ml", + "price": 1000, + "price_postapoc": 50, + "copy-from": "foldframe" } ] diff --git a/data/json/items/vehicle/plating.json b/data/json/items/vehicle/plating.json index d382bd8bc2f3..602d05d573c1 100644 --- a/data/json/items/vehicle/plating.json +++ b/data/json/items/vehicle/plating.json @@ -12,7 +12,7 @@ "material": [ "steel" ], "volume": "1 L", "bashing": 5, - "category": "spare_parts", + "category": "scrap_metal", "price": "60 USD", "price_postapoc": "1 USD", "qualities": [ [ "COOK", 1 ] ], diff --git a/data/json/items/vehicle/tables.json b/data/json/items/vehicle/tables.json index ff059258d3f2..f9f84128bc00 100644 --- a/data/json/items/vehicle/tables.json +++ b/data/json/items/vehicle/tables.json @@ -34,5 +34,16 @@ "bashing": 8, "price": "400 USD", "copy-from": "v_table" + }, + { + "type": "GENERIC", + "id": "robobench", + "name": { "str": "robobench", "str_pl": "robobenches" }, + "description": "Having upgraded the basic workbench, you've now created a robotic workbench that helps speed up crafting.", + "weight": "43000 g", + "material": [ "steel" ], + "bashing": 9, + "price": "4000 USD", + "copy-from": "v_table" } ] diff --git a/data/json/items/vehicle/wheel.json b/data/json/items/vehicle/wheel.json index 73ed6a0096fe..54ef015e25ef 100644 --- a/data/json/items/vehicle/wheel.json +++ b/data/json/items/vehicle/wheel.json @@ -160,6 +160,39 @@ "diameter": 4, "width": 1 }, + { + "id": "wheel_skateboard", + "category": "veh_parts", + "type": "WHEEL", + "name": { "str": "set of skateboard wheels", "str_pl": "sets of skateboard wheels" }, + "description": "A set of skateboard wheels.", + "weight": "1500 g", + "volume": "1250 ml", + "price": "20 USD", + "price_postapoc": "1 USD", + "bashing": 6, + "to_hit": -1, + "material": [ "steel", "plastic" ], + "symbol": "]", + "color": "dark_gray", + "diameter": 2, + "width": 1 + }, + { + "id": "wheel_mount_skateboard", + "type": "GENERIC", + "category": "veh_parts", + "name": { "str": "pair of skateboard trucks", "str_pl": "pairs of skateboard trucks" }, + "description": "A pair metal skateboard trucks, for attaching wheels to.", + "weight": "600 g", + "volume": "250 ml", + "price": 200, + "price_postapoc": 20, + "to_hit": -2, + "material": [ "steel" ], + "symbol": "]", + "color": "dark_gray" + }, { "id": "wheel_10", "category": "veh_parts", diff --git a/data/json/loot_zones.json b/data/json/loot_zones.json index b2ddaccb9811..9cbc910d1183 100644 --- a/data/json/loot_zones.json +++ b/data/json/loot_zones.json @@ -197,6 +197,120 @@ "name": "Loot: Ignore Favorites", "description": "Favorite items inside of this zone are ignored by \"sort out loot\" zone-action." }, + { + "id": "LOOT_TOOLS", + "type": "LOOT_ZONE", + "name": "Loot: Other Tools", + "description": "Destination for other tools." + }, + { + "id": "LOOT_ENTRY_TOOLS", + "type": "LOOT_ZONE", + "name": "Loot: Entry Tools", + "description": "Destination for entry tools." + }, + { + "id": "LOOT_WORKSHOP_TOOLS", + "type": "LOOT_ZONE", + "name": "Loot: Workshop Tools", + "description": "Destination for workshop tools." + }, + { + "id": "LOOT_COOKING_TOOLS", + "type": "LOOT_ZONE", + "name": "Loot: Cooking Tools", + "description": "Destination for cooking tools." + }, + { + "id": "LOOT_CHEMISTRY_TOOLS", + "type": "LOOT_ZONE", + "name": "Loot: Chemistry Tools", + "description": "Destination for chemistry tools." + }, + { + "id": "LOOT_FARM_TOOLS", + "type": "LOOT_ZONE", + "name": "Loot: Farm Tools", + "description": "Destination for farm tools." + }, + { + "id": "LOOT_DEPLOYABLES", + "type": "LOOT_ZONE", + "name": "Loot: Deployables", + "description": "Destination for deployable objects." + }, + { + "id": "LOOT_ELECTRONICS", + "type": "LOOT_ZONE", + "name": "Loot: Electronics", + "description": "Destination for electronics." + }, + { + "id": "LOOT_COOKING_INGREDIENTS", + "type": "LOOT_ZONE", + "name": "Loot: Cooking Ingredients", + "description": "Destination for cooking ingredients." + }, + { + "id": "LOOT_SCRAP_METAL", + "type": "LOOT_ZONE", + "name": "Loot: Scrap Metal", + "description": "Destination for scrap metal." + }, + { + "id": "LOOT_SCRAP_ELECTRONICS", + "type": "LOOT_ZONE", + "name": "Loot: Scrap Electronics", + "description": "Destination for scrap electronics." + }, + { + "id": "LOOT_SCRAP_FABRIC", + "type": "LOOT_ZONE", + "name": "Loot: Scrap Fabric", + "description": "Destination for scrap fabric." + }, + { + "id": "LOOT_SCRAP_WOOD", + "type": "LOOT_ZONE", + "name": "Loot: Scrap Wood", + "description": "Destination for scrap wood." + }, + { + "id": "LOOT_SCRAP_PLASTIC", + "type": "LOOT_ZONE", + "name": "Loot: Scrap Plastic", + "description": "Destination for scrap plastic." + }, + { + "id": "LOOT_SCRAP_CERAMICS", + "type": "LOOT_ZONE", + "name": "Loot: Scrap Ceramics", + "description": "Destination for scrap ceramics." + }, + { + "id": "LOOT_SCRAP_GLASS", + "type": "LOOT_ZONE", + "name": "Loot: Scrap Glass", + "description": "Destination for scrap glass." + }, + { + "id": "LOOT_VALUABLES", + "type": "LOOT_ZONE", + "name": "Loot: Valuables", + "description": "Destination for valuables." + }, + { + "id": "LOOT_ROCKS", + "type": "LOOT_ZONE", + "name": "Loot: Rocks", + "description": "Destination for rocks and minerals." + }, + { + "id": "LOOT_SOIL", + "type": "LOOT_ZONE", + "name": "Loot: Soil", + "description": "Destination for soil." + }, { "id": "NO_AUTO_PICKUP", "type": "LOOT_ZONE", diff --git a/data/json/mapgen/Glassblower.json b/data/json/mapgen/Glassblower.json index 1b71983be176..0a49ddd1d7d1 100644 --- a/data/json/mapgen/Glassblower.json +++ b/data/json/mapgen/Glassblower.json @@ -161,9 +161,9 @@ " ", " ", " ****%%v%%v%%% ", - " *y_h%ssscY_Fv ", - " *y__+__scY_ev4 ", - " *yh_%______Sv ", + " *y,h%ssscY_Fv ", + " *y,,+__scY_ev4 ", + " *yh,%______Sv ", " ****%_wwwKww% ", " %_+_w__@% ", " %>wTwDt@% ", @@ -181,7 +181,10 @@ "=": "t_flat_roof", "&": "t_flat_roof", "A": "t_flat_roof", - ">": "t_stairs_down" + ">": "t_stairs_down", + ",": "t_floor_noroof", + "h": "t_floor_noroof", + "y": "t_floor_noroof" }, "furniture": { "@": "f_bed", "K": "f_beaded_door", "h": "f_camp_chair", "D": "f_dresser" }, "items": { @@ -217,17 +220,16 @@ " ", " ", " --------- ", - " BBB-.......- ", - " BBB-..:....5 ", - " BBB-.......- ", + " -.......- ", + " -..:....5 ", + " -.......- ", " -....&..- ", " -.......- ", " -.......- ", " --------- ", " " ], - "palettes": [ "roof_palette" ], - "terrain": { "B": "t_open_air_rooved" } + "palettes": [ "roof_palette" ] } } ] diff --git a/data/json/mapgen/Pottery_Sewing_Shops.json b/data/json/mapgen/Pottery_Sewing_Shops.json index 3c4b1f8b2d41..46647705f340 100644 --- a/data/json/mapgen/Pottery_Sewing_Shops.json +++ b/data/json/mapgen/Pottery_Sewing_Shops.json @@ -36,6 +36,8 @@ ".": "t_floor", "s": "t_sidewalk", "u": "t_sidewalk", + "D": "t_sidewalk", + "F": "t_sidewalk", "_": "t_pavement", "'": "t_pavement", "U": "t_pavement", diff --git a/data/json/mapgen/city_blocks/urban_11_house_brick.json b/data/json/mapgen/city_blocks/urban_11_house_brick.json index cec414cad797..fa387ab05722 100644 --- a/data/json/mapgen/city_blocks/urban_11_house_brick.json +++ b/data/json/mapgen/city_blocks/urban_11_house_brick.json @@ -2,265 +2,131 @@ { "type": "mapgen", "method": "json", - "om_terrain": [ "urban_11_1" ], - "weight": 250, + "om_terrain": [ [ "urban_11_1", "urban_11_2" ] ], "object": { "fill_ter": "t_floor", "rows": [ - ",,,,,,,,,,,,,,,,,,,,,,,,", - ",,,,,,,,,,,,,,,,,,,,,,,,", - ",,,,,^,,,,,,,,,,,,,,,,,,", - ",,,,,,,,,,###,,,,,####qq", - ",,,,,,,,,,#Iiiiiiiiwwiii", - ",,,,,,,,,,#ICCoC22H44H22", - ",,,,,,,,,,,wS22222H44H22", - ",,,,,,,,,,,IC22222222222", - ",,,,,,,,,,,If222222222j|", - ",,,,,,,,,,,I---ccc- --|", - ",,,,,,,,,,,w >|", - ",,,,,,,,,,,Ic t @ ", - ",,,^,,,,,,,Ic t @ ", - ",,,,,,,,,,,I @@ ", - ",,,,,,,,,,#Iiiiiwiiiiiii", - ",,,,,,,,,,##,,#,,#,,#,,#", - ",,,,,,,,,,,,,,,,,,,,,,,,", - ",,,,,,,,,,,,,,,,,,,,,,,,", - ",,,,,,,,,,,,,,,,,,,,^,,,", - ",,,,,,,^,,,,,,,,,,,,,,,,", - ",,,,,,,,,,,,,,,,,,,,,,,,", - ",,,,,,,,,,,,,,,,,,,,,,,,", - ",,,,,,,,,,,,,,^,,,,,,,,,", - ",,,,,,,,,,,,,,,,,,,,,,,," + "................................................", + ".............................................[..", + ".....[..................`````.u.................", + "..........%%%.....%%%%..`````...........%%%.....", + "..........%########oo#####*#o#############%.....", + "..........%#12O34,hffh,,Y| WZ|'NN'''''''#%.....", + "...........o5,,,,,hffh,,,+ +'A''''''''o......", + "..........^#7,,,,,,,,,,,,||||||''''''''''#^.....", + "...........#F,,,,,,,,66|,|S8tB|''''Á''''q#......", + "...........#|||JJJ| ||| |,,,B|'''''''''q#......", + "...........o 000 <| |+||||'''''''''q#......", + "...........#x l H |q'+''''''''''#%.....", + "...[.......#x l H ||||''''''''''o%.....", + "...........#yTE HH L + Q|&'''''''''#%.....", + "..........%#####o#######o#*#####========##......", + "..........%%..%..%..%..%.```...&________........", + ".........................```````________.%......", + ".........................```````________........", + "....................[...........________.%...[..", + ".......[........................________........", + "..............................%.________.%......", + "................................________........", + "..............[...............%.________.%......", + "...............................p________........" ], - "palettes": [ "acidia_residential_commercial_palette" ], - "items": { - " ": { "item": "livingroom", "chance": 2 }, - "4": { "item": "dining", "chance": 25 }, - "@": { "item": "magazines", "chance": 10 }, - "C": { "item": "kitchen", "chance": 25 }, - "c": { "item": "livingroom", "chance": 25 }, - "f": { "item": "SUS_fridge", "chance": 70 }, - "j": { "item": "cannedfood", "chance": 50 }, - "o": { "item": "oven", "chance": 30 }, - "q": { "item": "trash", "chance": 50 }, - "t": { "item": "coffee_table", "chance": 25 } - }, - "place_monsters": [ { "monster": "GROUP_ZOMBIE", "x": [ 1, 22 ], "y": [ 1, 22 ], "density": 0.09 } ] - } - }, - { - "type": "mapgen", - "method": "json", - "om_terrain": [ "urban_11_2" ], - "weight": 250, - "object": { - "fill_ter": "t_floor", - "rows": [ - ",,,,,,,,,,,,,,,,,,,,,,,,", - ",,,,,,,,,,,,,,,,,,,,,^,,", - ";;;;;,,,,,,,,,,,,,,,,,,,", - ";;;;;,,,,,,,,,,,###,,,,,", - "ii!iwiiiiiiwiiiiiI#,,,,,", - "j| WD|'rr'''''''I#,,,,,", - "2+ +''''''''''w,,,,,,", - "2|----|''''''''''I,,,,,,", - " |SCTB|'''''''''rI,,,,,,", - " |222B|'''''''''cI,,,,,,", - " |+|--|'''''''''cI,,,,,,", - " |r +''''''''''I#,,,,,", - " |--|''''''''''w#,,,,,", - " + O|/'''''''''I#,,,,,", - "wi!iiiii========iI,,,,,,", - ",;;;,,,,________,,,,,,,,", - ",;;;;;;;________,#,,,,,,", - ",;;;;;;;________,,,,,,,,", - ",,,,,,,,________,#,,,^,,", - ",,,,,,,,________,,,,,,,,", - ",,,,,,#,________,#,,,,,,", - ",,,,,,,,________,,,,,,,,", - ",,,,,,#,________,#,,,,,,", - ",,,,,,,,________,,,,,,,," - ], - "palettes": [ "acidia_residential_commercial_palette" ], - "toilets": { "T": { } }, - "items": { - " ": { "item": "livingroom", "chance": 2 }, - "'": { "item": "mechanics", "chance": 2 }, - "2": { "item": "softdrugs", "chance": 10 }, - "O": { "item": "jackets", "chance": 60 }, - "c": { "item": "home_hw", "chance": 25 }, - "j": { "item": "cannedfood", "chance": 50 }, - "q": { "item": "trash", "chance": 50 }, - "r": { "item": "mechanics", "chance": 60 } - }, - "place_monsters": [ { "monster": "GROUP_ZOMBIE", "x": [ 1, 22 ], "y": [ 1, 22 ], "density": 0.09 } ], - "place_vehicles": [ { "vehicle": "suburban_home", "x": 11, "y": 8, "chance": 100, "rotation": 270 } ] - } - }, - { - "type": "mapgen", - "method": "json", - "om_terrain": [ "urban_11_3" ], - "weight": 250, - "object": { - "fill_ter": "t_floor", - "rows": [ - "........................", - "........................", - "........................", - "........................", - "...........RRRRRRRRRRRRR", - "...........RRRRIwwIRRRRR", - "...........IiiiIccIiiiii", - "...........Iebbe O|r|", - "...........I bb + |", - "...........w |-|", - "...........I |<|", - "...........I eee + ", - "...........IiiiIccIiiiii", - "...........RRRRIwwIRRRRR", - "...........RRRRRRRRRRRRR", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................" + "palettes": [ + "standard_domestic_palette", + "standard_domestic_lino_kitchen", + "standard_domestic_lino_bathroom", + "standard_domestic_landscaping_palette" ], - "palettes": [ "acidia_residential_commercial_palette" ], - "items": { - " ": { "item": "livingroom", "chance": 2 }, - "O": { "item": "homebooks", "chance": 60 }, - "b": { "item": "bed", "chance": 60 }, - "c": { "item": "livingroom", "chance": 25 }, - "e": { "item": "dresser", "chance": 60 }, - "r": { "item": "bedroom", "chance": 60 } + "terrain": { + "=": "t_door_metal_locked", + "&": "t_gates_control_brick", + "'": "t_thconc_floor", + "q": "t_thconc_floor", + "N": "t_thconc_floor", + "A": "t_thconc_floor", + "Á": "t_thconc_floor", + ",": "t_linoleum_gray", + "Y": "t_linoleum_gray", + "h": "t_linoleum_gray", + "f": "t_linoleum_gray", + "Q": "t_floor", + "J": "t_floor" }, - "place_monsters": [ { "monster": "GROUP_ZOMBIE", "x": [ 12, 22 ], "y": [ 7, 11 ], "density": 0.09 } ] + "furniture": { "0": "f_stool" }, + "place_loot": [ { "item": "television", "x": 12, "y": 11, "chance": 100 }, { "item": "stereo", "x": 12, "y": 12, "chance": 65 } ], + "vehicles": { "Á": { "vehicle": "suburban_home", "chance": 100, "rotation": 270 } } } }, { "type": "mapgen", "method": "json", - "om_terrain": [ "urban_11_4" ], - "weight": 250, + "om_terrain": [ [ "urban_11_3", "urban_11_4" ] ], "object": { "fill_ter": "t_floor", "rows": [ - "........................", - "........................", - "........................", - "........................", - "RRRRRRRRRRRRRRRRRR......", - "IwwwIRRRRRIwwIRRRR......", - "IBBBIiiiiiIeeIiiiI......", - "T222222+ eI......", - "22222|-| bbbI......", - "CSCSC| + bbbw......", - "-----| |dh bbbI......", - " |6dd eI......", - "IcccIiiiiiIccIiiiI......", - "IwwwIRRRRRIwwIRRRR......", - "RRRRRRRRRRRRRRRRRR......", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................" + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&~~~~~~", + "~~~~~~~~~~~&&&&#oo#&&&&&#ooo#&&&&&#oo#&&&&~~~~~~", + "~~~~~~~~~~~#####ii#######BBB#######HH#####~~~~~~", + "~~~~~~~~~~~#¤@@¤ R|D|t,,,,,,+ ¤#~~~~~~", + "~~~~~~~~~~^# @@ + |,,,,,|||D @@#^~~~~~", + "~~~~~~~~~~~o |||8S8S8| + @@o~~~~~~", + "~~~~~~~~~~~# |>||||||| |Ih ¤#~~~~~~", + "~~~~~~~~~~~#Dbdd + |III db #~~~~~~", + "~~~~~~~~~~~#####HH#######iii#######ii#####~~~~~~", + "~~~~~~~~~~~&&&&#oo#&&&&&#ooo#&&&&&#oo#&&&&~~~~~~", + "~~~~~~~~~~~&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" ], - "palettes": [ "acidia_residential_commercial_palette" ], - "toilets": { "T": { } }, - "items": { - " ": { "item": "livingroom", "chance": 2 }, - "2": { "item": "softdrugs", "chance": 10 }, - "C": { "item": "cleaning", "chance": 10 }, - "O": { "item": "homebooks", "chance": 60 }, - "b": { "item": "bed", "chance": 60 }, - "c": { "item": "livingroom", "chance": 25 }, - "d": { "item": "office", "chance": 40 }, - "e": { "item": "dresser", "chance": 60 }, - "r": { "item": "bedroom", "chance": 60 } - }, - "place_monsters": [ { "monster": "GROUP_ZOMBIE", "x": [ 1, 15 ], "y": [ 7, 11 ], "density": 0.09 } ] + "palettes": [ "standard_domestic_palette", "standard_domestic_lino_bathroom" ], + "terrain": { ",": "t_linoleum_gray", "~": "t_open_air", "&": "t_shingle_flat_roof" } } }, { "type": "mapgen", "method": "json", - "om_terrain": [ "urban_11_5" ], - "weight": 250, + "om_terrain": [ [ "urban_11_5", "urban_11_6" ] ], "object": { - "fill_ter": "t_floor", - "rows": [ - "........................", - "........................", - "........................", - "........................", - "........................", - "...............1111.....", - "...........41111RR111111", - "...........4RRRRRRRRRRRR", - "...........4RRERRRRRERRR", - "...........4RRRRRRRRRRRR", - "...........4RRRRRRRRRRRR", - "...........4RRRRRRRRRRRR", - "...........43333RR333333", - "...............3333.....", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................" - ], - "palettes": [ "acidia_residential_roof_palette" ] - } - }, - { - "type": "mapgen", - "method": "json", - "om_terrain": [ "urban_11_6" ], - "weight": 250, - "object": { - "fill_ter": "t_floor", + "fill_ter": "t_shingle_flat_roof", "rows": [ - "........................", - "........................", - "........................", - "........................", - "........................", - "11111.....1111..........", - "RRRR1111111RR11112......", - "RRRRRRRRRRRRRRRRR2......", - "RRRRRRRRRRRRRRRRR2......", - "RRRRRRRRRRRR&RRRR2......", - "RRRRRRR^RRRRRRRRR2......", - "RRRRRRRRRRRRRRRRR2......", - "RRRR3333333RR33332......", - "33333.....3333..........", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................", - "........................" + " ", + " ", + " ", + " ", + " ", + " ---- ----- ---- ", + " -----..-------...-------..----- ", + " 5................=............5 ", + " -...N....................&....- ", + " -.............................- ", + " -.............................- ", + " -.............................- ", + " -----..-------...-------..----- ", + " ---- ----- ---- ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " " ], - "palettes": [ "acidia_residential_roof_palette" ] + "palettes": [ "roof_palette" ], + "terrain": { ".": "t_shingle_flat_roof" } } } ] diff --git a/data/json/mapgen/cs_tire_shop.json b/data/json/mapgen/cs_tire_shop.json index dd68efde6ebd..4d8219f9ee35 100644 --- a/data/json/mapgen/cs_tire_shop.json +++ b/data/json/mapgen/cs_tire_shop.json @@ -5,46 +5,45 @@ "method": "json", "weight": 1000, "object": { - "fill_ter": "t_floor", + "fill_ter": "t_thconc_floor", "rows": [ - ",..~~y''''y~~''''''~~.,`", - ".,.~~y''''y~~''''''~~..,", - "..,~~y''''y~~''''''~~,..", - ",..~~y''''y~~''''''~~.,.", - "...~~y''''y~~''''''~~...", - ",..~~y''''y~e''''''~~.,.", - "...~-ggggggg-======-g-.,", - "..,~| rrrrr eM#MM#M |..", - "...~| M#MM#M t|.,", - ".,.~| rrrrr M#MM#M t|..", - "...~| M#MM#M t|,.", - ".,.~| rrrrr M#MM#M t|..", - "...~| M#MM#M t|,.", - "..,~| rrrrr M#MM#M t|.,", - "...~| M#MM#M t|..", - ",..~| rrrrr MMMMMM |.,", - "...~D |,.", - ".,..| cc--l---- -- Sg..", - "...,| ch|L C|Vv c| Sg,.", - ".,..| |L C| c|-D-|..", - "..,.|rrr|L C|hhhh|T S|4,", - "...,-ggg-----gggg-----..", - ".,..,..,.ugreatly increase its overall fire resistance." + }, + { + "id": "blackdragon_coated", + "type": "json_flag", + "context": [ "ARMOR", "TOOL_ARMOR" ], + "info": "This clothing has a coating of black dragon scales applied to it in order to greatly increase its overall acid resistance." } ] diff --git a/data/mods/Magiclysm/furniture.json b/data/mods/Magical_Nights/furniture.json similarity index 86% rename from data/mods/Magiclysm/furniture.json rename to data/mods/Magical_Nights/furniture.json index 5cde990a69d4..a5a7e0647812 100644 --- a/data/mods/Magiclysm/furniture.json +++ b/data/mods/Magical_Nights/furniture.json @@ -48,9 +48,7 @@ { "item": "material_zincite", "count": [ 0, 5 ], "prob": 2 }, { "item": "orichalcum_lump", "count": [ 0, 2 ] }, { "item": "orichalcum_sliver", "count": [ 4, 10 ] } - ], - "//": "Stone obstacles have double the expected reduction but lower destroy_threshold in return", - "ranged": { "reduction": [ 128, 128 ], "destroy_threshold": 128, "block_unaimed_chance": "50%" } + ] } }, { @@ -89,8 +87,7 @@ { "item": "pipe", "count": 1 }, { "item": "cable", "charges": [ 1, 3 ] }, { "item": "cu_pipe", "count": 1 } - ], - "ranged": { "reduction": [ 35, 35 ], "destroy_threshold": 80, "block_unaimed_chance": "50%" } + ] }, "examine_action": "workbench", "workbench": { "multiplier": 1.15, "mass": "300 kg", "volume": "100L" } @@ -122,9 +119,7 @@ "str_max": 10, "sound": "glass breaking!", "sound_fail": "clang!", - "items": [ { "item": "scrap_copper", "count": [ 10, 20 ] }, { "item": "glass_shard", "count": [ 2, 4 ] } ], - "//": "Variable reduction, destroy_threshold matches str_min since fragile", - "ranged": { "reduction": [ 2, 4 ], "destroy_threshold": 4, "block_unaimed_chance": "25%" } + "items": [ { "item": "scrap_copper", "count": [ 10, 20 ] }, { "item": "glass_shard", "count": [ 2, 4 ] } ] } }, { @@ -158,8 +153,7 @@ { "item": "scrap", "count": [ 10, 100 ] }, { "item": "pipe", "count": [ 1, 5 ] }, { "item": "wire", "count": [ 3, 10 ] } - ], - "ranged": { "reduction": [ 20, 20 ], "destroy_threshold": 60, "block_unaimed_chance": "25%" } + ] } }, { @@ -178,16 +172,14 @@ "light_emitted": 12, "bash": { "str_min": 25, - "str_max": 75, + "str_max": 35, "sound": "glass shattering!", "sound_fail": "mana crackling!", "items": [ { "item": "crystallized_mana", "charges": [ 0, 100 ] }, { "item": "small_mana_crystal", "count": [ 0, 3 ] }, { "item": "glass_shard", "count": [ 1, 3 ] } - ], - "//": "Stone obstacles have double the expected reduction but lower destroy_threshold in return", - "ranged": { "reduction": [ 50, 50 ], "destroy_threshold": 75, "block_unaimed_chance": "75%" } + ] } }, { @@ -206,9 +198,7 @@ "str_max": 160, "sound": "smash!", "sound_fail": "thump.", - "items": [ { "item": "rock", "count": [ 5, 15 ] }, { "item": "sharp_rock", "count": [ 3, 5 ] } ], - "//": "Stone obstacles have double the expected reduction but lower destroy_threshold in return", - "ranged": { "reduction": [ 60, 60 ], "destroy_threshold": 60 } + "items": [ { "item": "rock", "count": [ 5, 15 ] }, { "item": "sharp_rock", "count": [ 3, 5 ] } ] } }, { @@ -230,8 +220,7 @@ "str_max": 50, "sound": "crash!", "sound_fail": "whump.", - "items": [ { "item": "demon_chitin_piece", "count": [ 20, 30 ] } ], - "ranged": { "reduction": [ 20, 20 ], "destroy_threshold": 50 } + "items": [ { "item": "demon_chitin_piece", "count": [ 20, 30 ] } ] } } ] diff --git a/data/mods/Magiclysm/harvest.json b/data/mods/Magical_Nights/harvest.json similarity index 95% rename from data/mods/Magiclysm/harvest.json rename to data/mods/Magical_Nights/harvest.json index 65b78a792660..b4e13c46680a 100644 --- a/data/mods/Magiclysm/harvest.json +++ b/data/mods/Magical_Nights/harvest.json @@ -14,7 +14,7 @@ { "drop": "kidney", "type": "offal", "mass_ratio": 0.002 }, { "drop": "stomach_large", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, { "drop": "owlbear_stone", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, - { "drop": "bone_heavy", "type": "bone", "mass_ratio": 0.15 }, + { "drop": "bone", "type": "bone", "mass_ratio": 0.15 }, { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, { "drop": "raw_owlbear_fur", "type": "skin", "mass_ratio": 0.015 }, { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.07 }, @@ -37,7 +37,7 @@ { "drop": "kidney", "type": "offal", "mass_ratio": 0.002 }, { "drop": "stomach", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, { "drop": "owlbear_stone", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, - { "drop": "bone_heavy", "type": "bone", "mass_ratio": 0.15 }, + { "drop": "bone", "type": "bone", "mass_ratio": 0.15 }, { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, { "drop": "raw_owlbear_fur", "type": "skin", "mass_ratio": 0.015 }, { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.07 }, @@ -49,7 +49,7 @@ "//": "drops large stomach", "type": "harvest", "entries": [ - { "drop": "animal_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, { "drop": "meat", "type": "flesh", "mass_ratio": 0.32 }, { "drop": "meat_scrap", "type": "flesh", "mass_ratio": 0.01 }, { "drop": "lung", "type": "flesh", "mass_ratio": 0.0035 }, @@ -60,9 +60,9 @@ { "drop": "stomach_large", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, { "drop": "bulette_plate", "scale_num": [ 2, 5 ], "max": 1, "type": "skin" }, { "drop": "bulette_pearl", "scale_num": [ 1, 4 ], "max": 1, "type": "offal" }, - { "drop": "bone_heavy", "type": "bone", "mass_ratio": 0.15 }, + { "drop": "bone", "type": "bone", "mass_ratio": 0.15 }, { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, - { "drop": "scute_piece", "type": "skin", "mass_ratio": 0.02 }, + { "drop": "raw_leather", "type": "skin", "mass_ratio": 0.02 }, { "drop": "fat", "type": "flesh", "mass_ratio": 0.07 }, { "drop": "adrenal_gland_large", "type": "bionic", "max": 2 } ] @@ -144,7 +144,7 @@ "//": "drops large stomach", "type": "harvest", "entries": [ - { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "animal_blood", "type": "blood", "mass_ratio": 0.1 }, { "drop": "mutant_meat", "type": "flesh", "mass_ratio": 0.32 }, { "drop": "mutant_meat_scrap", "type": "flesh", "mass_ratio": 0.01 }, { "drop": "lung", "type": "flesh", "mass_ratio": 0.0035 }, @@ -153,9 +153,9 @@ { "drop": "sweetbread", "type": "flesh", "mass_ratio": 0.002 }, { "drop": "kidney", "type": "offal", "mass_ratio": 0.002 }, { "drop": "stomach_large", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, - { "drop": "sinew", "type": "bone", "mass_ratio": 0.001 }, { "drop": "bone_heavy", "type": "bone", "mass_ratio": 0.15 }, - { "drop": "raw_leather", "type": "skin", "mass_ratio": 0.04 }, + { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, + { "drop": "raw_leather", "type": "skin", "mass_ratio": 0.02 }, { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.07 }, { "drop": "adrenal_gland_large", "type": "bionic", "max": 2 } ] @@ -188,7 +188,7 @@ { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, { "drop": "mutant_human_flesh", "type": "flesh", "mass_ratio": 0.34 }, { "drop": "hstomach_large", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, - { "drop": "bone_heavy", "type": "bone", "mass_ratio": 0.15 }, + { "drop": "bone", "type": "bone", "mass_ratio": 0.15 }, { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, { "drop": "raw_leather", "type": "skin", "mass_ratio": 0.02 }, { "drop": "mutant_human_fat", "type": "flesh", "mass_ratio": 0.07 }, @@ -220,7 +220,7 @@ "//": "for those vertebrates that don't have something you can skin off of them", "type": "harvest", "entries": [ - { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "animal_blood", "type": "blood", "mass_ratio": 0.1 }, { "drop": "mutant_meat", "type": "flesh", "mass_ratio": 0.32 }, { "drop": "mutant_meat_scrap", "type": "flesh", "mass_ratio": 0.01 }, { "drop": "lung", "type": "flesh", "mass_ratio": 0.0035 }, @@ -229,8 +229,8 @@ { "drop": "sweetbread", "type": "flesh", "mass_ratio": 0.002 }, { "drop": "kidney", "type": "offal", "mass_ratio": 0.002 }, { "drop": "stomach_large", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, - { "drop": "sinew", "type": "bone", "mass_ratio": 0.001 }, { "drop": "bone_heavy", "type": "bone", "mass_ratio": 0.15 }, + { "drop": "sinew", "type": "bone", "mass_ratio": 0.001 }, { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.07 }, { "drop": "adrenal_gland_large", "type": "bionic", "max": 2 } ] @@ -275,7 +275,7 @@ "//": "nothing much aside from big pile of meat and maybe demon blood in future. But for now, tainted will do.", "type": "harvest", "entries": [ - { "drop": "tainted_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "blood_tainted", "type": "blood", "mass_ratio": 0.1 }, { "drop": "meat_tainted", "type": "flesh", "mass_ratio": 0.4 } ] }, @@ -289,7 +289,7 @@ { "drop": "liver", "type": "offal", "mass_ratio": 0.01 }, { "drop": "brain", "type": "flesh", "mass_ratio": 0.005 }, { "drop": "kidney", "type": "offal", "mass_ratio": 0.002 }, - { "drop": "scute_piece", "type": "skin", "mass_ratio": 0.02 }, + { "drop": "raw_leather", "type": "skin", "mass_ratio": 0.02 }, { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, { "drop": "bone", "type": "bone", "mass_ratio": 0.1 } ] diff --git a/data/mods/Magiclysm/itemgroups/itemgroups.json b/data/mods/Magical_Nights/itemgroups/itemgroups.json old mode 100644 new mode 100755 similarity index 94% rename from data/mods/Magiclysm/itemgroups/itemgroups.json rename to data/mods/Magical_Nights/itemgroups/itemgroups.json index 90bda24f9814..3a0ab60172a7 --- a/data/mods/Magiclysm/itemgroups/itemgroups.json +++ b/data/mods/Magical_Nights/itemgroups/itemgroups.json @@ -7,39 +7,14 @@ }, { "type": "item_group", - "id": "religious_books", + "id": "magic_religious_books", + "//": "Magic-related religious books, split from normal itemgroup because otherwise they show up in places I do not want them.", "items": [ [ "priest_beginner", 1 ], [ "priest_advanced", 1 ], [ "druid_spellbook", 1 ], [ "summon_undead_spellbook", 1 ] ] }, - { - "type": "item_group", - "id": "novels", - "items": [ [ "wizard_beginner", 3 ], [ "wizard_advanced", 1 ] ] - }, - { - "type": "item_group", - "id": "homebooks", - "items": [ { "group": "spellbook_loot_0", "prob": 4 } ] - }, - { - "type": "item_group", - "id": "manuals", - "items": [ { "group": "spellbook_loot_0", "prob": 3 }, { "group": "dragon_books", "prob": 4 } ] - }, - { - "type": "item_group", - "id": "lab_bookshelves", - "items": [ - { "group": "spellbook_loot_1", "prob": 3 }, - { "group": "magic_recipe_basic", "prob": 3 }, - { "group": "magic_recipe_advanced", "prob": 1 }, - { "group": "dragon_books", "prob": 3 } - ] - }, { "type": "item_group", "id": "mansion_books", "items": [ - { "group": "spellbook_loot_0", "prob": 6 }, { "group": "magic_recipe_basic", "prob": 6 }, { "group": "magic_recipe_advanced", "prob": 2 }, { "group": "dragon_books", "prob": 5 } @@ -48,62 +23,17 @@ { "type": "item_group", "id": "exotic_books", - "items": [ { "group": "spellbook_loot_1", "prob": 3 }, { "group": "dragon_books", "prob": 2 } ] + "items": [ { "group": "magic_recipe_basic", "prob": 3 }, { "group": "dragon_books", "prob": 2 } ] }, { "type": "item_group", "id": "guns_pistol_rare", - "items": [ - { "item": "wand_magic_missile_minor", "prob": 35, "charges-min": 12, "charges-max": 34 }, - { "item": "wand_fireball_minor", "prob": 25, "charges-min": 3, "charges-max": 24 }, - { "item": "m47a1", "prob": 25, "charges-min": 0, "charges-max": 6 } - ] + "items": [ { "item": "m47a1", "prob": 25, "charges-min": 0, "charges-max": 6 } ] }, { "type": "item_group", "id": "displays", - "items": [ - [ "mana_potion_lesser", 50 ], - [ "magi_staff_minor", 5 ], - [ "wizard_hat", 5 ], - [ "cauldron_demon_chitin", 3 ], - [ "manatouched_serum", 3 ] - ] - }, - { - "id": "coffee_display_2", - "type": "item_group", - "items": [ [ "mana_potion_lesser", 10 ] ] - }, - { - "type": "item_group", - "id": "bar_alcohol", - "items": [ [ "mana_potion_lesser", 20 ], [ "manatouched_serum", 1 ] ] - }, - { - "type": "item_group", - "id": "bar_fridge", - "items": [ [ "mana_potion_lesser", 5 ] ] - }, - { - "type": "item_group", - "id": "pizza_beer", - "items": [ [ "mana_potion_lesser", 5 ] ] - }, - { - "type": "item_group", - "id": "pizza_soda", - "items": [ [ "mana_potion_lesser", 3 ] ] - }, - { - "id": "groce_softdrink", - "type": "item_group", - "items": [ [ "mana_potion_lesser", 15 ] ] - }, - { - "id": "trash", - "type": "item_group", - "items": [ [ "summon_scroll_smudged", 5 ] ] + "items": [ [ "wizard_hat", 5 ] ] }, { "type": "item_group", @@ -114,7 +44,7 @@ { "group": "spell_scroll_tier_1", "prob": 60 }, { "group": "spell_scroll_tier_2", "prob": 30 }, { "group": "magic_recipe_basic", "prob": 50 }, - { "group": "magic_recipe_advanced", "prob": 16 } + { "group": "magic_recipe_advanced", "prob": 15 } ] }, { @@ -229,7 +159,7 @@ { "type": "item_group", "id": "magic_CBM", - "items": [ [ "bio_fuel_cell_blood", 10 ] ] + "items": [ [ "bio_sneeze_beam", 10 ] ] }, { "type": "item_group", @@ -467,6 +397,8 @@ "subtype": "collection", "items": [ { "item": "magi_staff_minor", "prob": 10 }, + { "item": "magi_staff_lesser", "prob": 5 }, + { "item": "magi_staff_greater", "prob": 1 }, { "item": "wizard_hat", "prob": 20 }, { "item": "mbelt_haste", "prob": 5 }, { "item": "mbelt_thor", "prob": 1 }, diff --git a/data/mods/Magiclysm/itemgroups/recipe_books.json b/data/mods/Magical_Nights/itemgroups/recipe_books.json similarity index 100% rename from data/mods/Magiclysm/itemgroups/recipe_books.json rename to data/mods/Magical_Nights/itemgroups/recipe_books.json diff --git a/data/mods/Magiclysm/itemgroups/spellbooks.json b/data/mods/Magical_Nights/itemgroups/spellbooks.json similarity index 88% rename from data/mods/Magiclysm/itemgroups/spellbooks.json rename to data/mods/Magical_Nights/itemgroups/spellbooks.json index c57a414db77d..c6f24873ccfc 100644 --- a/data/mods/Magiclysm/itemgroups/spellbooks.json +++ b/data/mods/Magical_Nights/itemgroups/spellbooks.json @@ -4,6 +4,7 @@ "type": "item_group", "items": [ [ "summon_scroll_smudged", 10 ], + [ "spell_scroll_summon_lemon", 20 ], [ "spell_scroll_smite", 40 ], [ "spell_scroll_summon_zombie", 25 ], [ "spell_scroll_light_healing", 50 ], @@ -66,7 +67,9 @@ [ "spell_scroll_crystallize_mana", 50 ], [ "spell_scroll_earthshaper_stoneskin", 30 ], [ "spell_scroll_earthshaper_pillar", 35 ], - [ "spell_scroll_biomancer_coagulant_weave", 30 ] + [ "spell_scroll_biomancer_coagulant_weave", 30 ], + [ "spell_scroll_condense_water", 45 ], + [ "spell_scroll_acid_bolt", 35 ] ] }, { @@ -102,7 +105,11 @@ [ "spell_scroll_holographic_transposition", 15 ], [ "spell_scroll_dark_sight", 30 ], [ "spell_scroll_druidic_regrowth", 20 ], - [ "spell_scroll_stormshaper_ionization", 40 ] + [ "spell_scroll_stormshaper_ionization", 40 ], + [ "spell_scroll_create_acid", 35 ], + [ "spell_scroll_condense_clean_water", 35 ], + [ "spell_scroll_rock_tomb", 50 ], + [ "spell_scroll_acid_bomb", 25 ] ] }, { @@ -115,14 +122,26 @@ [ "spell_scroll_obfuscated_body", 10 ], [ "spell_scroll_lava_bomb", 5 ], [ "spell_scroll_druidic_healing", 20 ], - [ "bio_sneeze_beam", 50 ] + [ "bio_sneeze_beam", 50 ], + [ "spell_scroll_fire_storm", 50 ], + [ "spell_scroll_ice_storm", 50 ], + [ "spell_scroll_meteor", 10 ], + [ "spell_scroll_acid_storm", 20 ] ] }, { "id": "spellbook_tier_0", "type": "item_group", "//": "These are spellbooks that a beginner would have, or scrolls that would have this tier or one tier higher of spells.", - "items": [ [ "wizard_beginner", 30 ], [ "priest_beginner", 30 ], [ "techno_idiots", 30 ] ] + "items": [ + [ "wizard_beginner", 30 ], + [ "priest_beginner", 30 ], + [ "techno_idiots", 30 ], + [ "novice_techno_spellbook", 30 ], + [ "novice_storm_spellbook", 30 ], + [ "novice_earth_spellbook", 30 ], + [ "novice_kelvin_spellbook", 30 ] + ] }, { "id": "spellbook_tier_1", diff --git a/data/mods/Magiclysm/items/alchemy_items.json b/data/mods/Magical_Nights/items/alchemy_items.json similarity index 52% rename from data/mods/Magiclysm/items/alchemy_items.json rename to data/mods/Magical_Nights/items/alchemy_items.json index eec8876b01be..a3fda74bb1ae 100644 --- a/data/mods/Magiclysm/items/alchemy_items.json +++ b/data/mods/Magical_Nights/items/alchemy_items.json @@ -6,7 +6,7 @@ "description": "This strangely shaped rock was once a part of an owlbear's complex digestive system, creating a link between owl throat and bear stomach. It is possible that it could serve a similar purpose in alchemy, helping to bind together two disparate halves.", "weight": "2 kg", "volume": "750 ml", - "price": "0 cent", + "price": 0, "bashing": 9, "to_hit": -1, "material": "stone", @@ -32,61 +32,6 @@ "qualities": [ [ "BUTCHER", -50 ] ], "//": "Potion recipes that require a full owlbear egg could also instead require larger amounts of stone shell. Since 1 egg gives 3 shells, you could perhaps have 1 egg be equivalent to 5 or more shells when making potions." }, - { - "id": "copper_infuser", - "copy-from": "copper_bracelet", - "type": "ARMOR", - "qualities": [ [ "MANA_INFUSE", 1 ] ], - "name": { "str": "copper infusion bracelet" }, - "description": "This bracelet has runes engraved on it. You sense a faint air of mysticism when you look at it. It would be useful for imbuing mana into material." - }, - { - "id": "silver_infuser", - "copy-from": "silver_bracelet", - "type": "ARMOR", - "qualities": [ [ "MANA_INFUSE", 2 ] ], - "name": { "str": "silver infusion bracelet" }, - "description": "This bracelet has runes engraved on it. You sense a faint air of mysticism when you look at it. It would be useful for imbuing mana into material." - }, - { - "id": "copper_circlet", - "type": "ARMOR", - "category": "armor", - "name": { "str": "copper circlet" }, - "description": "A wooden band with copper trimmings to be worn on the head. Touching your temples with it on makes you feel very calm.", - "weight": "700 g", - "volume": "600ml", - "price": "15 USD", - "price_postapoc": "1 USD", - "material": [ "copper", "wood" ], - "symbol": "[", - "color": "brown", - "covers": [ "head" ], - "coverage": 5, - "encumbrance": 1, - "warmth": 0, - "material_thickness": 1, - "flags": [ "BELTED" ], - "qualities": [ [ "MANA_FOCUS", 1 ] ] - }, - { - "id": "stone_chisel", - "type": "TOOL", - "name": { "str": "stone chisel" }, - "looks_like": "chisel", - "description": "This is a short stone chisel. It can be used to engrave on stone, wood, or soft metals.", - "weight": "660 g", - "volume": "250 ml", - "price": "16 USD", - "to_hit": 2, - "bashing": 2, - "cutting": 1, - "material": "stone", - "symbol": ";", - "color": "light_gray", - "qualities": [ [ "CHISEL", 1 ] ], - "flags": [ "BELT_CLIP" ] - }, { "id": "potion_starter", "copy-from": "mixed_alcohol_strong", @@ -121,52 +66,6 @@ "weight": "5 g", "volume": "250 ml" }, - { - "id": "glow_light", - "type": "GENERIC", - "category": "tools", - "name": "magical reading light", - "description": "Powered by the magic of glow powder and lesser mana potions, this extremely expensive little light will provide just enough light to read by for at least a decade. Use it to close the cover and hide the light.", - "weight": "270 g", - "volume": "250 ml", - "price": "1250 USD", - "material": "glass", - "symbol": ",", - "color": "light_blue", - "use_action": { - "target": "glow_light_off", - "msg": "You close the nightlight's cover.", - "menu_text": "Close cover", - "type": "transform" - }, - "flags": [ "LIGHT_5", "ALLOWS_REMOTE_USE" ] - }, - { - "id": "glow_light_off", - "type": "GENERIC", - "category": "tools", - "name": { "str": "magical reading light (covered)", "str_pl": "magical reading lights (covered)" }, - "description": "Powered by the magic of glow powder and lesser mana potions, this extremely expensive little light will provide just enough light to read by for at least a decade. The cover is closed. Use it to open the cover and show the light.", - "weight": "270 g", - "volume": "250 ml", - "price": "1250 USD", - "material": "glass", - "symbol": ",", - "color": "light_blue", - "use_action": { "target": "glow_light", "msg": "You open the nightlight's cover.", "menu_text": "Open cover", "type": "transform" }, - "flags": [ "ALLOWS_REMOTE_USE" ] - }, - { - "id": "bulette_plate", - "type": "GENERIC", - "symbol": ")", - "color": "light_gray", - "name": "bulette plate", - "description": "The great plates from behind a bulette's head have always been prized for use in shield and armor making.", - "material": "arcane_skin", - "weight": "30 kg", - "volume": "3 L" - }, { "id": "bulette_pearl", "type": "GENERIC", @@ -207,37 +106,6 @@ "cutting": 7, "flags": [ "STAB", "SHEATH_KNIFE" ] }, - { - "type": "GENERIC", - "id": "demon_chitin_piece", - "category": "spare_parts", - "symbol": ",", - "color": "red", - "name": { "str": "chunk of demon chitin", "str_pl": "chunks of demon chitin" }, - "description": "A piece of demon spider exoskeleton. It is light and very durable, and probably has some magical properties.", - "price": "0 cent", - "material": "demon_chitin", - "weight": "89 g", - "volume": "250 ml", - "bashing": 1, - "flags": [ "TRADER_AVOID" ], - "to_hit": -2 - }, - { - "type": "GENERIC", - "id": "demon_chitin_plate", - "category": "spare_parts", - "symbol": "/", - "color": "red", - "name": "demon chitin plate", - "price": "15225 cent", - "material": "demon_chitin", - "weight": "10 kg", - "volume": "4 L", - "bashing": 12, - "to_hit": -4, - "description": "A large piece of demon spider exoskeleton, painstakingly cut from the corpse of an adult demon spider. A plate of this size can be used to create armor plating." - }, { "type": "GENERIC", "id": "demon_spider_fang", @@ -261,7 +129,7 @@ "name": { "str_sp": "alumentum" }, "symbol": "=", "color": "light_blue", - "description": "Alumentum is magically processed coal or charcoal. It burns as hot as magnesium, and for a significantly longer period of time. One of the very few magical materials that is still produced in any quantity today due to its usefulness.", + "description": "Alumentum is magically processed coal or charcoal. It burns as hot as magnesium, and for a significantly longer period of time. This makes it quite a useful material to produce for many mages.", "phase": "solid", "volume": "250 ml", "weight": "11 g", diff --git a/data/mods/Magiclysm/items/ammo_types.json b/data/mods/Magical_Nights/items/ammo_types.json similarity index 96% rename from data/mods/Magiclysm/items/ammo_types.json rename to data/mods/Magical_Nights/items/ammo_types.json index db7495ca9000..904a98d47c0f 100644 --- a/data/mods/Magiclysm/items/ammo_types.json +++ b/data/mods/Magical_Nights/items/ammo_types.json @@ -9,7 +9,7 @@ "type": "ammunition_type", "id": "tainted_blood", "name": "tainted blood", - "default": "tainted_blood" + "default": "blood_tainted" }, { "type": "ammunition_type", diff --git a/data/mods/Magiclysm/items/archery.json b/data/mods/Magical_Nights/items/archery.json similarity index 97% rename from data/mods/Magiclysm/items/archery.json rename to data/mods/Magical_Nights/items/archery.json index aa29bc3bfbff..60e920ee531a 100644 --- a/data/mods/Magiclysm/items/archery.json +++ b/data/mods/Magical_Nights/items/archery.json @@ -3,7 +3,6 @@ "id": "ichaival", "type": "GUN", "looks_like": "compositebow", - "weapon_category": [ "BOWS", "ELASTIC" ], "symbol": "(", "color": "white", "name": { "str": "Ichaival" }, diff --git a/data/mods/Magiclysm/items/armor.json b/data/mods/Magical_Nights/items/armor.json similarity index 100% rename from data/mods/Magiclysm/items/armor.json rename to data/mods/Magical_Nights/items/armor.json diff --git a/data/mods/Magical_Nights/items/bionics.json b/data/mods/Magical_Nights/items/bionics.json new file mode 100644 index 000000000000..a24a613afca0 --- /dev/null +++ b/data/mods/Magical_Nights/items/bionics.json @@ -0,0 +1,18 @@ +[ + { + "type": "enchantment", + "id": "ench_bio_sneeze_beam", + "values": [ { "value": "MANA_CAP", "add": 500 } ] + }, + { + "id": "bio_sneeze_beam", + "copy-from": "bionic_general", + "type": "BIONIC_ITEM", + "name": { "str": "Crystallized Mana Nose Replacement" }, + "description": "A large gem made with crystallized mana and some other stabilizing metals. Comes with a specially designed power pack (installed into the skull) that does not interfere with your normal facial functions. WARNING: for Technophile use only. By using this spell you are waiving all liability of Frikken Laser Beams Inc. and its subsidiaries.", + "price": "4500 USD", + "weight": "750 g", + "volume": "177 ml", + "difficulty": 8 + } +] diff --git a/data/mods/Magiclysm/items/black_dragon_items.json b/data/mods/Magical_Nights/items/black_dragon_items.json similarity index 99% rename from data/mods/Magiclysm/items/black_dragon_items.json rename to data/mods/Magical_Nights/items/black_dragon_items.json index b80a88d6db0f..d3222e504560 100644 --- a/data/mods/Magiclysm/items/black_dragon_items.json +++ b/data/mods/Magical_Nights/items/black_dragon_items.json @@ -28,7 +28,7 @@ "price": "500 USD", "material": [ "black_dragon_hide", "flesh" ], "flags": [ "NO_SALVAGE", "TRADER_AVOID" ], - "vitamins": [ [ "meat_allergen", 1 ] ], + "vitamins": [ ], "volume": "4 L", "stack_size": 1 }, @@ -285,7 +285,7 @@ "type": "ARMOR", "name": { "str": "pair of XL black dragonhide gloves", "str_pl": "pairs of XL black dragonhide gloves" }, "description": "A pair of customized, Kevlar armored leather gloves, modified to be easy to wear while providing maximum protection under extreme conditions. Sized to fit even the strangest of anatomy.", - "weight": "400 g", + "weight": "430 g", "volume": "1500 ml", "encumbrance": 18, "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "STURDY" ] diff --git a/data/mods/Magiclysm/items/books_lore.json b/data/mods/Magical_Nights/items/books_lore.json similarity index 100% rename from data/mods/Magiclysm/items/books_lore.json rename to data/mods/Magical_Nights/items/books_lore.json diff --git a/data/mods/Magical_Nights/items/class_items.json b/data/mods/Magical_Nights/items/class_items.json new file mode 100644 index 000000000000..c5140d9c9709 --- /dev/null +++ b/data/mods/Magical_Nights/items/class_items.json @@ -0,0 +1,302 @@ +[ + { + "id": "rune_biomancer", + "type": "TOOL", + "symbol": "=", + "color": "pink", + "name": { "str": "Biomancer rune" }, + "description": "This magical pebble has an insignia of rended flesh and bones on it. It is necessary for Biomancers to channel magic into their crafts.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_technomancer", + "type": "TOOL", + "symbol": "=", + "color": "blue", + "name": { "str": "Technomancer rune" }, + "description": "This magical pebble has an insignia of clockwork and gears on it. It is necessary for Technomancers to channel magic into their crafts.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_magus", + "type": "TOOL", + "symbol": "=", + "color": "magenta", + "name": { "str": "Magus rune", "str_pl": "Magi runes" }, + "description": "This magical pebble has an insignia of crystal and mana orbs on it. It is necessary for Magi to channel magic into their crafts.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_earthshaper", + "type": "TOOL", + "symbol": "=", + "color": "green", + "name": { "str": "Earthshaper rune" }, + "description": "This magical pebble has an insignia of steel and rocks on it. It is necessary for Earthshapers to channel magic into their crafts.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_kelvinist", + "type": "TOOL", + "symbol": "=", + "color": "red", + "name": { "str": "Kelvinist rune" }, + "description": "This magical pebble has an insignia of ice and flames on it. It is necessary for Kelvinists to channel magic into their crafts.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_stormshaper", + "type": "TOOL", + "symbol": "=", + "color": "yellow", + "name": { "str": "Stormshaper rune" }, + "description": "This magical pebble has an insignia of lightning and storm clouds on it. It is necessary for Stormshapers to channel magic into their crafts.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_druid", + "type": "TOOL", + "symbol": "=", + "color": "brown", + "name": { "str": "Druid rune" }, + "description": "This magical pebble has an insignia of nature and trees on it. It is necessary for Druids to channel magic into their crafts.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_animist", + "type": "TOOL", + "symbol": "=", + "color": "light_red", + "name": { "str": "Animist rune" }, + "description": "This magical pebble has an insignia of summoners on it. It is necessary for Animists to channel magic into their crafts.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_alchemist", + "type": "TOOL", + "symbol": "=", + "color": "black", + "name": { "str": "alchemist rune" }, + "description": "This magical pebble has an insignia of alchemy and potions on it. While versatile in use, the lack of attunement to any school prevents creation of more advanced recipes.", + "volume": "5ml", + "weight": "1 g", + "material": "stone", + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "rune_biomancer_weapon", + "type": "GENERIC", + "weapon_category": [ "SPEARS" ], + "name": { "str": "Biomancer spear" }, + "//": "Effectively a durable stone spear +1 with IMPALE tech. based off Wicked Bonespear. Lorewise, it would make sense for novice Biomancers to be developing their skills in spears so they can adequately use the Bonespear(No whips/REACH3 for you!) once they're proficient enough to summon one. Should be weaker than other school weapons DPSwise due to reach.", + "description": "A grotesque bone spearhead on a stout wooden pole. There is a Biomancer rune embedded at the base of the head.", + "weight": "988 g", + "volume": "1250 ml", + "price": "39 USD", + "to_hit": 2, + "bashing": 6, + "cutting": 15, + "material": [ "wood", "bone" ], + "symbol": "/", + "color": "light_gray", + "techniques": [ "WBLOCK_1", "IMPALE" ], + "qualities": [ [ "COOK", 1 ] ], + "flags": [ "SPEAR", "STAB", "REACH_ATTACK", "DURABLE_MELEE", "SHEATH_SPEAR", "TRADER_AVOID", "MAGIC_FOCUS" ] + }, + { + "id": "rune_technomancer_weapon", + "type": "GENERIC", + "weapon_category": [ "BATONS" ], + "name": { "str": "Technomancer toolbar" }, + "//": "Combat stats based off crowbar +1, techniques off Halligan bar(closest non-magical substitute), weight based on 75% of hammer & wrench(since their handles aren't included) + 100% crowbar with benefit from +1 enchantment", + "description": "This staff incorporates a sturdy cresent wrench on top of a prybar and a hammer on the other in a convienent package. There is a Technomancer rune embedded in the hammerhead.", + "weight": "1536 g", + "volume": "1750 ml", + "price": "39 USD", + "to_hit": 1, + "bashing": 15, + "cutting": 1, + "material": [ "steel" ], + "symbol": "/", + "color": "light_gray", + "techniques": [ "WBLOCK_1", "BRUTAL", "SWEEP" ], + "qualities": [ [ "PRY", 3 ], [ "HAMMER", 3 ], [ "HAMMER_FINE", 1 ], [ "WRENCH", 2 ], [ "WRENCH_FINE", 2 ] ], + "flags": [ "DURABLE_MELEE", "BELT_CLIP", "TRADER_AVOID", "MAGIC_FOCUS" ] + }, + { + "id": "rune_magus_weapon", + "type": "GENERIC", + "weapon_category": [ "QUARTERSTAVES" ], + "name": { "str": "Magus staff", "str_pl": "Magus staves" }, + "//": "The classical vision of the wizard gets a classic weapon. DPS Stats are between the regular and ironshod versions. Stats are slightly worse than the QS+1 due to the glass weight slowing attack speed.", + "description": "A quarterstaff with runes carved into it and two glass jars, heat-tempered and infused with mana for durability, to act as mana receptacles. There are two Magi runes embedded at the tips.", + "weight": "1530 g", + "volume": "1500 ml", + "price": "39 USD", + "to_hit": 2, + "bashing": 20, + "material": [ "wood", "diamond" ], + "symbol": "/", + "color": "brown", + "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], + "flags": [ "DURABLE_MELEE", "SHEATH_SPEAR", "TRADER_AVOID", "MAGIC_FOCUS" ] + }, + { + "id": "rune_kelvinist_weapon", + "type": "GENERIC", + "name": { "str": "Kelvinist flamberge" }, + "weapon_category": [ "1H_SWORDS" ], + "//": "Flame-bladed sword covers half of Kelvinist's heat-cold theme. Combat stats equivalent to cutlass +1 with BRUTAL technique.", + "description": "A sword with an undulating blade, reminiscent of a flame. There is a Kelvinist rune embedded in the pommel.", + "weight": "1530 g", + "volume": "1250 ml", + "price": 3900, + "to_hit": 3, + "bashing": 7, + "cutting": 29, + "material": [ "wood", "steel" ], + "symbol": "/", + "color": "light_gray", + "techniques": [ "WBLOCK_2", "BRUTAL" ], + "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 9 ] ], + "use_action": "WEATHER_TOOL", + "flags": [ "DURABLE_MELEE", "SHEATH_SWORD", "TRADER_AVOID", "MAGIC_FOCUS", "THERMOMETER" ] + }, + { + "id": "rune_stormshaper_weapon", + "type": "GENERIC", + "name": { "str": "Stormshaper axe" }, + "weapon_category": [ "1H_AXES" ], + "//": "Equivalent to copper ax +1, with volume reduction so it can be sheathed like the other school weapons. Metals chosen for being two most conductive metals + balancing reasons", + "description": "A forged copper axe with silver trimmings and a wooden handle. There is a Stormshaper rune embedded in the eye.", + "weight": "3330 g", + "volume": "2 L", + "price": 3900, + "to_hit": 3, + "bashing": 19, + "cutting": 13, + "material": [ "wood", "copper", "silver" ], + "symbol": "/", + "color": "brown", + "techniques": [ "WBLOCK_1", "BRUTAL", "SWEEP" ], + "qualities": [ [ "AXE", 1 ], [ "BUTCHER", -20 ] ], + "use_action": "WEATHER_TOOL", + "flags": [ "DURABLE_MELEE", "BELT_CLIP", "TRADER_AVOID", "MAGIC_FOCUS", "HYGROMETER", "BAROMETER" ] + }, + { + "id": "rune_animist_weapon", + "type": "GENERIC", + "name": { "str": "Animist athame" }, + "weapon_category": [ "KNIVES" ], + "//": "Tool qualities equivalent to steak knife, combat equiv. to copper knife + 1 w/ RAPID and BLOCK1, size/weight off combat knife +1", + "description": "A steel ritual knife used by Animists to draw blood for summoning. Their school rune is embedded in the crossguard.", + "weight": "504 g", + "volume": "500 ml", + "price": "30 USD", + "bashing": 2, + "cutting": 13, + "material": [ "wood", "steel" ], + "symbol": ";", + "color": "light_gray", + "techniques": [ "WBLOCK_1", "PRECISE" ], + "qualities": [ [ "CUT", 1 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 11 ] ], + "flags": [ "STAB", "SHEATH_KNIFE", "MAGIC_FOCUS", "TRADER_AVOID" ] + }, + { + "type": "ARMOR", + "id": "mbelt_technomancer_toolbelt", + "name": { "str": "technomancer's toolbelt" }, + "weight": "2000 g", + "color": "brown", + "covers": [ "torso" ], + "storage": "1 L", + "symbol": "[", + "description": "A custom-built leather utility belt that instantly creates any tool that you reach for. Activate to sheathe/draw a weapon.", + "price": 500000, + "material": [ "leather", "steel" ], + "volume": "4 L", + "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY", "WAIST", "OVERSIZE" ], + "coverage": 10, + "encumbrance": 4, + "material_thickness": 4, + "use_action": [ + { + "type": "holster", + "holster_prompt": "Sheath blade", + "holster_msg": "You sheath your %s", + "min_volume": "250 ml", + "max_volume": "1 L", + "flags": [ "SHEATH_KNIFE", "SHEATH_SWORD" ] + }, + "CROWBAR" + ], + "qualities": [ + [ "HAMMER", 3 ], + [ "PRY", 1 ], + [ "SAW_M", 2 ], + [ "SAW_W", 2 ], + [ "WRENCH", 2 ], + [ "AXE", 1 ], + [ "SCREW", 1 ], + [ "HAMMER_FINE", 1 ], + [ "SAW_M_FINE", 1 ], + [ "WRENCH_FINE", 1 ], + [ "SCREW_FINE", 1 ] + ] + }, + { + "id": "rune_druid_weapon", + "copy-from": "compositebow", + "type": "GUN", + "color": "yellow", + "name": { "str": "Druid composite bow" }, + "//": "Equivalent to composite bow for dispersion/reload/weight/range/encumb/bash, with two mod slots added equivalent to other weapons getting techniques", + "description": "A bow made of multiple materials to maximize energy efficiency. There are two Druid runes embedded at the tips.", + "price": "320 USD", + "min_strength": 10, + "armor_data": { "covers": [ "torso" ], "coverage": 5, "material_thickness": 1, "encumbrance": 13 }, + "extend": { "flags": [ "TRADER_AVOID", "MAGIC_FOCUS", "DURABLE_MELEE" ], "valid_mod_locations": [ [ "accessories", 2 ] ] } + }, + { + "type": "GENERIC", + "id": "rune_earthshaper_weapon", + "weapon_category": [ "FIST_WEAPONS" ], + "symbol": "3", + "color": "light_gray", + "name": { "str": "Earthshaper cestus", "str_pl": "Earthshaper cesti" }, + "//": "Equivalent to cestus +1 with BRUTAL and WBLOCK1", + "description": "A stone battle glove with carved runes encasing the hand, protecting it while increasing striking power. There is an Earthshaper rune embedded in the palm.", + "material": [ "stone", "leather", "steel" ], + "volume": "500 ml", + "weight": "873 g", + "bashing": 24, + "to_hit": 2, + "qualities": [ [ "HAMMER", 1 ] ], + "techniques": [ "WBLOCK_1", "BRUTAL" ], + "flags": [ "UNARMED_WEAPON", "DURABLE_MELEE", "TRADER_AVOID", "MAGIC_FOCUS" ] + } +] diff --git a/data/mods/Magiclysm/items/comestibles.json b/data/mods/Magical_Nights/items/comestibles.json similarity index 98% rename from data/mods/Magiclysm/items/comestibles.json rename to data/mods/Magical_Nights/items/comestibles.json index ec2c4f8216e5..8099931e0252 100644 --- a/data/mods/Magiclysm/items/comestibles.json +++ b/data/mods/Magical_Nights/items/comestibles.json @@ -18,7 +18,7 @@ "stack_size": 1, "fun": -18, "rot_spawn": "GROUP_EGG_OWLBEAR", - "vitamins": [ [ "vitA", 360 ], [ "calcium", 120 ], [ "iron", 160 ], [ "vitB", 840 ], [ "egg_allergen", 1 ] ], + "vitamins": [ [ "vitA", 360 ], [ "calcium", 120 ], [ "iron", 160 ], [ "vitB", 840 ] ], "rot_spawn_chance": 80, "//": "Alchemically speaking, I see this egg as having the elements of Growth, Stone, and Egg. Growth would make things grow faster, the simplest example being a magical liquid fertilizer. Stone would be a defensive element, used in creating something like a potion of stoneskin. Egg would be interesting though. What if instead of being imbibed there were potions that instead functioned similarly to the sourdough items, or the blob vehicle parts, in that they take a gestation period and then you could activate them and have a new item pop out. Creatures sure but especially biomancers could have temporarily-lived tools, weapons, and armor." }, diff --git a/data/mods/Magiclysm/items/constructs.json b/data/mods/Magical_Nights/items/constructs.json similarity index 54% rename from data/mods/Magiclysm/items/constructs.json rename to data/mods/Magical_Nights/items/constructs.json index cab4b9c40550..a33adbcfc8c1 100644 --- a/data/mods/Magiclysm/items/constructs.json +++ b/data/mods/Magical_Nights/items/constructs.json @@ -65,5 +65,56 @@ "bashing": 30, "to_hit": -5, "flags": [ "TRADER_AVOID", "NO_REPAIR" ] + }, + { + "type": "GENERIC", + "id": "broken_resingolem_fresh", + "symbol": "x", + "color": "green", + "name": "broken fresh resin golem", + "category": "other", + "description": "A broken resin golem, slowly becoming more and more of a puddle. You could recover some small amount of materials from it, but it'll be difficult considering how liquid it is.", + "price": "1 USD", + "material": [ "plastic" ], + "weight": "70 kg", + "volume": "80 L", + "bashing": 4, + "cutting": 4, + "to_hit": -3, + "flags": [ "TRADER_AVOID", "NO_REPAIR" ] + }, + { + "type": "GENERIC", + "id": "broken_resingolem_half", + "symbol": "x", + "color": "blue", + "name": "broken semi-cured resin golem", + "category": "other", + "description": "A broken resin golem, looking a bit like a big pile of toffee. You can recover some materials from it, but some wastage will definitely happen.", + "price": "1 USD", + "material": [ "plastic" ], + "weight": "70 kg", + "volume": "125 L", + "bashing": 4, + "cutting": 4, + "to_hit": -3, + "flags": [ "TRADER_AVOID", "NO_REPAIR" ] + }, + { + "type": "GENERIC", + "id": "broken_resingolem_cured", + "symbol": "x", + "color": "red", + "name": "broken cured resin golem", + "category": "other", + "description": "A broken resin golem, now reduced to a pile of rubble. You could recover some materials from it if you were to work at it for a while.", + "price": "1 USD", + "material": [ "plastic" ], + "weight": "70 kg", + "volume": "150 L", + "bashing": 4, + "cutting": 4, + "to_hit": -3, + "flags": [ "TRADER_AVOID", "NO_REPAIR" ] } ] diff --git a/data/mods/Magiclysm/items/enchanted.json b/data/mods/Magical_Nights/items/enchanted/enchanted.json similarity index 51% rename from data/mods/Magiclysm/items/enchanted.json rename to data/mods/Magical_Nights/items/enchanted/enchanted.json index 216240c50a0d..7783e4212a5c 100644 --- a/data/mods/Magiclysm/items/enchanted.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted.json @@ -1,32 +1,37 @@ [ { - "id": "belt_str", - "copy-from": "leather_belt", - "type": "ARMOR", - "name": { "str": "belt of strength +2", "str_pl": "belts of strength +2" }, - "relic_data": { "passive_effects": [ { "has": "WORN", "condition": "ALWAYS", "values": [ { "value": "STRENGTH", "add": 2 } ] } ] } - }, - { - "id": "belt_haste", - "copy-from": "leather_belt", - "type": "ARMOR", - "name": { "str": "belt of haste", "str_pl": "belts of haste" }, + "id": "magi_staff_minor", + "type": "GENERIC", + "symbol": "/", + "color": "brown", + "name": { "str": "minor staff of the magi", "str_pl": "minor staves of the magi" }, + "description": "A simple carved staff, made of wood. It faintly glows with magic when you cast spells. Wielding it slightly increases your mana capacity", + "price": "100 USD", + "material": [ "wood" ], + "weapon_category": [ "QUARTERSTAVES" ], + "flags": [ "SHEATH_SPEAR", "ALWAYS_TWOHAND", "FRAGILE_MELEE", "MAGIC_FOCUS" ], "relic_data": { - "passive_effects": [ { "has": "WORN", "condition": "ALWAYS", "values": [ { "value": "SPEED", "multiply": 0.15, "add": 5 } ] } ] - } + "passive_effects": [ { "has": "WIELD", "condition": "ALWAYS", "values": [ { "value": "MANA_CAP", "multiply": 0.5 } ] } ] + }, + "weight": "1400 g", + "volume": "3 L", + "category": "weapons", + "to_hit": 3, + "bashing": 17 }, { - "id": "magi_staff_minor", + "id": "magi_staff_lesser", "type": "GENERIC", "symbol": "/", "color": "brown", + "looks_like": "magi_staff_minor", "name": { "str": "lesser staff of the magi", "str_pl": "lesser staves of the magi" }, "description": "A beautifully carved staff, made of enchanted wood and mithril. It faintly glows with magic when you cast spells, but it is not a sturdy melee weapon.", "price": "400 USD", "material": "wood", "flags": [ "SHEATH_SPEAR", "ALWAYS_TWOHAND", "FRAGILE_MELEE", "MAGIC_FOCUS" ], "relic_data": { - "passive_effects": [ { "has": "WIELD", "condition": "ALWAYS", "values": [ { "value": "MANA_CAP", "multiply": 0.2, "add": 750 } ] } ] + "passive_effects": [ { "has": "WIELD", "condition": "ALWAYS", "values": [ { "value": "MANA_CAP", "multiply": 1.25 } ] } ] }, "weight": "1400 g", "volume": "3 L", @@ -34,6 +39,27 @@ "category": "weapons", "to_hit": 3 }, + { + "id": "magi_staff_greater", + "type": "GENERIC", + "symbol": "/", + "color": "brown", + "looks_like": "magi_staff_minor", + "name": { "str": "greater staff of the magi", "str_pl": "greater staves of the magi" }, + "description": "A beautifully carved staff, made of enchanted wood and mithril. It faintly glows with magic when you cast spells, but it is not a sturdy melee weapon. Wielding it greatly increases your mana capacity.", + "price": "10 kUSD", + "material": [ "wood", "mithril_metal" ], + "weapon_category": [ "QUARTERSTAVES" ], + "flags": [ "SHEATH_SPEAR", "ALWAYS_TWOHAND", "FRAGILE_MELEE", "MAGIC_FOCUS" ], + "relic_data": { + "passive_effects": [ { "has": "WIELD", "condition": "ALWAYS", "values": [ { "value": "MANA_CAP", "multiply": 2 } ] } ] + }, + "weight": "1400 g", + "volume": "3 L", + "category": "weapons", + "to_hit": 3, + "bashing": 21 + }, { "id": "wizard_hat", "type": "ARMOR", diff --git a/data/mods/Magiclysm/items/enchanted_belts.json b/data/mods/Magical_Nights/items/enchanted/enchanted_belts.json similarity index 81% rename from data/mods/Magiclysm/items/enchanted_belts.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_belts.json index 066580826886..677f89889858 100644 --- a/data/mods/Magiclysm/items/enchanted_belts.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted_belts.json @@ -22,7 +22,6 @@ "max_weight": "400 g", "flags": [ "BELT_CLIP" ] }, - "valid_mods": [ "resized_large" ], "flags": [ "WAIST", "WATER_FRIENDLY", "STURDY" ] }, { @@ -106,48 +105,6 @@ "flags": [ "SHEATH_KNIFE", "SHEATH_SWORD", "BELT_CLIP", "SHEATH_SPEAR" ] } }, - { - "type": "ARMOR", - "id": "mbelt_technomancer_toolbelt", - "name": { "str": "technomancer's toolbelt" }, - "weight": "2000 g", - "color": "brown", - "covers": [ "torso" ], - "storage": "1 L", - "symbol": "[", - "description": "A custom-built leather utility belt that instantly creates any tool that you reach for. Activate to sheathe/draw a weapon.", - "price": 500000, - "material": [ "leather", "steel" ], - "volume": "4 L", - "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY", "WAIST", "OVERSIZE" ], - "coverage": 10, - "encumbrance": 4, - "material_thickness": 4, - "use_action": [ - { - "type": "holster", - "holster_prompt": "Sheath blade", - "holster_msg": "You sheath your %s", - "min_volume": "250 ml", - "max_volume": "1 L", - "flags": [ "SHEATH_KNIFE", "SHEATH_SWORD" ] - }, - "CROWBAR" - ], - "qualities": [ - [ "HAMMER", 3 ], - [ "PRY", 1 ], - [ "SAW_M", 2 ], - [ "SAW_W", 2 ], - [ "WRENCH", 2 ], - [ "AXE", 1 ], - [ "SCREW", 1 ], - [ "HAMMER_FINE", 1 ], - [ "SAW_M_FINE", 1 ], - [ "WRENCH_FINE", 1 ], - [ "SCREW_FINE", 1 ] - ] - }, { "type": "TOOL_ARMOR", "copy-from": "mbelt_leather", @@ -189,5 +146,12 @@ "moves": 20, "msg": "You loop the whip in your hand and it coils back into a belt form in an instant." } + }, + { + "id": "belt_str", + "copy-from": "mbelt_leather", + "type": "ARMOR", + "name": { "str": "belt of strength +2", "str_pl": "belts of strength +2" }, + "relic_data": { "passive_effects": [ { "has": "WORN", "condition": "ALWAYS", "values": [ { "value": "STRENGTH", "add": 2 } ] } ] } } ] diff --git a/data/mods/Magiclysm/items/enchanted_boots.json b/data/mods/Magical_Nights/items/enchanted/enchanted_boots.json similarity index 95% rename from data/mods/Magiclysm/items/enchanted_boots.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_boots.json index efcaefa47d8e..ebe454afdcd4 100644 --- a/data/mods/Magiclysm/items/enchanted_boots.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted_boots.json @@ -11,7 +11,6 @@ "warmth": 30, "material_thickness": 3, "environmental_protection": 3, - "valid_mods": [ "resized_large" ], "flags": [ "WATERPROOF", "STURDY" ] }, { @@ -31,7 +30,6 @@ "warmth": 30, "material_thickness": 3, "environmental_protection": 3, - "valid_mods": [ "resized_large" ], "flags": [ "WATERPROOF", "STURDY" ] }, { @@ -50,7 +48,6 @@ "warmth": 30, "material_thickness": 3, "environmental_protection": 3, - "valid_mods": [ "resized_large" ], "flags": [ "WATERPROOF", "STURDY" ] }, { @@ -64,7 +61,6 @@ "warmth": 30, "material_thickness": 3, "environmental_protection": 3, - "valid_mods": [ "resized_large" ], "flags": [ "WATERPROOF", "STURDY" ], "relic_data": { "passive_effects": [ { "has": "WORN", "condition": "ALWAYS", "values": [ { "value": "ARMOR_ELEC", "add": -20 } ] } ] } } diff --git a/data/mods/Magiclysm/items/enchanted_bracers.json b/data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json similarity index 100% rename from data/mods/Magiclysm/items/enchanted_bracers.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json diff --git a/data/mods/Magiclysm/items/enchanted_gunmods.json b/data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json similarity index 100% rename from data/mods/Magiclysm/items/enchanted_gunmods.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json diff --git a/data/mods/Magiclysm/items/enchanted_masks.json b/data/mods/Magical_Nights/items/enchanted/enchanted_masks.json similarity index 98% rename from data/mods/Magiclysm/items/enchanted_masks.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_masks.json index 65f900ad55c1..c3a5867031d2 100644 --- a/data/mods/Magiclysm/items/enchanted_masks.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted_masks.json @@ -5,7 +5,7 @@ "category": "armor", "name": "magic mask", "description": "A generic magic mask.", - "weight": "400 g", + "weight": "442 g", "volume": "750 ml", "price": "2 kUSD", "to_hit": -3, diff --git a/data/mods/Magiclysm/items/enchanted_melee.json b/data/mods/Magical_Nights/items/enchanted/enchanted_melee.json similarity index 81% rename from data/mods/Magiclysm/items/enchanted_melee.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_melee.json index ef2c63dcf6f7..c25495395c6b 100644 --- a/data/mods/Magiclysm/items/enchanted_melee.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted_melee.json @@ -787,125 +787,6 @@ "proportional": { "price": 6, "price_postapoc": 6, "weight": 0.8, "bashing": 1.2, "cutting": 1.2 }, "relative": { "to_hit": 2 } }, - { - "id": "rune_biomancer_weapon", - "type": "GENERIC", - "weapon_category": [ "SPEARS" ], - "name": { "str": "Biomancer spear" }, - "//": "Effectively a durable stone spear +1 with IMPALE tech. based off Wicked Bonespear. Lorewise, it would make sense for novice Biomancers to be developing their skills in spears so they can adequately use the Bonespear(No whips/REACH3 for you!) once they're proficient enough to summon one. Should be weaker than other school weapons DPSwise due to reach.", - "description": "A grotesque bone spearhead on a stout wooden pole. There is a Biomancer rune embedded at the base of the head.", - "weight": "988 g", - "volume": "1250 ml", - "price": "39 USD", - "to_hit": 2, - "bashing": 6, - "cutting": 15, - "material": [ "wood", "bone" ], - "symbol": "/", - "color": "light_gray", - "techniques": [ "WBLOCK_1", "IMPALE" ], - "qualities": [ [ "COOK", 1 ] ], - "flags": [ "STAB", "SPEAR", "REACH_ATTACK", "DURABLE_MELEE", "SHEATH_SPEAR", "TRADER_AVOID", "MAGIC_FOCUS" ] - }, - { - "id": "rune_technomancer_weapon", - "type": "GENERIC", - "weapon_category": [ "BATONS" ], - "name": { "str": "Technomancer toolbar" }, - "//": "Combat stats based off crowbar +1, techniques off Halligan bar(closest non-magical substitute), weight based on 75% of hammer & wrench(since their handles aren't included) + 100% crowbar with benefit from +1 enchantment", - "description": "This staff incorporates a sturdy cresent wrench on top of a prybar and a hammer on the other in a convienent package. There is a Technomancer rune embedded in the hammerhead.", - "weight": "1536 g", - "volume": "1750 ml", - "price": "39 USD", - "to_hit": 1, - "bashing": 15, - "cutting": 1, - "material": [ "steel" ], - "symbol": "/", - "color": "light_gray", - "techniques": [ "WBLOCK_1", "BRUTAL", "SWEEP" ], - "qualities": [ [ "PRY", 3 ], [ "HAMMER", 3 ], [ "HAMMER_FINE", 1 ], [ "WRENCH", 2 ], [ "WRENCH_FINE", 2 ] ], - "flags": [ "DURABLE_MELEE", "BELT_CLIP", "TRADER_AVOID", "MAGIC_FOCUS" ] - }, - { - "id": "rune_magus_weapon", - "type": "GENERIC", - "weapon_category": [ "QUARTERSTAVES" ], - "name": { "str": "Magus staff", "str_pl": "Magus staves" }, - "//": "The classical vision of the wizard gets a classic weapon. DPS Stats are between the regular and ironshod versions. Stats are slightly worse than the QS+1 due to the glass weight slowing attack speed.", - "description": "A quarterstaff with runes carved into it and two glass jars, heat-tempered and infused with mana for durability, to act as mana receptacles. There are two Magi runes embedded at the tips.", - "weight": "1530 g", - "volume": "1500 ml", - "price": "39 USD", - "to_hit": 2, - "bashing": 20, - "material": [ "wood", "diamond" ], - "symbol": "/", - "color": "brown", - "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], - "flags": [ "DURABLE_MELEE", "SHEATH_SPEAR", "TRADER_AVOID", "MAGIC_FOCUS" ] - }, - { - "id": "rune_kelvinist_weapon", - "type": "GENERIC", - "name": { "str": "Kelvinist flamberge" }, - "weapon_category": [ "1H_SWORDS" ], - "//": "Flame-bladed sword covers half of Kelvinist's heat-cold theme. Combat stats equivalent to cutlass +1 with BRUTAL technique.", - "description": "A sword with an undulating blade, reminiscent of a flame. There is a Kelvinist rune embedded in the pommel.", - "weight": "1530 g", - "volume": "1250 ml", - "price": "39 USD", - "to_hit": 3, - "bashing": 7, - "cutting": 29, - "material": [ "wood", "steel" ], - "symbol": "/", - "color": "light_gray", - "techniques": [ "WBLOCK_2", "BRUTAL" ], - "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 9 ] ], - "use_action": "WEATHER_TOOL", - "flags": [ "DURABLE_MELEE", "SHEATH_SWORD", "TRADER_AVOID", "MAGIC_FOCUS", "THERMOMETER" ] - }, - { - "id": "rune_stormshaper_weapon", - "type": "GENERIC", - "name": { "str": "Stormshaper axe" }, - "weapon_category": [ "1H_AXES" ], - "//": "Equivalent to copper ax +1, with volume reduction so it can be sheathed like the other school weapons. Metals chosen for being two most conductive metals + balancing reasons", - "description": "A forged copper axe with silver trimmings and a wooden handle. There is a Stormshaper rune embedded in the eye.", - "weight": "3330 g", - "volume": "2 L", - "price": "39 USD", - "to_hit": 3, - "bashing": 19, - "cutting": 13, - "material": [ "wood", "copper", "silver" ], - "symbol": "/", - "color": "brown", - "techniques": [ "WBLOCK_1", "BRUTAL", "SWEEP" ], - "qualities": [ [ "AXE", 1 ], [ "BUTCHER", -20 ] ], - "use_action": "WEATHER_TOOL", - "flags": [ "DURABLE_MELEE", "BELT_CLIP", "TRADER_AVOID", "MAGIC_FOCUS", "HYGROMETER", "BAROMETER" ] - }, - { - "id": "rune_animist_weapon", - "type": "GENERIC", - "name": { "str": "Animist athame" }, - "weapon_category": [ "KNIVES" ], - "//": "Tool qualities equivalent to steak knife, combat equiv. to copper knife + 1 w/ RAPID and BLOCK1, size/weight off combat knife +1", - "description": "A steel ritual knife used by Animists to draw blood for summoning. Their school rune is embedded in the crossguard.", - "weight": "504 g", - "volume": "500 ml", - "price": "30 USD", - "bashing": 2, - "cutting": 13, - "material": [ "wood", "steel" ], - "symbol": ";", - "color": "light_gray", - "techniques": [ "WBLOCK_1", "PRECISE" ], - "qualities": [ [ "CUT", 1 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 11 ] ], - "flags": [ "STAB", "SHEATH_KNIFE", "MAGIC_FOCUS", "TRADER_AVOID" ] - }, { "type": "GENERIC", "id": "springstaff-retracted", diff --git a/data/mods/Magiclysm/items/enchanted_misc.json b/data/mods/Magical_Nights/items/enchanted/enchanted_misc.json similarity index 77% rename from data/mods/Magiclysm/items/enchanted_misc.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_misc.json index 081f706eca45..e035862acb42 100644 --- a/data/mods/Magiclysm/items/enchanted_misc.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted_misc.json @@ -17,6 +17,7 @@ "flags": [ "ALLOWS_REMOTE_USE", "FIRE" ], "initial_charges": 60, "max_charges": 60, + "charges_per_use": 1, "sub": "hotplate", "artifact_data": { "charge_type": "ARTC_TIME" }, "use_action": [ @@ -26,7 +27,6 @@ "type": "transform", "target": "heat_cube_torch_on", "active": true, - "transform_charges": 1, "msg": "You push the torch button and the cube emits a large flame from the top, one that does radiate heat, but won't burn anything.", "menu_text": "Activate torch mode", "moves": 150 @@ -93,7 +93,7 @@ "name": { "str": "everburning torch", "str_pl": "everburning torches" }, "copy-from": "mtorch_everburning", "revert_to": "mtorch_everburning", - "sub": "torch_lit", + "sub": "fire", "use_action": [ { "type": "firestarter", "moves": 30 }, { @@ -136,7 +136,7 @@ "initial_charges": 500, "max_charges": 1000, "charges_per_use": 1, - "artifact_data": { "charge_type": "ARTC_TIME" }, + "relic_data": { "recharge_scheme": [ { "type": "time", "req": "none", "interval": "1 h", "rate": 1 } ] }, "sub": "sewing_kit", "use_action": [ { @@ -184,6 +184,41 @@ "ammo": "thread", "initial_charges": 500, "max_charges": 1000, - "artifact_data": { "charge_type": "ARTC_TIME" } + "relic_data": { "recharge_scheme": [ { "type": "time", "req": "none", "interval": "1 h", "rate": 1 } ] } + }, + { + "id": "glow_light_off", + "type": "GENERIC", + "category": "tools", + "name": { "str": "magical reading light (covered)", "str_pl": "magical reading lights (covered)" }, + "description": "Powered by the magic of glow powder and lesser mana potions, this extremely expensive little light will provide just enough light to read by for at least a decade. The cover is closed. Use it to open the cover and show the light.", + "weight": "270 g", + "volume": "250 ml", + "price": "1250 USD", + "material": "glass", + "symbol": ",", + "color": "light_blue", + "use_action": { "target": "glow_light", "msg": "You open the nightlight's cover.", "menu_text": "Open cover", "type": "transform" }, + "flags": [ "ALLOWS_REMOTE_USE" ] + }, + { + "id": "glow_light", + "type": "GENERIC", + "category": "tools", + "name": "magical reading light", + "description": "Powered by the magic of glow powder and lesser mana potions, this extremely expensive little light will provide just enough light to read by for at least a decade. Use it to close the cover and hide the light.", + "weight": "270 g", + "volume": "250 ml", + "price": "1250 USD", + "material": "glass", + "symbol": ",", + "color": "light_blue", + "use_action": { + "target": "glow_light_off", + "msg": "You close the nightlight's cover.", + "menu_text": "Close cover", + "type": "transform" + }, + "flags": [ "LIGHT_5", "ALLOWS_REMOTE_USE" ] } ] diff --git a/data/mods/Magiclysm/items/enchanted_ranged.json b/data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json similarity index 68% rename from data/mods/Magiclysm/items/enchanted_ranged.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json index c5f2bcc1beef..7df25d09f38e 100644 --- a/data/mods/Magiclysm/items/enchanted_ranged.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json @@ -1,30 +1,4 @@ [ - { - "id": "rune_druid_weapon", - "copy-from": "compositebow", - "type": "GUN", - "color": "yellow", - "name": { "str": "Druid composite bow" }, - "//": "Equivalent to composite bow for dispersion/reload/weight/range/encumb/bash, with two mod slots added equivalent to other weapons getting techniques", - "description": "A bow made of multiple materials to maximize energy efficiency. There are two Druid runes embedded at the tips.", - "price": "320 USD", - "material": [ "wood", "bone" ], - "flags": [ - "FIRE_TWOHAND", - "STR_DRAW", - "RELOAD_AND_SHOOT", - "PRIMITIVE_RANGED_WEAPON", - "BELTED", - "COMPACT", - "TRADER_AVOID", - "MAGIC_FOCUS", - "DURABLE_MELEE", - "WATER_FRIENDLY" - ], - "min_strength": 10, - "armor_data": { "covers": [ "torso" ], "coverage": 5, "material_thickness": 1, "encumbrance": 13 }, - "valid_mod_locations": [ [ "sights", 1 ], [ "accessories", 1 ], [ "dampening", 1 ] ] - }, { "id": "m47a1", "copy-from": "pistol_revolver", @@ -51,10 +25,10 @@ [ "mechanism", 1 ], [ "barrel", 1 ], [ "grip", 1 ], - [ "rail", 1 ], + [ "rail mount", 1 ], [ "sights", 1 ], - [ "stock", 1 ], - [ "underbarrel", 1 ] + [ "stock mount", 1 ], + [ "underbarrel mount", 1 ] ], "flags": [ "RELOAD_ONE", "NEVER_JAMS", "RELOAD_EJECT" ] }, diff --git a/data/mods/Magiclysm/items/enchanted_rings.json b/data/mods/Magical_Nights/items/enchanted/enchanted_rings.json similarity index 98% rename from data/mods/Magiclysm/items/enchanted_rings.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_rings.json index 9def750cbe6e..e1a92739b2bf 100644 --- a/data/mods/Magiclysm/items/enchanted_rings.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted_rings.json @@ -13,7 +13,7 @@ "covers": [ "hand_either" ], "coverage": 0, "warmth": 0, - "flags": [ "WATER_FRIENDLY", "ALLOWS_NATURAL_ATTACKS", "FANCY", "ONLY_ONE", "SKINTIGHT", "POWERARMOR_COMPATIBLE" ] + "flags": [ "WATER_FRIENDLY", "ALLOWS_NATURAL_ATTACKS", "FANCY", "ONLY_ONE", "SKINTIGHT", "POWERARMOR_COMPATIBLE", "COMPACT" ] }, { "abstract": "mring_silver", @@ -29,7 +29,7 @@ "covers": [ "hand_either" ], "coverage": 0, "warmth": 0, - "flags": [ "WATER_FRIENDLY", "ALLOWS_NATURAL_ATTACKS", "FANCY", "ONLY_ONE", "SKINTIGHT", "POWERARMOR_COMPATIBLE" ] + "flags": [ "WATER_FRIENDLY", "ALLOWS_NATURAL_ATTACKS", "FANCY", "ONLY_ONE", "SKINTIGHT", "POWERARMOR_COMPATIBLE", "COMPACT" ] }, { "abstract": "mring_gold", @@ -45,7 +45,7 @@ "covers": [ "hand_either" ], "coverage": 0, "warmth": 0, - "flags": [ "WATER_FRIENDLY", "ALLOWS_NATURAL_ATTACKS", "FANCY", "ONLY_ONE", "SKINTIGHT", "POWERARMOR_COMPATIBLE" ] + "flags": [ "WATER_FRIENDLY", "ALLOWS_NATURAL_ATTACKS", "FANCY", "ONLY_ONE", "SKINTIGHT", "POWERARMOR_COMPATIBLE", "COMPACT" ] }, { "abstract": "mring_platinum", @@ -61,7 +61,7 @@ "covers": [ "hand_either" ], "coverage": 0, "warmth": 0, - "flags": [ "WATER_FRIENDLY", "ALLOWS_NATURAL_ATTACKS", "FANCY", "ONLY_ONE", "SKINTIGHT", "POWERARMOR_COMPATIBLE" ] + "flags": [ "WATER_FRIENDLY", "ALLOWS_NATURAL_ATTACKS", "FANCY", "ONLY_ONE", "SKINTIGHT", "POWERARMOR_COMPATIBLE", "COMPACT" ] }, { "copy-from": "mring_silver", diff --git a/data/mods/Magiclysm/items/enchanted_tokens.json b/data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json similarity index 100% rename from data/mods/Magiclysm/items/enchanted_tokens.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json diff --git a/data/mods/Magiclysm/items/enchanted_tools.json b/data/mods/Magical_Nights/items/enchanted/enchanted_tools.json similarity index 100% rename from data/mods/Magiclysm/items/enchanted_tools.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_tools.json diff --git a/data/mods/Magiclysm/items/enchanted_unarmed.json b/data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json similarity index 81% rename from data/mods/Magiclysm/items/enchanted_unarmed.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json index 72982bbef997..56e28323d29d 100644 --- a/data/mods/Magiclysm/items/enchanted_unarmed.json +++ b/data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json @@ -95,23 +95,5 @@ "valid_mod_locations": [ [ "mechanism", 1 ] ], "flags": [ "UNARMED_WEAPON", "DURABLE_MELEE", "NEVER_JAMS", "RELOAD_EJECT", "RELOAD_ONE" ], "faults": [ "fault_gun_blackpowder", "fault_gun_dirt" ] - }, - { - "type": "GENERIC", - "id": "rune_earthshaper_weapon", - "weapon_category": [ "FIST_WEAPONS" ], - "symbol": "3", - "color": "light_gray", - "name": { "str": "Earthshaper cestus", "str_pl": "Earthshaper cesti" }, - "//": "Equivalent to cestus +1 with BRUTAL and WBLOCK1", - "description": "A stone battle glove with carved runes encasing the hand, protecting it while increasing striking power. There is an Earthshaper rune embedded in the palm.", - "material": [ "stone", "leather", "steel" ], - "volume": "500 ml", - "weight": "873 g", - "bashing": 13, - "to_hit": 1, - "qualities": [ [ "HAMMER", 1 ] ], - "techniques": [ "WBLOCK_1", "BRUTAL" ], - "flags": [ "UNARMED_WEAPON", "DURABLE_MELEE", "TRADER_AVOID", "MAGIC_FOCUS" ] } ] diff --git a/data/mods/Magiclysm/items/enchanted_wands.json b/data/mods/Magical_Nights/items/enchanted/enchanted_wands.json similarity index 100% rename from data/mods/Magiclysm/items/enchanted_wands.json rename to data/mods/Magical_Nights/items/enchanted/enchanted_wands.json diff --git a/data/mods/Magiclysm/items/ethereal_items.json b/data/mods/Magical_Nights/items/ethereal_items.json similarity index 83% rename from data/mods/Magiclysm/items/ethereal_items.json rename to data/mods/Magical_Nights/items/ethereal_items.json index 0d8eb614beaa..daf147ba4d2a 100644 --- a/data/mods/Magiclysm/items/ethereal_items.json +++ b/data/mods/Magical_Nights/items/ethereal_items.json @@ -5,78 +5,80 @@ "weapon_category": [ "FIST_WEAPONS" ], "name": { "str": "pair of magical armored stone gauntlets", "str_pl": "pairs of magical armored stone gauntlets" }, "description": "A magical flexible stonelike substance for protection and attack.", - "weight": "1 g", + "weight": "600 g", "volume": "250 ml", "price": "1 cent", - "to_hit": 2, + "to_hit": 1, "bashing": 20, "material": [ "superalloy" ], "symbol": "[", "color": "light_gray", - "armor_data": { - "covers": [ "hands", "arms" ], - "coverage": 100, - "encumbrance": 0, - "warmth": 20, - "material_thickness": 4, - "environmental_protection": 10 - }, "qualities": [ [ "HAMMER", 1 ] ], - "flags": [ "VARSIZE", "STURDY", "UNARMED_WEAPON", "DURABLE_MELEE", "NONCONDUCTIVE", "MAGIC_FOCUS", "POWERARMOR_COMPATIBLE" ], + "flags": [ "STURDY", "UNARMED_WEAPON", "DURABLE_MELEE", "NONCONDUCTIVE", "MAGIC_FOCUS" ], "techniques": [ "WBLOCK_3" ] }, { "id": "finger_firelighter", "type": "TOOL", "name": "finger firelighter", + "material": "concentrated_mana", "description": "This is a small flame you can hold in your hand. With a thought, you can cause it to light something on fire.", "weight": "1 g", "volume": "1 ml", "price": 0, "symbol": ",", "color": "yellow", - "use_action": [ { "type": "firestarter", "moves": 20 } ], + "use_action": [ + { "type": "firestarter", "moves": 20 }, + { "type": "transform", "msg": "You dim the flame.", "target": "finger_firelighter_off" } + ], "flags": [ "TRADER_AVOID", "FIRESTARTER", "LIGHT_8", "FLAMING", "WATER_EXTINGUISH" ] }, { - "id": "armor_stonefist", + "id": "finger_firelighter_off", + "copy-from": "finger_firelighter", + "type": "TOOL", + "name": "finger firelighter (dimmed)", + "description": "This is a small flame you can hold in your hand. With a thought, you can cause it to light something on fire, though it is currently dimmed.", + "use_action": [ + { "type": "firestarter", "moves": 20 }, + { "type": "transform", "msg": "You brighten the flame.", "target": "finger_firelighter" } + ], + "flags": [ "TRADER_AVOID", "FIRESTARTER", "FLAMING", "WATER_EXTINGUISH" ] + }, + { + "id": "magic_lamp", "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of magical armored stone gauntlets", "str_pl": "pairs of magical armored stone gauntlets" }, - "description": "A magical flexible stonelike substance for protection and attack.", + "category": "tools", + "name": "magic lamp", + "description": "a magical light source that will light up a small area.", "weight": "1 g", "volume": "250 ml", + "material": "concentrated_mana", "price": "1 cent", - "to_hit": 2, - "bashing": 20, - "material": [ "superalloy" ], - "symbol": "[", - "color": "light_gray", - "covers": [ "hands", "arms" ], - "coverage": 100, - "encumbrance": 0, - "warmth": 20, - "material_thickness": 4, - "environmental_protection": 10, - "qualities": [ [ "HAMMER", 1 ] ], - "flags": [ "VARSIZE", "STURDY", "UNARMED_WEAPON", "DURABLE_MELEE", "NONCONDUCTIVE", "MAGIC_FOCUS", "POWERARMOR_COMPATIBLE" ], - "techniques": [ "WBLOCK_3" ] + "to_hit": -2, + "bashing": 1, + "symbol": ",", + "color": "light_green", + "flags": [ "LIGHT_30", "AURA", "SEMITANGIBLE", "POWERARMOR_COMPATIBLE" ], + "use_action": { "type": "transform", "msg": "You dim your spell until it's dark.", "target": "magic_lamp_off" } }, { - "id": "magic_lamp", + "id": "magic_lamp_off", "type": "ARMOR", "category": "tools", - "name": "magic lamp", - "description": "a magical light source that will light up a small area.", + "name": "magic lamp (dimmed)", + "description": "a magical aura that you know can be brightened into a powerful light.", "weight": "1 g", "volume": "250 ml", + "material": "concentrated_mana", "price": "1 cent", "to_hit": -2, - "bashing": 8, + "bashing": 1, "symbol": ",", "color": "light_green", - "covers": [ "head" ], - "flags": [ "LIGHT_15", "LEAK_DAM", "AURA", "SEMITANGIBLE", "POWERARMOR_COMPATIBLE" ] + "flags": [ "AURA", "SEMITANGIBLE", "POWERARMOR_COMPATIBLE" ], + "use_action": { "type": "transform", "msg": "You return your spell to full brightness.", "target": "magic_lamp" } }, { "id": "magic_light", @@ -86,12 +88,27 @@ "description": "A small magical light that you can read by.", "weight": "0 kg", "volume": "0 ml", + "material": "concentrated_mana", "price": "0 cent", - "material": [ "concentrated_mana" ], "symbol": ",", "color": "light_green", - "covers": [ "head" ], - "flags": [ "LIGHT_5", "LEAK_DAM", "AURA", "SEMITANGIBLE", "POWERARMOR_COMPATIBLE" ] + "flags": [ "LIGHT_10", "AURA", "SEMITANGIBLE", "POWERARMOR_COMPATIBLE" ], + "use_action": { "type": "transform", "msg": "You dim your spell until it's dark.", "target": "magic_light_off" } + }, + { + "id": "magic_light_off", + "type": "ARMOR", + "category": "tools", + "name": "magic light (dimmed)", + "description": "A magical aura which you know can be brightened for reading light.", + "weight": "0 kg", + "volume": "0 ml", + "material": "concentrated_mana", + "price": "0 cent", + "symbol": ",", + "color": "light_green", + "flags": [ "AURA", "SEMITANGIBLE", "POWERARMOR_COMPATIBLE" ], + "use_action": { "type": "transform", "msg": "You return your spell to full brightness.", "target": "magic_light" } }, { "id": "shield_ice", @@ -131,7 +148,7 @@ "coverage": 100, "encumbrance": 0, "warmth": 30, - "material_thickness": 3, + "material_thickness": 1, "environmental_protection": 2, "relic_data": { "passive_effects": [ { "has": "WORN", "condition": "ALWAYS", "values": [ { "value": "MOVE_COST", "add": -5 } ] } ] }, "flags": [ "WATERPROOF", "ROLLER_QUAD", "BELTED", "POWERARMOR_COMPATIBLE" ] @@ -187,7 +204,7 @@ { "type": "GENERIC", "id": "stormglove", - "weapon_category": [ "FIST_WEAPONS" ], + "weapon_category": "FIST_WEAPONS", "symbol": "3", "color": "light_gray", "name": { "str": "Stormfist" }, @@ -277,8 +294,8 @@ "flags": [ "UNBREAKABLE_MELEE", "REACH_ATTACK", - "STAB", "SPEAR", + "STAB", "NONCONDUCTIVE", "SHEATH_SPEAR", "ONLY_ONE", @@ -354,7 +371,7 @@ "description": "This fine dust glows with a growing intensity", "weight": "1 g", "volume": "30 ml", - "price": "0 cent", + "price": 0, "symbol": "!", "color": "white", "initial_charges": 15, @@ -368,6 +385,7 @@ "description": "An all-encompassing, invisible layer of magic distorts light around your body. Allows you to dodge two extra attacks in a given turn.", "weight": "1g", "volume": "1ml", + "material": "concentrated_mana", "price": "3646 cent", "symbol": "o", "color": "white", @@ -389,6 +407,7 @@ "type": "ARMOR", "name": { "str": "acid resistance aura" }, "description": "An all-encompassing, invisible layer of protection against acid.", + "material": "concentrated_mana", "weight": "1g", "volume": "1ml", "price": "3646 cent", @@ -414,6 +433,7 @@ "type": "ARMOR", "name": "greater acid resistance aura", "description": "An all-encompassing, invisible layer of protection against acid.", + "material": "concentrated_mana", "weight": "1g", "volume": "1ml", "price": "3646 cent", @@ -472,19 +492,6 @@ "environmental_protection": 2, "flags": [ "ONLY_ONE", "OVERSIZE", "PERSONAL", "STURDY", "POWERARMOR_COMPATIBLE" ] }, - { - "id": "burn_scar", - "type": "effect_type", - "desc": [ "This burn really hurts!" ], - "max_duration": "10 second", - "rating": "bad", - "base_mods": { "pain_amount": [ 20 ] } - }, - { - "id": "ench_overcharge_burn_scar", - "type": "enchantment", - "ench_effects": [ { "effect": "burn_scar", "intensity": 1 } ] - }, { "id": "overcharge_burn_scar", "type": "ARMOR", @@ -503,6 +510,7 @@ "id": "protect_env", "type": "ARMOR", "name": { "str": "aura of protection", "str_pl": "auras of protection" }, + "material": "concentrated_mana", "description": "An all-encompassing, invisible layer of magical aura that protects you from the environment.", "weight": "1 g", "volume": "1 ml", @@ -572,5 +580,29 @@ }, "//": "ITEM_DAMAGE_BIO is not implemented yet, so ITEM_DAMAGE_BASH instead", "bashing": 12 + }, + { + "id": "windrunning_aura", + "type": "ARMOR", + "name": "windrunning aura", + "description": "The wind at your back helping to ease your travel.", + "weight": "1g", + "volume": "1ml", + "material": "concentrated_mana", + "price": "3646 cent", + "symbol": "o", + "color": "light_gray", + "covers": [ "legs", "torso", "arms", "hands", "head", "feet", "mouth", "eyes" ], + "flags": [ + "AURA", + "SEMITANGIBLE", + "OVERSIZE", + "ONLY_ONE", + "TRADER_AVOID", + "NO_TAKEOFF", + "NONCONDUCTIVE", + "POWERARMOR_COMPATIBLE" + ], + "relic_data": { "passive_effects": [ { "id": "ench_windrun" } ] } } ] diff --git a/data/mods/Magiclysm/items/fuel.json b/data/mods/Magical_Nights/items/fuel.json similarity index 60% rename from data/mods/Magiclysm/items/fuel.json rename to data/mods/Magical_Nights/items/fuel.json index 7320e3d93a55..84cf25a5e5aa 100644 --- a/data/mods/Magiclysm/items/fuel.json +++ b/data/mods/Magical_Nights/items/fuel.json @@ -9,7 +9,7 @@ "symbol": "~", "description": "Blood of a dragon, it radiates warmth and looking at it you see moving patterns form and disappear in it as if looking at an actual fire.", "price": "1 kUSD", - "material": [ "flesh" ], + "material": "flesh", "volume": "1 ml", "phase": "liquid", "category": "fuel", @@ -22,40 +22,6 @@ "explosion_data": { "chance_hot": 20, "chance_cold": 1000, "factor": 0.2, "fiery": true, "size_factor": 0.1 } } }, - { - "type": "AMMO", - "id": "tainted_blood", - "name": { "str_sp": "tainted blood" }, - "weight": "2 g", - "color": "black", - "container": "flask_glass", - "symbol": "~", - "description": "Blood from a blob corrupted creature. The surface of this black sludge undulates slowly as if agitated by a soft breeze.", - "price": "0 cent", - "material": [ "flesh" ], - "volume": "1 ml", - "phase": "liquid", - "category": "fuel", - "ammo_type": "tainted_blood", - "fuel": { "energy": 5 } - }, - { - "type": "AMMO", - "id": "blood", - "name": { "str_sp": "blood" }, - "weight": "265 g", - "color": "red", - "container": "flask_glass", - "symbol": "~", - "description": "Blood, possibly that of a human. Disgusting!", - "price": "0 cent", - "material": [ "hflesh" ], - "volume": "250 ml", - "phase": "liquid", - "category": "fuel", - "ammo_type": "blood", - "fuel": { "energy": 1 } - }, { "id": "mana_infused_blood", "type": "COMESTIBLE", diff --git a/data/mods/Magiclysm/items/mana_crystals.json b/data/mods/Magical_Nights/items/mana_crystals.json similarity index 100% rename from data/mods/Magiclysm/items/mana_crystals.json rename to data/mods/Magical_Nights/items/mana_crystals.json diff --git a/data/mods/Magical_Nights/items/materials.json b/data/mods/Magical_Nights/items/materials.json new file mode 100644 index 000000000000..13b24bd257e3 --- /dev/null +++ b/data/mods/Magical_Nights/items/materials.json @@ -0,0 +1,229 @@ +[ + { + "type": "COMESTIBLE", + "id": "raw_owlbear_fur", + "category": "spare_parts", + "name": "raw owlbear pelt", + "weight": "114 g", + "volume": "170 ml", + "color": "brown", + "spoils_in": "1 day 12 hours", + "comestible_type": "FOOD", + "symbol": ",", + "quench": -20, + "healthy": -10, + "calories": 550, + "description": "A carefully folded raw skin harvested from an owlbear. It still has the fur attached. You can cure it for storage and tanning, or eat it if you're desperate enough.", + "price": "330 cent", + "price_postapoc": "1 USD", + "material": [ "fur", "flesh" ], + "flags": [ "NO_SALVAGE", "TRADER_AVOID" ], + "stack_size": 1, + "fun": -24 + }, + { + "type": "GENERIC", + "id": "cured_owlbear_pelt", + "symbol": ",", + "color": "brown", + "name": { "str": "cured owlbear pelt" }, + "description": "A rolled up owlbear hide which has been scraped of extraneous hair and flesh and treated to prevent decay. It could be tanned and transformed into usable fur pelts.", + "price": "2 USD", + "price_postapoc": "0 cent", + "material": [ "fur", "flesh" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "170 ml", + "category": "spare_parts", + "to_hit": -1 + }, + { + "type": "GENERIC", + "id": "owlbear_fur", + "symbol": ",", + "color": "brown", + "name": { "str": "owlbear fur pelt" }, + "description": "A small bolt of fur from an owlbear. Can be used for VERY warm clothing.", + "price": "10 USD", + "price_postapoc": "10 cent", + "material": [ "fur", "leather" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "250 ml", + "category": "spare_parts" + }, + { + "type": "GENERIC", + "id": "dragon_bone", + "looks_like": "bone", + "category": "spare_parts", + "name": { "str": "dragon bone" }, + "weight": "450 g", + "color": "white", + "symbol": "%", + "description": "A bone from a dragon! Even on its own, these bones make an excellent material for weapons. However, something tells you that the bones hide more secrets than just that.", + "price": "0 cent", + "price_postapoc": "50 cent", + "material": "dragon_bone", + "volume": "500 ml" + }, + { + "type": "GENERIC", + "id": "shard_dragon_bone", + "looks_like": "skewer_bone", + "symbol": ",", + "color": "white", + "name": { "str": "dragon bone shard" }, + "description": "A small shard of dragon bone, shaped almost like a shard of porcelain.", + "category": "other", + "material": "dragon_bone", + "flags": [ "NO_SALVAGE", "TRADER_AVOID" ], + "weight": "10 g", + "volume": "25 ml", + "to_hit": -5 + }, + { + "id": "bulette_plate", + "type": "GENERIC", + "symbol": ")", + "color": "light_gray", + "name": "bulette plate", + "description": "The great plates from behind a bulette's head have always been prized for use in shield and armor making.", + "material": "arcane_skin", + "weight": "30 kg", + "volume": "3 L" + }, + { + "type": "GENERIC", + "id": "demon_chitin_piece", + "category": "spare_parts", + "symbol": ",", + "color": "red", + "name": { "str": "chunk of demon chitin", "str_pl": "chunks of demon chitin" }, + "description": "A piece of demon spider exoskeleton. It is light and very durable, and probably has some magical properties.", + "price": "0 cent", + "material": "demon_chitin", + "weight": "89 g", + "volume": "250 ml", + "bashing": 1, + "flags": [ "TRADER_AVOID" ], + "to_hit": -2 + }, + { + "type": "GENERIC", + "id": "demon_chitin_plate", + "category": "spare_parts", + "symbol": "/", + "color": "red", + "name": "demon chitin plate", + "price": "15225 cent", + "material": "demon_chitin", + "weight": "10 kg", + "volume": "4 L", + "bashing": 12, + "to_hit": -4, + "description": "A large piece of demon spider exoskeleton, painstakingly cut from the corpse of an adult demon spider. A plate of this size can be used to create armor plating." + }, + { + "id": "orichalcum_lump", + "type": "AMMO", + "category": "spare_parts", + "name": { "str": "lump of orichalcum", "str_pl": "lumps of orichalcum" }, + "description": "A lump of raw orichalcum. Needs to be reformed into an ingot to be useful.", + "weight": "1000 g", + "volume": "250 ml", + "price": "25 USD", + "bashing": 12, + "to_hit": -4, + "stack_size": 2, + "//": "Density 7.60g/cm³ ~ 1.9kg/250ml @ 1000g/unit ~ stack 2 and formed as a solid ingot so 100% of this", + "material": "orichalcum_metal", + "symbol": ",", + "color": "light_green", + "ammo_type": "components", + "qualities": [ [ "HAMMER", 1 ] ] + }, + { + "id": "orichalcum_sliver", + "type": "AMMO", + "category": "spare_parts", + "name": { "str": "sliver of orichalcum", "str_pl": "slivers of orichalcum" }, + "description": "A sliver of orichalcum broken from a larger piece. Needs to be reformed into an ingot to be useful.", + "weight": "250 g", + "volume": "250 ml", + "price": "10 USD", + "bashing": 8, + "to_hit": -2, + "stack_size": 4, + "//": "Density 7.60g/cm³ ~ 1.9kg/250ml @ 250g/unit ~ stack 8 but mishapen so only 50% of this", + "material": "orichalcum_metal", + "symbol": ",", + "color": "light_green", + "ammo_type": "components", + "qualities": [ [ "CUT", 1 ] ] + }, + { + "id": "orichalcum_ingot", + "type": "GENERIC", + "category": "spare_parts", + "name": "orichalcum ingot", + "description": "An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be used for various blacksmithing tasks.", + "//": "Density the same as steel.", + "weight": "2 kg", + "volume": "253 ml", + "price": "6399 cent", + "bashing": 6, + "to_hit": -3, + "material": "orichalcum_metal", + "symbol": "=", + "color": "light_green" + }, + { + "id": "mercury", + "type": "AMMO", + "category": "spare_parts", + "name": { "str_sp": "liquid mercury" }, + "ammo_type": "mercury", + "description": "Elemental liquid mercury. Known for its use in thermometers.", + "volume": "1 ml", + "phase": "liquid", + "container": "flask_glass", + "color": "light_gray", + "symbol": "~", + "weight": "1356 mg" + }, + { + "id": "mithril_lump", + "type": "AMMO", + "category": "spare_parts", + "name": { "str": "lump of mithril", "str_pl": "lumps of mithril" }, + "description": "A lump of raw mithril. Needs to be reformed into an ingot to be useful.", + "weight": "675 g", + "volume": "250 ml", + "price": "25 USD", + "to_hit": -4, + "stack_size": 2, + "material": [ "mithril_metal" ], + "symbol": ",", + "color": "light_blue", + "ammo_type": "components", + "qualities": [ [ "HAMMER", 1 ] ], + "bashing": 12 + }, + { + "id": "mithril_ingot", + "type": "GENERIC", + "category": "spare_parts", + "name": "mithril ingot", + "description": "An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for various blacksmithing tasks.", + "//": "density of aluminum", + "weight": "683 g", + "volume": "253 ml", + "price": "63 USD 99 cent", + "to_hit": -3, + "material": [ "mithril_metal" ], + "symbol": "=", + "color": "light_blue", + "bashing": 12 + } +] diff --git a/data/mods/Magiclysm/items/melee.json b/data/mods/Magical_Nights/items/melee.json similarity index 69% rename from data/mods/Magiclysm/items/melee.json rename to data/mods/Magical_Nights/items/melee.json index d6f0cea7243d..103b904ac3dc 100644 --- a/data/mods/Magiclysm/items/melee.json +++ b/data/mods/Magical_Nights/items/melee.json @@ -91,7 +91,7 @@ "id": "dbone_longsword", "name": { "str": "dragonbone longsword" }, "description": "A variant of the longsword that is made of dragonbone. This makes for a very powerful blade without sacrificing durability. Even better than orichalcum, and you can sense that this isn't even its final form.", - "material": [ "bone" ], + "material": [ "dragon_bone" ], "proportional": { "cutting": 1.3, "price": 10, "weight": 0.8 }, "color": "white" }, @@ -101,7 +101,7 @@ "id": "dbone_battleaxe", "name": { "str": "dragonbone battleaxe" }, "description": "A variant of the battleaxe that is made of dragonbone. This makes for a very powerful blade without sacrificing durability. Even better than orichalcum, and you can sense that this isn't even its final form.", - "material": [ "bone" ], + "material": [ "dragon_bone" ], "proportional": { "cutting": 1.3, "price": 10, "weight": 0.8 }, "color": "white" }, @@ -111,7 +111,7 @@ "id": "dbone_qiang", "name": { "str": "dragonbone qiang" }, "description": "A variant of the qiang that is made of dragonbone. This makes for a very powerful blade without sacrificing durability. Even better than orichalcum, and you can sense that this isn't even its final form.", - "material": [ "bone" ], + "material": [ "dragon_bone" ], "proportional": { "cutting": 1.3, "price": 10, "weight": 0.8 }, "color": "white" }, @@ -121,8 +121,58 @@ "id": "dbone_tachi", "name": { "str": "dragonbone tachi" }, "description": "A variant of the tachi that is made of dragonbone. This makes for a very powerful blade without sacrificing durability. Even better than orichalcum, and you can sense that this isn't even its final form.", - "material": [ "bone" ], + "material": [ "dragon_bone" ], "proportional": { "cutting": 1.3, "price": 10, "weight": 0.8 }, "color": "white" + }, + { + "copy-from": "warhammer", + "type": "TOOL", + "id": "gaul_maraz", + "name": { "str": "Gaul Maraz" }, + "description": "An impressively ornate golden warhammer with a sapphire and a ruby embedded within. The engraved words on it appear to be in some strange mix of ancient French and German. You can sense a faint magic aura being emitted by it, and picking up the weapon gives you the distinct impression that there's even more power within laying dormant. If only you could harness that power and awaken it once more…", + "material": [ "orichalcum_metal" ], + "proportional": { "bashing": 1.4, "price": 15, "weight": 1.05 }, + "color": "yellow" + }, + { + "copy-from": "dbone_longsword", + "type": "TOOL", + "id": "black_dbone_longsword", + "name": { "str": "acid-infused dragonbone longsword" }, + "description": "A variant of the longsword that is made of dragonbone, now with the acidic ire of a black dragon imbued within.", + "proportional": { "cutting": 1.2, "price": 10 }, + "extend": { "flags": [ "ACIDIC" ] }, + "color": "green" + }, + { + "copy-from": "dbone_battleaxe", + "type": "TOOL", + "id": "black_dbone_battleaxe", + "name": { "str": "acid-infused dragonbone battleaxe" }, + "description": "A variant of the battleaxe that is made of dragonbone, now with the acidic ire of a black dragon imbued within.", + "proportional": { "cutting": 1.2, "price": 10 }, + "extend": { "flags": [ "ACIDIC" ] }, + "color": "green" + }, + { + "copy-from": "dbone_qiang", + "type": "TOOL", + "id": "black_dbone_qiang", + "name": { "str": "acid-infused dragonbone qiang" }, + "description": "A variant of the qiang that is made of dragonbone, now with the acidic ire of a black dragon imbued within.", + "proportional": { "cutting": 1.2, "price": 10 }, + "extend": { "flags": [ "ACIDIC" ] }, + "color": "green" + }, + { + "copy-from": "dbone_tachi", + "type": "TOOL", + "id": "black_dbone_tachi", + "name": { "str": "acid-infused dragonbone tachi" }, + "description": "A variant of the tachi that is made of dragonbone, now with the acidic ire of a black dragon imbued within.", + "proportional": { "cutting": 1.2, "price": 10 }, + "extend": { "flags": [ "ACIDIC" ] }, + "color": "green" } ] diff --git a/data/mods/Magiclysm/items/weapons.json b/data/mods/Magical_Nights/items/monster_weapons.json similarity index 94% rename from data/mods/Magiclysm/items/weapons.json rename to data/mods/Magical_Nights/items/monster_weapons.json index f06470b1217e..2f23fe559e87 100644 --- a/data/mods/Magiclysm/items/weapons.json +++ b/data/mods/Magical_Nights/items/monster_weapons.json @@ -25,7 +25,7 @@ "techniques": [ "WBLOCK_2", "DEF_DISARM", "IMPALE" ], "volume": "3 L", "cutting": 29, - "flags": [ "STAB", "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "DURABLE_MELEE", "SHEATH_SPEAR" ], + "flags": [ "SPEAR", "STAB", "REACH_ATTACK", "NONCONDUCTIVE", "DURABLE_MELEE", "SHEATH_SPEAR" ], "price": "150 USD" }, { @@ -42,8 +42,6 @@ }, { "id": "lizardfolk_javelin_gun", - "//": "For sound messages", - "weapon_category": [ "ELASTIC" ], "type": "GUN", "copy-from": "fake_item", "name": { "str": "barbed javelin" }, diff --git a/data/mods/Magiclysm/items/mutagen.json b/data/mods/Magical_Nights/items/mutagen.json similarity index 100% rename from data/mods/Magiclysm/items/mutagen.json rename to data/mods/Magical_Nights/items/mutagen.json diff --git a/data/mods/Magical_Nights/items/necromancy.json b/data/mods/Magical_Nights/items/necromancy.json new file mode 100644 index 000000000000..87c29e0cf787 --- /dev/null +++ b/data/mods/Magical_Nights/items/necromancy.json @@ -0,0 +1,38 @@ +[ + { + "id": "animist_doll_zombie", + "name": "zombie voodoo doll", + "description": "A remarkably accurate effigy of an undead human, including pieces of bone and organs. Necromantic magic delays immediate rot, but it won't last forever. Piercing it with the attached needle could compel it to serve you.", + "use_action": { "type": "cast_spell", "spell_id": "summon_zombie", "no_fail": true, "level": 12 }, + "type": "COMESTIBLE", + "comestible_type": "FOOD", + "category": "weapons", + "material": [ "leather", "flesh", "bone" ], + "weight": "225 g", + "volume": "700ml", + "symbol": "t", + "color": "pink", + "stack_size": 1, + "spoils_in": "4 days", + "flags": [ "TRADER_AVOID", "INEDIBLE", "NUTRIENT_OVERRIDE" ] + }, + { + "id": "animist_doll_skeleton", + "name": "ossified voodoo doll", + "description": "A remarkably accurate effigy of an undead human covered with bone, including pieces of organs. Necromantic magic delays immediate rot, but it won't last forever. Piercing it with the attached needle could compel it to serve you.", + "use_action": { "type": "cast_spell", "spell_id": "summon_skeleton", "no_fail": true, "level": 10 }, + "type": "COMESTIBLE", + "category": "weapons", + "copy-from": "animist_doll_zombie" + }, + { + "id": "animist_doll_decayed_pouncer", + "name": "cougar voodoo doll", + "description": "A remarkably accurate effigy of an undead cougar, complete with fur, bones, and organs. Necromantic magic delays immediate rot, but it won't last forever. Piercing it with the attached needle could compel it to serve you.", + "use_action": { "type": "cast_spell", "spell_id": "summon_decayed_pouncer", "no_fail": true, "level": 13 }, + "type": "COMESTIBLE", + "category": "weapons", + "material": [ "fur", "flesh", "bone" ], + "copy-from": "animist_doll_skeleton" + } +] diff --git a/data/mods/Magiclysm/items/obsolete.json b/data/mods/Magical_Nights/items/obsolete.json similarity index 83% rename from data/mods/Magiclysm/items/obsolete.json rename to data/mods/Magical_Nights/items/obsolete.json index 64b529a29f72..982dc85eb7ea 100644 --- a/data/mods/Magiclysm/items/obsolete.json +++ b/data/mods/Magical_Nights/items/obsolete.json @@ -36,5 +36,15 @@ "use_action": { "type": "cast_spell", "spell_id": "magic_missile", "no_fail": true, "level": 10, "need_wielding": true }, "magazines": [ [ "crystallized_mana", [ "small_mana_crystal" ] ] ], "magazine_well": "250 ml" + }, + { + "id": "bio_fuel_cell_blood", + "copy-from": "bionic_general", + "type": "BIONIC_ITEM", + "name": { "str": "OBSOLETE! Blood Power Generator CBM" }, + "description": "OBSOLETE ITEM! Only exists for save integrity", + "price": "4500 USD", + "weight": "500 g", + "difficulty": 8 } ] diff --git a/data/mods/Magiclysm/items/cast_spell_items.json b/data/mods/Magical_Nights/items/potions.json similarity index 70% rename from data/mods/Magiclysm/items/cast_spell_items.json rename to data/mods/Magical_Nights/items/potions.json index 86536bf26e9f..59fda53c8a60 100644 --- a/data/mods/Magiclysm/items/cast_spell_items.json +++ b/data/mods/Magical_Nights/items/potions.json @@ -80,44 +80,6 @@ "type": "COMESTIBLE", "copy-from": "cats_grace_potion" }, - { - "id": "animist_doll_zombie", - "name": "zombie voodoo doll", - "description": "A remarkably accurate effigy of an undead human, including pieces of bone and organs. Necromantic magic delays immediate rot, but it won't last forever. Piercing it with the attached needle could compel it to serve you.", - "use_action": { "type": "cast_spell", "spell_id": "summon_zombie", "no_fail": true, "level": 12 }, - "type": "COMESTIBLE", - "comestible_type": "FOOD", - "category": "weapons", - "material": [ "leather", "flesh", "bone" ], - "weight": "225 g", - "volume": "700ml", - "symbol": "t", - "color": "pink", - "stack_size": 1, - "spoils_in": "4 days", - "flags": [ "TRADER_AVOID", "INEDIBLE", "NUTRIENT_OVERRIDE" ], - "vitamins": [ [ "meat_allergen", 1 ] ] - }, - { - "id": "animist_doll_skeleton", - "name": "ossified voodoo doll", - "description": "A remarkably accurate effigy of an undead human covered with bone, including pieces of organs. Necromantic magic delays immediate rot, but it won't last forever. Piercing it with the attached needle could compel it to serve you.", - "use_action": { "type": "cast_spell", "spell_id": "summon_skeleton", "no_fail": true, "level": 10 }, - "type": "COMESTIBLE", - "category": "weapons", - "copy-from": "animist_doll_zombie" - }, - { - "id": "animist_doll_decayed_pouncer", - "name": "cougar voodoo doll", - "description": "A remarkably accurate effigy of an undead cougar, complete with fur, bones, and organs. Necromantic magic delays immediate rot, but it won't last forever. Piercing it with the attached needle could compel it to serve you.", - "use_action": { "type": "cast_spell", "spell_id": "summon_decayed_pouncer", "no_fail": true, "level": 13 }, - "type": "COMESTIBLE", - "category": "weapons", - "material": [ "fur", "flesh", "bone" ], - "copy-from": "animist_doll_skeleton", - "vitamins": [ [ "meat_allergen", 1 ] ] - }, { "id": "twisted_restore_potion", "name": { "str": "potion of Twisted Restoration", "str_pl": "potions of Twisted Restoration" }, diff --git a/data/mods/Magiclysm/items/recipe_books.json b/data/mods/Magical_Nights/items/recipe_books.json similarity index 100% rename from data/mods/Magiclysm/items/recipe_books.json rename to data/mods/Magical_Nights/items/recipe_books.json diff --git a/data/mods/Magiclysm/items/spell_scrolls.json b/data/mods/Magical_Nights/items/spell_scrolls.json similarity index 89% rename from data/mods/Magiclysm/items/spell_scrolls.json rename to data/mods/Magical_Nights/items/spell_scrolls.json index 36a23a4e31ea..b63a682dda6a 100644 --- a/data/mods/Magiclysm/items/spell_scrolls.json +++ b/data/mods/Magical_Nights/items/spell_scrolls.json @@ -4,7 +4,7 @@ "name": { "str": "Spell Scroll" }, "type": "GENERIC", "category": "spellbooks", - "weight": "500 g", + "weight": "475 g", "volume": "500 ml", "price": "40 USD", "material": [ "paper" ], @@ -859,5 +859,104 @@ "name": { "str": "Scroll of Wall of Fog", "str_pl": "Scrolls of Wall of Fog" }, "description": "Draws forth a broad wall of thick fog. While the sudden force of air pressure will floor any enemies caught in it, the conjuration is otherwise harmless.", "use_action": { "type": "learn_spell", "spells": [ "stormshaper_wall_of_fog" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_condense_water", + "//": "Stormshaper spell", + "name": { "str": "Scroll of Condense Water", "str_pl": "Scrolls of Condense Water" }, + "description": "Allows you to condense water from the air around you.", + "use_action": { "type": "learn_spell", "spells": [ "storm_condense_water" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_condense_clean_water", + "//": "Stormshaper spell", + "name": { "str": "Scroll of Condense Clean Water", "str_pl": "Scrolls of Condense Clean Water" }, + "description": "Allows you to condense clean water from the air around you.", + "use_action": { "type": "learn_spell", "spells": [ "storm_condense_clean_water" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_create_acid", + "//": "Biomancer spell", + "name": { "str": "Scroll of Create Hydrochloric Acid", "str_pl": "Scrolls of Create Hydrochloric Acid" }, + "description": "Produces usable Hydrochloric Acid for you.", + "use_action": { "type": "learn_spell", "spells": [ "bio_create_acid" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_summon_lemon", + "//": "Classless spell", + "name": { "str": "Scroll of Summon… Demon(?)", "str_pl": "Scrolls of Summon… Demon(?)" }, + "description": "You can tell this is an authentic magic scroll by all the cursive writing. It does make it a bit hard to read, though…", + "use_action": { "type": "learn_spell", "spells": [ "summon_lemon" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_fire_storm", + "//": "Kelvinist spell", + "name": { "str": "Scroll of Fire Storm", "str_pl": "Scrolls of Fire Storm" }, + "description": "This scroll details how a spell called 'Fireball' which is commonly used among Kelvinists can be altered to become much more powerful, at a much higher mana cost.", + "use_action": { "type": "learn_spell", "spells": [ "fire_storm" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_ice_storm", + "//": "Kelvinist spell", + "name": { "str": "Scroll of Ice Storm", "str_pl": "Scrolls of Ice Storm" }, + "description": "This scroll details how a spell called 'Hoary Blast' which is commonly used among Kelvinists can be altered to become much more powerful, at a much higher mana cost.", + "use_action": { "type": "learn_spell", "spells": [ "ice_storm" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_rock_tomb", + "//": "Earthshaper spell", + "name": { "str": "Scroll of Rock Tomb", "str_pl": "Scrolls of Rock Tomb" }, + "description": "This scroll details how to tear up the ground beneath you to throw a medium boulder.", + "use_action": { "type": "learn_spell", "spells": [ "rock_tomb" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_meteor", + "//": "Earthshaper spell", + "name": { "str": "Scroll of Meteor", "str_pl": "Scrolls of Meteor" }, + "description": "This scroll contains a powerful spell to call down a meteor from high in the sky. With this cataclysm, maybe another dinosaur-killer would be a good thing.", + "use_action": { "type": "learn_spell", "spells": [ "meteor" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_acid_bolt", + "//": "Biomancer spell", + "name": { "str": "Scroll of Acid Bolt", "str_pl": "Scrolls of Acid Bolt" }, + "description": "This scroll details how to throw acid at someone.", + "use_action": { "type": "learn_spell", "spells": [ "acid_bolt" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_acid_bomb", + "//": "Biomancer spell", + "name": { "str": "Scroll of Acid Bomb", "str_pl": "Scrolls of Acid Bomb" }, + "description": "This scroll contains details on how to shape acid into a compressed spherical shape.", + "use_action": { "type": "learn_spell", "spells": [ "acid_bomb" ] } + }, + { + "type": "GENERIC", + "copy-from": "spell_scroll", + "id": "spell_scroll_acid_storm", + "//": "Biomancer spell", + "name": { "str": "Scroll of Acid Storm", "str_pl": "Scrolls of Acid Storm" }, + "description": "This scroll details how a spell called 'Acid Bomb' can be altered to become much more powerful, at a much higher mana cost.", + "use_action": { "type": "learn_spell", "spells": [ "acid_storm" ] } } ] diff --git a/data/mods/Magiclysm/items/spellbooks.json b/data/mods/Magical_Nights/items/spellbooks.json similarity index 80% rename from data/mods/Magiclysm/items/spellbooks.json rename to data/mods/Magical_Nights/items/spellbooks.json index 7a68f7d1b82e..fa200afe8b6b 100644 --- a/data/mods/Magiclysm/items/spellbooks.json +++ b/data/mods/Magical_Nights/items/spellbooks.json @@ -33,7 +33,7 @@ "category": "spellbooks", "name": { "str": "A Beginner's Guide to Magic", "str_pl": "copies of A Beginner's Guide to Magic" }, "//": "2 Magus, 1 classless spell", - "description": "You would describe this as more like a pamphlet than a spellbook, but it seems to have at least one interesting spell you can use.", + "description": "Looks just like a typical pamphlet claiming to teach people magic. Yet, for some reason you can't quite put your finger on, you get the feeling that there's a little more truth than usual to this one…", "weight": "585 g", "volume": "250 ml", "price": "50 USD", @@ -46,14 +46,17 @@ "type": "GENERIC", "category": "spellbooks", "name": { "str": "Wizarding Guide to Backpacking", "str_pl": "copies of Wizarding Guide to Backpacking" }, - "//": "1 Magus, 1 Biomancer, 1, Kelvinist, 1 classless spell", + "//": "1 Magus, 1 Biomancer, 1, Kelvinist, 1 Stormshaper, 1 classless spell", "description": "This appears to be the spell version of a guide for what things to take with you when backpacking. It's a little bulky, but will certainly prove useful.", "weight": "1 kg", "volume": "1250 ml", "price": "350 USD", "symbol": "?", "color": "red", - "use_action": { "type": "learn_spell", "spells": [ "phase_door", "create_lighter", "pain_split", "protection_aura" ] } + "use_action": { + "type": "learn_spell", + "spells": [ "phase_door", "create_lighter", "pain_split", "protection_aura", "storm_condense_water" ] + } }, { "id": "pyro", @@ -62,7 +65,7 @@ "name": { "str": "Pyromancy for Heretics", "str_pl": "copies of Pyromancy for Heretics" }, "//": "4 Kelvinist spells", "description": "This charred husk of a book still contains many ways to light things aflame.", - "weight": "500 g", + "weight": "450 g", "volume": "1 L", "price": "1904 cent", "symbol": "?", @@ -105,7 +108,7 @@ "str": "The Paladin's Guide to Modern Spellcasting", "str_pl": "copies of The Paladin's Guide to Modern Spellcasting" }, - "//": "2 technomancer, 1 animist spells", + "//": " 3 animist spells. Like it SHOULD be.", "description": "Despite the title, this seems to be written in Middle English. A little obtuse, but you can make out most of the words well enough.", "weight": "830 g", "volume": "750 ml", @@ -121,7 +124,7 @@ "name": { "str": "Winter's Eternal Grasp", "str_pl": "copies of Winter's Eternal Grasp" }, "//": "5 Kelvinist spells", "description": "This slim book almost seems to be made from ice, it's cold to the touch.", - "weight": "500 g", + "weight": "450 g", "volume": "1 L", "price": "1904 cent", "symbol": "?", @@ -132,17 +135,26 @@ "id": "tome_of_storms", "type": "GENERIC", "category": "spellbooks", - "//": "6 Stormshaper spells", + "//": "8 Stormshaper spells", "name": { "str": "The Tome of The Oncoming Storm", "str_pl": "copies of The Tome of The Oncoming Storm" }, "description": "A large book embossed with crossed lightning bolts and storm clouds, it tingles to the touch.", - "weight": "400 g", + "weight": "430 g", "volume": "750 ml", "price": "50 USD", "symbol": "?", "color": "light_gray", "use_action": { "type": "learn_spell", - "spells": [ "jolt", "windstrike", "windrun", "storm_hammer", "lightning_bolt", "lightning_blast" ] + "spells": [ + "jolt", + "windstrike", + "windrun", + "storm_hammer", + "lightning_bolt", + "lightning_blast", + "storm_condense_water", + "storm_condense_clean_water" + ] } }, { @@ -151,7 +163,7 @@ "category": "spellbooks", "name": { "str": "Nondescript Spellbook", "str_pl": "copies of Nondescript Spellbook" }, "//": "1 technomancer, 1 earthshaper, 1 classless spell", - "description": "A small book, containing spells created by a novice magician.", + "description": "A small composition notebook, containing spells created by a novice magician.", "weight": "355 g", "volume": "500 ml", "symbol": "?", @@ -165,7 +177,7 @@ "name": { "str": "Of Light and Falsehoods", "str_pl": "copies of Of Light and Falsehoods" }, "//": "3 technomancer, 4 classless spell", "description": "A small white book, it subtly amplifies the ambient light around it.", - "weight": "400 g", + "weight": "430 g", "volume": "750 ml", "price": "50 USD", "symbol": "?", @@ -188,7 +200,7 @@ "type": "GENERIC", "category": "spellbooks", "name": { "str": "The Tome of Flesh", "str_pl": "copies of The Tome of Flesh" }, - "//": "5 Biomancer spells", + "//": "6 Biomancer spells", "description": "A small tome, seemingly covered in tanned human skin.", "weight": "355 g", "volume": "500 ml", @@ -196,7 +208,7 @@ "color": "red", "use_action": { "type": "learn_spell", - "spells": [ "vicious_tentacle", "bio_grotesque", "bio_acidicspray", "bio_fleshpouch", "bio_bonespear" ] + "spells": [ "vicious_tentacle", "bio_grotesque", "bio_acidicspray", "bio_fleshpouch", "bio_bonespear", "bio_create_acid" ] } }, { @@ -235,7 +247,7 @@ "name": { "str": "The Tome of The Battle Mage", "str_pl": "copies of The Tome of The Battle Mage" }, "//": "3 Magus spells", "description": "Your standard wizardy looking spellbook, filled with Magus combat spells. You sure lucked out!", - "weight": "400 g", + "weight": "434 g", "volume": "750 ml", "symbol": "?", "color": "light_gray", @@ -248,7 +260,7 @@ "name": { "str": "The Tome of the Hollow Earth", "str_pl": "copies of The Tome of the Hollow Earth" }, "//": "4 earthshaper spells", "description": "This large dusty spellbook seems perpetually, well, dusty. It contains the power of the earth.", - "weight": "500 g", + "weight": "483 g", "volume": "825 ml", "symbol": "?", "color": "brown", @@ -363,5 +375,58 @@ "symbol": "?", "color": "yellow", "use_action": { "type": "learn_spell", "spells": [ "cats_grace", "ogres_strength", "foxs_cunning", "eagles_sight" ] } + }, + { + "id": "novice_techno_spellbook", + "type": "GENERIC", + "category": "spellbooks", + "name": { "str": "The Novice Technomancer's Spellbook", "str_pl": "copies of The Novice Technomancer's Spellbook" }, + "//": "2 basic technomancer spells", + "description": "A fairly simplistic looking technomancer's spellbook containing just a couple simple technomancy spells.", + "weight": "256 g", + "volume": "500 ml", + "symbol": "?", + "color": "green", + "use_action": { "type": "learn_spell", "spells": [ "synaptic_stimulation", "taze" ] }, + "looks_like": "techno_idiots" + }, + { + "id": "novice_storm_spellbook", + "type": "GENERIC", + "category": "spellbooks", + "name": { "str": "The Novice Stormshaper's Spellbook", "str_pl": "copies of The Novice Stormshaper's Spellbook" }, + "//": "2 basic stormshaper spells", + "description": "A fairly simplistic looking stormshaper's spellbook containing just a couple simple stormshaping spells.", + "weight": "256 g", + "volume": "500 ml", + "symbol": "?", + "color": "blue", + "use_action": { "type": "learn_spell", "spells": [ "windrun", "jolt" ] } + }, + { + "id": "novice_earth_spellbook", + "type": "GENERIC", + "category": "spellbooks", + "name": { "str": "The Novice Earthshaper's Spellbook", "str_pl": "copies of The Novice Earthshaper's Spellbook" }, + "//": "2 basic earthshaper spells", + "description": "A fairly simplistic looking earthshaper's spellbook containing just a couple simple earthshaping spells.", + "weight": "256 g", + "volume": "500 ml", + "symbol": "?", + "color": "brown", + "use_action": { "type": "learn_spell", "spells": [ "stonefist", "eshaper_rockbolt" ] } + }, + { + "id": "novice_kelvin_spellbook", + "type": "GENERIC", + "category": "spellbooks", + "name": { "str": "The Novice Kelvinist's Spellbook", "str_pl": "copies of The Novice Kelvinist's Spellbook" }, + "//": "4 basic kelvinist spells: 2 ice and 2 fire", + "description": "A fairly simplistic looking kelvinist's spellbook containing just a couple simple spells from both fire and ice.", + "weight": "260 g", + "volume": "500 ml", + "symbol": "?", + "color": "light_blue", + "use_action": { "type": "learn_spell", "spells": [ "chilling_touch", "glide_ice", "create_lighter", "point_flare" ] } } ] diff --git a/data/mods/Magiclysm/items/tools.json b/data/mods/Magical_Nights/items/tools.json similarity index 71% rename from data/mods/Magiclysm/items/tools.json rename to data/mods/Magical_Nights/items/tools.json index 97db50ea1df6..6b4a91dc2c05 100644 --- a/data/mods/Magiclysm/items/tools.json +++ b/data/mods/Magical_Nights/items/tools.json @@ -7,7 +7,7 @@ "description": "This cauldron made of demon spider chitin seems to absorb the light. It will hold 16 liters of material and will absorb poisons from it. It may have other properties that require discovery.", "weight": "1424 g", "volume": "20 L", - "price": "20 USD", + "price": 2000, "to_hit": -1, "looks_like": "clay_hydria", "bashing": 1, @@ -53,6 +53,43 @@ "volume": "1 L", "bashing": 4 }, + { + "id": "copper_infuser", + "copy-from": "copper_bracelet", + "type": "ARMOR", + "qualities": [ [ "MANA_INFUSE", 1 ] ], + "name": { "str": "copper infusion bracelet" }, + "description": "This bracelet has runes engraved on it. You sense a faint air of mysticism when you look at it. It would be useful for imbuing mana into material." + }, + { + "id": "silver_infuser", + "copy-from": "silver_bracelet", + "type": "ARMOR", + "qualities": [ [ "MANA_INFUSE", 2 ] ], + "name": { "str": "silver infusion bracelet" }, + "description": "This bracelet has runes engraved on it. You sense a faint air of mysticism when you look at it. It would be useful for imbuing mana into material." + }, + { + "id": "copper_circlet", + "type": "ARMOR", + "category": "armor", + "name": { "str": "copper circlet" }, + "description": "A wooden band with copper trimmings to be worn on the head. Touching your temples with it on makes you feel very calm.", + "weight": "700 g", + "volume": "600ml", + "price": "15 USD", + "price_postapoc": "1 USD", + "material": [ "copper", "wood" ], + "symbol": "[", + "color": "brown", + "covers": [ "head" ], + "coverage": 5, + "encumbrance": 1, + "warmth": 0, + "material_thickness": 1, + "flags": [ "SKINTIGHT", "ONLY_ONE", "COMPACT", "POWERARMOR_COMPATIBLE" ], + "qualities": [ [ "MANA_FOCUS", 1 ] ] + }, { "id": "sewing_kit", "name": "sewing kit", @@ -100,7 +137,6 @@ "kevlar", "neoprene", "gutskin", - "scute", "black_dragon_hide", "demon_chitin" ], @@ -123,24 +159,18 @@ "neoprene", "gutskin", "plastic", - "kevlar_rigid", - "scute", - "black_dragon_hide", - "demon_chitin" + "kevlar_rigid" ], "skill": "tailor", "clothing_mods": [ "leather_padded", "steel_padded", - "alloy_padded", "kevlar_padded", - "nomex_padded", "furred", "wooled", - "resized_large", - "pocketed", "owlbear_furred", - "demonchitin_padded" + "demonchitin_padded", + "blackdragon_coated" ] } ] diff --git a/data/mods/Magiclysm/items/vehicle/frames.json b/data/mods/Magical_Nights/items/vehicle/frames.json similarity index 100% rename from data/mods/Magiclysm/items/vehicle/frames.json rename to data/mods/Magical_Nights/items/vehicle/frames.json diff --git a/data/mods/Magiclysm/items/vehicle_parts.json b/data/mods/Magical_Nights/items/vehicle/vehicle_parts.json similarity index 100% rename from data/mods/Magiclysm/items/vehicle_parts.json rename to data/mods/Magical_Nights/items/vehicle/vehicle_parts.json diff --git a/data/mods/Magical_Nights/lore.md b/data/mods/Magical_Nights/lore.md new file mode 100644 index 000000000000..80deec470f09 --- /dev/null +++ b/data/mods/Magical_Nights/lore.md @@ -0,0 +1,35 @@ +# History +Magic has been around for longer than written word, though of course it was a major boon to it. Magic, to an extent, even predates language itself. However, naturally, it was only with the development of language that magic began to refine itself past its most base levels. + +Throughout much of ancient history, magic was present and powerful. The ancient Greeks oft saw magic all around them, and not just metaphorically. The term magic itself, alongside the idea of mages, comes from Latin. The ancient Sumerians had their rituals, and so did the Egyptians. Japan has its many Kamis and yokai, China has its Wuism. Magic was everywhere. + +However, there is of course one major period that one thinks of when they think of magic. Unfortunately, this was also the last great period of magic historically. The Medeival Era was one of the greatest heights that magic reached, and yet also the great Cataclysmic downfall of it. It contains such wonderous figures as Merlin himself, and it is the time period that so many stories about our art take place in. Magic was capable of accomplishing so much. Yet the end of the Middle Ages also brought with it the end of widespread magic. Persecution against our art reached new heights. The Church condemned us, brought on the witch hunts. So much was lost, including the strength of magic itself. Any surviving mages either went in seclusion themselves, or hid their practicing of the arts carefully. However, the stronger of them felt the very strength of magic slipping away and waning. + +Following the medieval era, magic was a pale ghost of its former self. With mages being so secretive, advancements came slower than had been seen in centuries. What could once be accomplished with ease now took immense strength and control over mana. The New World, it was hoped, might finally bring freedom and safety from persecution. In a land of new opportunities, surely there would be new opportunities for magic users! + +Our hopes were brutally smashed against a rock, then set alight while they were gasping due to their collapsed lungs, and then tossed in a hole to suffer and wish for death to take them already while crows pecked at their eyes and dogs gnawed at what remained of their flesh. + +Yet, once the dust had settled from Salem, some brave souls remained despite the deaths of their peers. Some came over on the ships carrying filthy masses from the Old to the New. Our hopes would not come to fruition for a couple centuries, but we were more than willing to wait. Especially those of us who had seen what the world was like a few centuries ago. + +In the modern era, we have finally in a sense achieved our goal. The smolder of the Church has long since cooled to less menacing embers. More importantly, the Neopagans have revived many of the long-dead and dormant traditions, though naturally with their own flair and some misconceptions/innacuracies from filling in the spots that were burned out. There has been a sort of resurgence of practicing magic amongst some, namely the Wiccans. Especially important is the fact that the Church simply hasn't as much a sway over the common people's lives as it once held, especially given the rise of non-believers. + +Now, we come to present-day. Something has gone royally wrong with the veil between worlds. Demons and netherspawn certainly came across in the olden days, but not in **these numbers**. *Something* has infected and taken over a majority of humans. Fortunately, this world is not entirely lost. For with this apparent tearing of the veil, **an incredible resurgence of the magic itself has arisen!** Magic has returned in all of its glory, leaving any who has the potential with a very powerful tool to defend themselves against the horrors of this world. Including the appearance of magical fauna once thought extinct, or merely fantastical. Only time will tell whether this is a sign of a new golden age of magic, but I certainly hope it is. + +# Practice + +The ability to practice magic has always been uncommon. Even during the Middle Ages, it was impressive and uncommon to have any real ability for magic. A truly powerful mage, rather than a hedge mage, was something a family was proud of. Mages were very often highly respected members of society, whether they were awed or feared. Mages have only gotten rarer, though there seemed to be a bit of an uptick around the time of Neopagan revivals. + +Magic practitioners were and still are often divided into distinct classes and schools. Especially in the olden times, many mages specialized in but a single school of magic. However, as time has gone on magic users have gotten to be more and more jack-of-all-trades in their repetoires. It is notable, however, that naturally the lesser in ability a mage was, the more likely they were to not specialize in a single school. Jack-of-all-trades being a master of none is irrelevant when one couldn't be a master of anything anyway. Better to be well-rounded in your lesser spells when they are all you can learn. + +Naturally, mages desired companionship by other mages, especially so following persecution. Druid Circles and Covens are natural examples, of course. These groups also often helped contribute to magical advancements that would simply be infeasible to be made on one's own. And, of course, for casting certain spells. + +### Class Characteristics + +- Magus: Force and Waves. This can be described as Time, Light, Gravity, and Force. Magus spells are the most versatile of the classes, and it also usually has the more difficult to learn spells. +- Animist: Spirits. As Magus is the physical universe, animist is the metaphysical. Usually misunderstood and as such has a bit of a stigma throughout history as necromancers. This class also features blood magic, which is another reason it has a stigma. +- Kelvinist: Heat and Cold spells. Can also produce light to a lesser degree. +- Stormshaper: Wind, weather, and electricity. Most of these spells are really loud. +- Technomancer: Invention. This usually manifests as spells that summon arms and armor, holograms, tools, and buffs that focus on the human condition. The Technomancer rune is also uniquely versatile, allowing for much wider ability for magic to work with mundane inventions. Technomancer became a lot more popular with the invention of electricity, as it has a finer control of electricity than stormshaper, though it does not have the power. +- Earthshaper: Stone, dirt, geography, things to do with the earth. The spells often focus on melee and defense. Lava is a high-tier earthshaper thing as well. This class features spells that use stamina as their energy source. +- Biomancer: Flesh mage. Manipulating the caster's flesh is easier but higher tier spells can manipulate others' flesh. Features Acid. +- Druid: Plant mage. Communes with nature. The typical "druid" of old is usually a combination of this class and Earthshaper. Has a slight secondary affinity with water. diff --git a/data/mods/Magiclysm/magic_balance.md b/data/mods/Magical_Nights/magic_balance.md similarity index 100% rename from data/mods/Magiclysm/magic_balance.md rename to data/mods/Magical_Nights/magic_balance.md diff --git a/data/mods/Magiclysm/martialarts.json b/data/mods/Magical_Nights/martialarts.json similarity index 100% rename from data/mods/Magiclysm/martialarts.json rename to data/mods/Magical_Nights/martialarts.json diff --git a/data/mods/Magiclysm/materials.json b/data/mods/Magical_Nights/materials.json similarity index 71% rename from data/mods/Magiclysm/materials.json rename to data/mods/Magical_Nights/materials.json index dcaf192110b4..c93ec0196645 100644 --- a/data/mods/Magiclysm/materials.json +++ b/data/mods/Magical_Nights/materials.json @@ -104,5 +104,48 @@ "dmg_adj": [ "scratched", "cut", "shredded", "tattered" ], "bash_dmg_verb": "ripped", "cut_dmg_verb": "sliced" + }, + { + "type": "material", + "id": "dragon_bone", + "name": "Dragon Bone", + "density": 7, + "specific_heat_liquid": 1.2, + "specific_heat_solid": 1.2, + "latent_heat": 200, + "reinforces": true, + "bash_resist": 12, + "cut_resist": 14, + "bullet_resist": 12, + "acid_resist": 10, + "fire_resist": 8, + "elec_resist": 2, + "chip_resist": 10, + "wind_resist": 90, + "repaired_with": "dragon_bone", + "salvaged_into": "shard_dragon_bone", + "dmg_adj": [ "scratched", "cut", "cracked", "shattered" ], + "bash_dmg_verb": "cracked", + "cut_dmg_verb": "chipped" + }, + { + "type": "material", + "id": "mithril_metal", + "name": "Mithril", + "density": 13, + "specific_heat_liquid": 0.82, + "specific_heat_solid": 0.45, + "latent_heat": 273, + "chip_resist": 40, + "repaired_with": "mithril_ingot", + "dmg_adj": [ "marked", "dented", "smashed", "shattered" ], + "bash_dmg_verb": "dented", + "cut_dmg_verb": "scratched", + "bash_resist": 13, + "cut_resist": 20, + "acid_resist": 10, + "fire_resist": 10, + "bullet_resist": 16, + "elec_resist": 10 } ] diff --git a/data/mods/Magical_Nights/mod_tileset.json b/data/mods/Magical_Nights/mod_tileset.json new file mode 100644 index 000000000000..0c04e68c8f2f --- /dev/null +++ b/data/mods/Magical_Nights/mod_tileset.json @@ -0,0 +1,1478 @@ +[ + { + "type": "mod_tileset", + "compatibility": [ "UNDEAD_PEOPLE_BASE", "UNDEAD_PEOPLE", "MshockRealXotto", "MSX++DEAD_PEOPLE" ], + "tiles-new": [ + { + "file": "MagicalNights_Misc.png", + "tiles": [ + { "id": "bg_shadow_frog", "fg": 1, "rotates": false }, + { "id": "bg_shadow_goblin", "fg": 2, "rotates": false }, + { "id": "bg_shadow_item", "fg": 3, "rotates": false }, + { "id": "bg_shadow_normal", "fg": 4, "rotates": false }, + { "id": "overlay_mutation_bio_sneeze_beam", "fg": 5, "rotates": false }, + { "id": "overlay_mutation_DRAGON_FEET", "fg": 6 }, + { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 7 }, + { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 8 }, + { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 9 }, + { "id": "overlay_mutation_DRAGON_TAIL", "fg": 10 }, + { "id": "overlay_mutation_DRAGON_TAIL_SCALED", "fg": 11 }, + { "id": "overlay_mutation_DRAGON_TALONS_BLACK", "fg": 12, "rotates": false }, + { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 13 }, + { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 14 }, + { "id": "overlay_mutation_SCALED_HANDS", "fg": 15, "rotates": false }, + { "id": "f_null", "fg": 16, "rotates": false }, + { "id": "mon_null", "fg": 16, "rotates": false }, + { "id": "null", "fg": 16, "rotates": false }, + { "id": "t_null", "fg": 16, "rotates": false }, + { "id": "vp_null", "fg": 16, "rotates": false }, + { "id": "fd_clairvoyant", "fg": 16, "rotates": false }, + { "id": "fd_darkness", "fg": 16, "rotates": false }, + { "id": "fd_fright", "fg": 16, "rotates": false }, + { "id": "fd_vault_atmosphere", "fg": 16, "rotates": false }, + { "id": "soul_burn_item", "fg": 16, "rotates": false }, + { + "id": "vp_folding_orichalcum_frame", + "fg": 17, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 18 } ] + }, + { + "id": "vp_frame_orichalcum_cover", + "fg": 19, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 20 } ] + }, + { + "id": "vp_frame_orichalcum_cross", + "fg": 21, + "rotates": true, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 22 } ] + }, + { + "id": "vp_frame_orichalcum_horizontal", + "fg": 23, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 24 } ] + }, + { + "id": "vp_frame_orichalcum_horizontal_2", + "fg": 25, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 26 } ] + }, + { + "id": "vp_frame_orichalcum_ne", + "fg": 27, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 28 } ] + }, + { + "id": "vp_frame_orichalcum_nw", + "fg": 29, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 30 } ] + }, + { + "id": "vp_frame_orichalcum_se", + "fg": 31, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 32 } ] + }, + { + "id": "vp_frame_orichalcum_sw", + "fg": 33, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 34 } ] + }, + { + "id": "vp_frame_orichalcum_vertical", + "fg": 35, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 36 } ] + }, + { + "id": "vp_frame_orichalcum_vertical_2", + "fg": 37, + "rotates": false, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 38 } ] + } + ], + "//": "range 1 to 256", + "sprite_width": 32, + "sprite_height": 32, + "sprite_offset_x": 0, + "sprite_offset_y": 0 + }, + { + "file": "MagicalNights_Tiles.png", + "tiles": [ + { + "id": "t_dirtfloor", + "fg": [ + { "weight": 1, "sprite": 258 }, + { "weight": 1, "sprite": 259 }, + { "weight": 1, "sprite": 260 }, + { "weight": 1, "sprite": 261 }, + { "weight": 1, "sprite": 262 } + ], + "rotates": false + }, + { "id": "f_altar", "fg": 263, "rotates": false }, + { "id": "f_attunement_altar", "fg": 264, "rotates": false }, + { "id": "f_demon_forge", "fg": 265 }, + { "id": "f_magiclysm_translocator_gate", "fg": 266 }, + { + "id": "f_magic_bench", + "fg": 267, + "rotates": true, + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 268 }, + { "id": "corner", "fg": [ 269, 270, 271, 272 ] }, + { "id": "edge", "fg": [ 273, 274 ] }, + { "id": "end_piece", "fg": [ 275, 276, 277, 278 ] }, + { "id": "t_connection", "fg": [ 279, 280, 281, 282 ] }, + { "id": "unconnected", "fg": [ 283, 283, 283, 283 ] } + ] + }, + { "id": "f_magic_circle", "fg": 284, "rotates": false }, + { + "id": [ + "attunement_altar_NW", + "attunement_altar_NE", + "attunement_altar_SW", + "attunement_altar_SE", + "attunement_altar_NW_roof", + "attunement_altar_NE_roof", + "attunement_altar_SW_roof", + "attunement_altar_SE_roof" + ], + "fg": 285, + "rotates": false + }, + { + "id": [ "black_dragon_lair_z-0_NW", "black_dragon_lair_z-0_NE", "black_dragon_lair_z-0_SW", "black_dragon_lair_z-0_SE" ], + "fg": 286, + "rotates": false + }, + { + "id": [ + "black_dragon_lair_z-1_NW", + "black_dragon_lair_z-1_NE", + "black_dragon_lair_z-1_SW", + "black_dragon_lair_z-1_SE", + "black_dragon_lair_z-2_NW", + "black_dragon_lair_z-2_NE", + "black_dragon_lair_z-2_SW", + "black_dragon_lair_z-2_SE", + "black_dragon_lair_z-3_NW", + "black_dragon_lair_z-3_NE", + "black_dragon_lair_z-3_SW", + "black_dragon_lair_z-3_SE", + "black_dragon_lair_z-4_NW", + "black_dragon_lair_z-4_NE", + "black_dragon_lair_z-4_SW", + "black_dragon_lair_z-4_SE" + ], + "fg": 287, + "rotates": false + }, + { "id": [ "demon_spider_lair" ], "fg": 288, "rotates": false }, + { "id": [ "forest_tomb", "forest_tomb_roof" ], "fg": 289, "rotates": false }, + { "id": [ "forest_tomb_bottom" ], "fg": 290, "rotates": false }, + { + "id": [ + "forge_1A", + "forge_2A", + "forge_3A", + "forge_4A", + "forge_5A", + "forge_1B", + "forge_2B", + "forge_3B", + "forge_4B", + "forge_5B" + ], + "fg": 291, + "rotates": false + }, + { "id": [ "goblin_camp" ], "fg": 292, "rotates": false }, + { "id": [ "magic_cabin" ], "fg": 293, "rotates": false }, + { "id": [ "magic_shop", "magic_shop_2ndfloor", "magic_shop_roof" ], "fg": 294, "rotates": false }, + { "id": [ "orc_camp" ], "fg": 295, "rotates": false }, + { "id": "wizardtower1_ground", "fg": 296, "rotates": false }, + { + "id": "t_dirt_barren", + "fg": [ + { "weight": 40, "sprite": 297 }, + { "weight": 40, "sprite": 298 }, + { "weight": 40, "sprite": 299 }, + { "weight": 40, "sprite": 300 }, + { "weight": 1, "sprite": 301 } + ], + "rotates": false + }, + { "id": "t_magiconc_floor", "fg": 302, "rotates": false }, + { "id": "t_webbed_corpse", "fg": 303, "rotates": false }, + { + "id": "t_demon_web_wall", + "fg": 304, + "bg": 257, + "rotates": true, + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 305, "bg": 257 }, + { "id": "corner", "fg": [ 306, 307, 308, 309 ], "bg": 257 }, + { "id": "edge", "fg": [ 310, 311 ], "bg": 257 }, + { "id": "end_piece", "fg": [ 312, 313, 314, 315 ], "bg": 257 }, + { "id": "t_connection", "fg": [ 316, 317, 318, 319 ], "bg": 257 }, + { "id": "unconnected", "fg": 320, "bg": 257 } + ] + }, + { "id": "tr_magic_door", "fg": 321, "rotates": false }, + { "id": "tr_bear", "fg": 322, "rotates": false }, + { "id": "tr_forge_vault", "fg": 323, "rotates": false } + ], + "//": "range 257 to 512", + "sprite_width": 32, + "sprite_height": 32, + "sprite_offset_x": 0, + "sprite_offset_y": 0 + }, + { + "file": "MagicalNights_Items.png", + "tiles": [ + { "id": "bio_fuel_cell_blood", "fg": 513, "bg": 3, "rotates": false }, + { "id": "overlay_wielded_bio_fuel_cell_blood", "fg": 513, "rotates": false }, + { "id": "bio_sneeze_beam", "fg": 514, "bg": 3, "rotates": false }, + { "id": "overlay_wielded_bio_sneeze_beam", "fg": 514, "rotates": false }, + { "id": "adrenal_gland_large", "fg": 515, "rotates": false }, + { "id": "overlay_wielded_adrenal_gland_large", "fg": 515, "rotates": false }, + { "id": "alumentum", "fg": 516, "rotates": false }, + { "id": "overlay_wielded_alumentum", "fg": 516, "rotates": false }, + { "id": "bulette_pearl", "fg": 517, "rotates": false }, + { "id": "overlay_wielded_bulette_pearl", "fg": 517, "rotates": false }, + { "id": "bulette_plate", "fg": 518, "rotates": false }, + { "id": "overlay_wielded_bulette_plate", "fg": 518, "rotates": false }, + { "id": "vp_bulette_plate", "fg": 519, "rotates": false }, + { "id": "copper_circlet", "fg": 520, "rotates": false }, + { "id": "overlay_wielded_copper_circlet", "fg": 520, "rotates": false }, + { "id": "overlay_worn_copper_circlet", "fg": 521, "rotates": false }, + { "id": "copper_infuser", "fg": 522, "rotates": false }, + { "id": "overlay_wielded_copper_infuser", "fg": 522, "rotates": false }, + { "id": "overlay_worn_copper_infuser", "fg": 523, "rotates": false }, + { "id": "demon_chitin_piece", "fg": 524, "rotates": false }, + { "id": "overlay_wielded_demon_chitin_piece", "fg": 524, "rotates": false }, + { "id": "demon_chitin_plate", "fg": 525, "rotates": false }, + { "id": "overlay_wielded_demon_chitin_plate", "fg": 525, "rotates": false }, + { "id": "demon_spider_fang", "fg": 526, "rotates": false }, + { "id": "overlay_wielded_demon_spider_fang", "fg": 526, "rotates": false }, + { "id": "dragon_essence", "fg": 527, "rotates": false }, + { "id": "overlay_wielded_dragon_essence", "fg": 527, "rotates": false }, + { "id": "glow_dust", "fg": 528 }, + { "id": "overlay_wielded_glow_dust", "fg": 528 }, + { "id": "glow_light", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_glow_light", "fg": 529, "rotates": false }, + { "id": "glow_light_off", "fg": 530, "rotates": false }, + { "id": "overlay_wielded_glow_light_off", "fg": 530, "rotates": false }, + { "id": "overlay_wielded_owlbear_stone", "fg": 531 }, + { "id": "owlbear_stone", "fg": 531 }, + { "id": "overlay_wielded_potion_starter", "fg": 532 }, + { "id": "potion_starter", "fg": 532 }, + { "id": "overlay_wielded_silver_infuser", "fg": 533, "rotates": false }, + { "id": "silver_infuser", "fg": 533, "rotates": false }, + { "id": "overlay_worn_silver_infuser", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_stirge_proboscis", "fg": 535, "rotates": false }, + { "id": "stirge_proboscis", "fg": 535, "rotates": false }, + { "id": "overlay_wielded_stone_shell", "fg": 536 }, + { "id": "stone_shell", "fg": 536 }, + { "id": "blood", "fg": 537, "rotates": false }, + { "id": "overlay_wielded_blood", "fg": 537, "rotates": false }, + { "id": "dragon_blood", "fg": 538, "rotates": false }, + { "id": "overlay_wielded_dragon_blood", "fg": 538, "rotates": false }, + { "id": "overlay_wielded_tainted_blood", "fg": 539, "rotates": false }, + { "id": "tainted_blood", "fg": 539, "rotates": false }, + { "id": "arrow_odin", "fg": 540, "rotates": false }, + { "id": "overlay_wielded_arrow_odin", "fg": 540, "rotates": false }, + { "id": "ichaival", "fg": 541, "rotates": false }, + { "id": "overlay_wielded_ichaival", "fg": 542, "rotates": false }, + { "id": "overlay_wielded_quiver", "fg": 543, "rotates": false }, + { "id": "quiver", "fg": 543, "bg": 3, "rotates": false }, + { "id": "overlay_worn_quiver", "fg": 544, "rotates": false }, + { "id": "overlay_wielded_quiver_birchbark", "fg": 545, "rotates": false }, + { "id": "quiver_birchbark", "fg": 545, "bg": 3, "rotates": false }, + { "id": "overlay_worn_quiver_birchbark", "fg": 546, "rotates": false }, + { "id": "overlay_wielded_quiver_large_birchbark", "fg": 547, "rotates": false }, + { "id": "quiver_large_birchbark", "fg": 547, "bg": 3, "rotates": false }, + { "id": "overlay_worn_quiver_large_birchbark", "fg": 548, "rotates": false }, + { "id": "black_dragon_hide_raw", "fg": 549, "rotates": false }, + { "id": "overlay_wielded_black_dragon_hide_raw", "fg": 549, "rotates": false }, + { "id": "black_dragon_tanned_hide", "fg": 550, "rotates": false }, + { "id": "overlay_wielded_black_dragon_tanned_hide", "fg": 550, "rotates": false }, + { "id": "black_dragon_tanning_hide", "fg": 551, "rotates": false }, + { "id": "overlay_wielded_black_dragon_tanning_hide", "fg": 551, "rotates": false }, + { "id": "boots_black_dragon_hide", "fg": 552, "rotates": false }, + { "id": "overlay_wielded_boots_black_dragon_hide", "fg": 552, "rotates": false }, + { "id": "overlay_worn_boots_black_dragon_hide", "fg": 553, "rotates": false }, + { "id": "boots_black_dragon_scale", "fg": 554, "rotates": false }, + { "id": "overlay_wielded_boots_black_dragon_scale", "fg": 554, "rotates": false }, + { "id": "overlay_worn_boots_black_dragon_scale", "fg": 555, "rotates": false }, + { "id": "boots_xlblack_dragon_hide", "fg": 556, "rotates": false }, + { "id": "overlay_wielded_boots_xlblack_dragon_hide", "fg": 556, "rotates": false }, + { "id": "boots_xlblack_dragon_scale", "fg": 557, "rotates": false }, + { "id": "overlay_wielded_boots_xlblack_dragon_scale", "fg": 557, "rotates": false }, + { "id": "dragon_black_scale", "fg": 558, "rotates": false }, + { "id": "overlay_wielded_dragon_black_scale", "fg": 559, "rotates": false }, + { "id": "gauntlets_black_dragon_scale", "fg": 559, "rotates": false }, + { "id": "overlay_wielded_gauntlets_black_dragon_scale", "fg": 559, "rotates": false }, + { "id": "overlay_worn_gauntlets_black_dragon_scale", "fg": 560, "rotates": false }, + { "id": "gauntlets_xlblack_dragon_scale", "fg": 561, "rotates": false }, + { "id": "overlay_wielded_gauntlets_xlblack_dragon_scale", "fg": 561, "rotates": false }, + { "id": "gloves_black_dragon_hide", "fg": 562, "rotates": false }, + { "id": "overlay_wielded_gloves_black_dragon_hide", "fg": 562, "rotates": false }, + { "id": "overlay_worn_gloves_black_dragon_hide", "fg": 564, "rotates": false }, + { "id": "gloves_xlblack_dragon_hide", "fg": 564, "rotates": false }, + { "id": "overlay_wielded_gloves_xlblack_dragon_hide", "fg": 564, "rotates": false }, + { "id": "helmet_black_dragon_hide", "fg": 565, "rotates": false }, + { "id": "overlay_wielded_helmet_black_dragon_hide", "fg": 565, "rotates": false }, + { "id": "overlay_worn_helmet_black_dragon_hide", "fg": 566, "rotates": false }, + { "id": "helmet_black_dragon_scale", "fg": 567, "rotates": false }, + { "id": "overlay_wielded_helmet_black_dragon_scale", "fg": 567, "rotates": false }, + { "id": "overlay_worn_helmet_black_dragon_scale", "fg": 568, "rotates": false }, + { "id": "helmet_xlblack_dragon_hide", "fg": 569, "rotates": false }, + { "id": "overlay_wielded_helmet_xlblack_dragon_hide", "fg": 569, "rotates": false }, + { "id": "helmet_xlblack_dragon_scale", "fg": 570, "rotates": false }, + { "id": "overlay_wielded_helmet_xlblack_dragon_scale", "fg": 570, "rotates": false }, + { "id": "overlay_wielded_suit_black_dragon_hide", "fg": 571, "rotates": false }, + { "id": "suit_black_dragon_hide", "fg": 571, "rotates": false }, + { "id": "overlay_worn_suit_black_dragon_hide", "fg": 572, "rotates": false }, + { "id": "overlay_wielded_suit_black_dragon_scale", "fg": 573, "rotates": false }, + { "id": "suit_black_dragon_scale", "fg": 573, "rotates": false }, + { "id": "overlay_worn_suit_black_dragon_scale", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_suit_xlblack_dragon_hide", "fg": 755, "rotates": false }, + { "id": "suit_xlblack_dragon_hide", "fg": 575, "rotates": false }, + { "id": "overlay_wielded_suit_xlblack_dragon_scale", "fg": 756, "rotates": false }, + { "id": "suit_xlblack_dragon_scale", "fg": 576, "rotates": false }, + { "id": "lair_map", "fg": 577, "rotates": false }, + { "id": "overlay_wielded_lair_map", "fg": 577, "rotates": false }, + { "id": "overlay_wielded_retreat_map", "fg": 578, "rotates": false }, + { "id": "retreat_map", "fg": 578, "rotates": false }, + { "id": "overlay_wielded_wizard_photo", "fg": 579, "rotates": false }, + { "id": "wizard_photo", "fg": 579, "rotates": false }, + { "id": "animist_doll_decayed_pouncer", "fg": 580, "rotates": false }, + { "id": "overlay_wielded_animist_doll_decayed_pouncer", "fg": 581, "rotates": false }, + { "id": "animist_doll_skeleton", "fg": 582, "rotates": false }, + { "id": "overlay_wielded_animist_doll_skeleton", "fg": 583, "rotates": false }, + { "id": "animist_doll_zombie", "fg": 584, "rotates": false }, + { "id": "overlay_wielded_animist_doll_zombie", "fg": 585, "rotates": false }, + { "id": "cats_grace_potion", "fg": 586 }, + { "id": "overlay_wielded_cats_grace_potion", "fg": 586 }, + { "id": "eagles_sight_potion", "fg": 587 }, + { "id": "overlay_wielded_eagles_sight_potion", "fg": 587 }, + { "id": "foxs_cunning_potion", "fg": 588 }, + { "id": "overlay_wielded_foxs_cunning_potion", "fg": 588 }, + { "id": "mana_potion", "fg": 589, "rotates": false }, + { "id": "overlay_wielded_mana_potion", "fg": 589, "rotates": false }, + { "id": "mana_potion_greater", "fg": 590, "rotates": false }, + { "id": "overlay_wielded_mana_potion_greater", "fg": 590, "rotates": false }, + { "id": "mana_potion_lesser", "fg": 591, "rotates": false }, + { "id": "overlay_wielded_mana_potion_lesser", "fg": 591, "rotates": false }, + { "id": "ogres_strength_potion", "fg": 592 }, + { "id": "overlay_wielded_ogres_strength_potion", "fg": 592 }, + { "id": "overlay_wielded_twisted_restore_potion", "fg": 593, "rotates": false }, + { "id": "twisted_restore_potion", "fg": 593, "rotates": false }, + { "id": "overlay_wielded_twisted_restore_potion_improved", "fg": 594, "rotates": false }, + { "id": "twisted_restore_potion_improved", "fg": 594, "rotates": false }, + { "id": "overlay_wielded_rune_alchemist", "fg": 595 }, + { "id": "rune_alchemist", "fg": 595 }, + { "id": "overlay_wielded_rune_animist", "fg": 596 }, + { "id": "rune_animist", "fg": 596 }, + { "id": "overlay_wielded_rune_biomancer", "fg": 597 }, + { "id": "rune_biomancer", "fg": 597 }, + { "id": "overlay_wielded_rune_druid", "fg": 598 }, + { "id": "rune_druid", "fg": 598 }, + { "id": "overlay_wielded_rune_earthshaper", "fg": 599 }, + { "id": "rune_earthshaper", "fg": 599 }, + { "id": "overlay_wielded_rune_kelvinist", "fg": 600 }, + { "id": "rune_kelvinist", "fg": 600 }, + { "id": "overlay_wielded_rune_magus", "fg": 601 }, + { "id": "rune_magus", "fg": 601 }, + { "id": "overlay_wielded_rune_stormshaper", "fg": 602 }, + { "id": "rune_stormshaper", "fg": 602 }, + { "id": "overlay_wielded_rune_technomancer", "fg": 603 }, + { "id": "rune_technomancer", "fg": 603 }, + { "id": "egg_owlbear", "fg": 604 }, + { "id": "overlay_wielded_egg_owlbear", "fg": 604 }, + { "id": "egg_owlbear_rock", "fg": 605 }, + { "id": "overlay_wielded_egg_owlbear_rock", "fg": 605 }, + { "id": "hairball", "fg": 606, "rotates": false }, + { "id": "overlay_wielded_hairball", "fg": 606, "rotates": false }, + { "id": "impure_meat", "fg": 607, "rotates": false }, + { "id": "overlay_wielded_impure_meat", "fg": 607, "rotates": false }, + { "id": "meat_dragon", "fg": 608, "rotates": false }, + { "id": "overlay_wielded_meat_dragon", "fg": 608, "rotates": false }, + { "id": "overlay_wielded_purified_meat", "fg": 609, "rotates": false }, + { "id": "purified_meat", "fg": 609, "rotates": false }, + { "id": "overlay_wielded_scream_mush", "fg": 610, "rotates": false }, + { "id": "scream_mush", "fg": 610, "rotates": false }, + { "id": "lizardfolk_trident", "fg": 611, "rotates": false }, + { "id": "overlay_wielded_lizardfolk_trident", "fg": 612, "rotates": false }, + { "id": "overlay_wielded_skewer", "fg": 613, "rotates": false }, + { "id": "skewer", "fg": 613, "bg": 3, "rotates": false }, + { "id": "fungicide", "fg": 614, "bg": 3, "rotates": false }, + { "id": "bag_holding_1", "fg": 615, "rotates": false }, + { "id": "overlay_wielded_bag_holding_1", "fg": 616, "rotates": false }, + { "id": "overlay_female_worn_bag_holding_1", "fg": 617, "rotates": false }, + { "id": "overlay_male_worn_bag_holding_1", "fg": 618, "rotates": false }, + { "id": "bag_holding_2", "fg": 619, "rotates": false }, + { "id": "overlay_wielded_bag_holding_2", "fg": 620, "rotates": false }, + { "id": "overlay_female_worn_bag_holding_2", "fg": 621, "rotates": false }, + { "id": "overlay_male_worn_bag_holding_2", "fg": 622, "rotates": false }, + { "id": "bag_holding_3", "fg": 623, "rotates": false }, + { "id": "overlay_wielded_bag_holding_3", "fg": 624, "rotates": false }, + { "id": "overlay_female_worn_bag_holding_3", "fg": 625, "rotates": false }, + { "id": "overlay_male_worn_bag_holding_3", "fg": 626, "rotates": false }, + { "id": "belt_haste", "fg": 627, "rotates": false }, + { "id": "overlay_wielded_belt_haste", "fg": 627, "rotates": false }, + { "id": "overlay_worn_belt_haste", "fg": 628, "rotates": false }, + { "id": "belt_str", "fg": 629, "rotates": false }, + { "id": "overlay_wielded_belt_str", "fg": 630, "rotates": false }, + { "id": "overlay_worn_belt_str", "fg": 630, "rotates": false }, + { "id": "debug_fireball_hammer", "fg": 631, "rotates": false }, + { "id": "overlay_wielded_debug_fireball_hammer", "fg": 632, "rotates": false }, + { "id": "magi_staff_minor", "fg": 633, "rotates": false }, + { "id": "overlay_wielded_magi_staff_minor", "fg": 634, "rotates": false }, + { "id": "overlay_wielded_wizard_hat", "fg": 635, "rotates": false }, + { "id": "wizard_hat", "fg": 635, "rotates": false }, + { "id": "mbelt_haste", "fg": 636, "rotates": false }, + { "id": "overlay_wielded_mbelt_haste", "fg": 636, "rotates": false }, + { "id": "overlay_worn_mbelt_haste", "fg": 637, "rotates": false }, + { "id": "mbelt_iron_whip", "fg": 638, "rotates": false }, + { "id": "overlay_wielded_mbelt_iron_whip", "fg": 638, "rotates": false }, + { "id": "overlay_worn_mbelt_iron_whip", "fg": 639, "rotates": false }, + { "id": "mbelt_pockets_greater", "fg": 640, "rotates": false }, + { "id": "overlay_wielded_mbelt_pockets_greater", "fg": 640, "rotates": false }, + { "id": "overlay_worn_mbelt_pockets_greater", "fg": 641, "rotates": false }, + { "id": "mbelt_pockets_lesser", "fg": 642, "rotates": false }, + { "id": "overlay_wielded_mbelt_pockets_lesser", "fg": 642, "rotates": false }, + { "id": "overlay_worn_mbelt_pockets_lesser", "fg": 643, "rotates": false }, + { "id": "mbelt_technomancer_toolbelt", "fg": 644, "rotates": false }, + { "id": "overlay_wielded_mbelt_technomancer_toolbelt", "fg": 644, "rotates": false }, + { "id": "overlay_worn_mbelt_technomancer_toolbelt", "fg": 645, "rotates": false }, + { "id": "mbelt_thor", "fg": 646, "rotates": false }, + { "id": "overlay_wielded_mbelt_thor", "fg": 646, "rotates": false }, + { "id": "overlay_worn_mbelt_thor", "fg": 647, "rotates": false }, + { "id": "mbelt_weaponry", "fg": 648, "rotates": false }, + { "id": "overlay_wielded_mbelt_weaponry", "fg": 648, "rotates": false }, + { "id": "overlay_worn_mbelt_weaponry", "fg": 649, "rotates": false }, + { "id": "mwhip_iron", "fg": 650, "rotates": false }, + { "id": "overlay_wielded_mwhip_iron", "fg": 651, "rotates": false }, + { "id": "mboots_escape", "fg": 652, "rotates": false }, + { "id": "overlay_wielded_mboots_escape", "fg": 652, "rotates": false }, + { "id": "overlay_worn_mboots_escape", "fg": 653, "rotates": false }, + { "id": "mboots_grounding", "fg": 654, "rotates": false }, + { "id": "overlay_wielded_mboots_grounding", "fg": 654, "rotates": false }, + { "id": "overlay_worn_mboots_grounding", "fg": 655, "rotates": false }, + { "id": "mboots_haste", "fg": 656, "rotates": false }, + { "id": "overlay_wielded_mboots_haste", "fg": 656, "rotates": false }, + { "id": "overlay_worn_mboots_haste", "fg": 657, "rotates": false }, + { "id": "mboots_sevenleague", "fg": 658, "rotates": false }, + { "id": "overlay_wielded_mboots_sevenleague", "fg": 658, "rotates": false }, + { "id": "overlay_worn_mboots_sevenleague", "fg": 659, "rotates": false }, + { "id": "mbracer_defense_greater", "fg": 660, "rotates": false }, + { "id": "overlay_wielded_mbracer_defense_greater", "fg": 660, "rotates": false }, + { "id": "overlay_worn_mbracer_defense_greater", "fg": 661, "rotates": false }, + { "id": "mbracer_defense_lesser", "fg": 662, "rotates": false }, + { "id": "overlay_wielded_mbracer_defense_lesser", "fg": 662, "rotates": false }, + { "id": "overlay_worn_mbracer_defense_lesser", "fg": 663, "rotates": false }, + { "id": "mbracer_lightning_greater", "fg": 664, "rotates": false }, + { "id": "overlay_wielded_mbracer_lightning_greater", "fg": 664, "rotates": false }, + { "id": "overlay_worn_mbracer_lightning_greater", "fg": 665, "rotates": false }, + { "id": "mbracer_lightning_lesser", "fg": 666, "rotates": false }, + { "id": "overlay_wielded_mbracer_lightning_lesser", "fg": 666, "rotates": false }, + { "id": "overlay_worn_mbracer_lightning_lesser", "fg": 667, "rotates": false }, + { "id": "mbracer_steel_pair", "fg": 668, "rotates": false }, + { "id": "overlay_wielded_mbracer_steel_pair", "fg": 668, "rotates": false }, + { "id": "overlay_worn_mbracer_steel_pair", "fg": 669, "rotates": false }, + { "id": "mbracer_steel_single", "fg": 670, "rotates": false }, + { "id": "overlay_wielded_mbracer_steel_single", "fg": 670, "rotates": false }, + { "id": "overlay_worn_mbracer_steel_single", "fg": 671, "rotates": false }, + { "id": "magic_suppressor", "fg": 672, "rotates": false }, + { "id": "overlay_wielded_magic_suppressor", "fg": 672, "rotates": false }, + { "id": "mana_dot_sight", "fg": 673, "rotates": false }, + { "id": "overlay_wielded_mana_dot_sight", "fg": 673, "rotates": false }, + { "id": "mana_laser_rail", "fg": 673, "rotates": false }, + { "id": "overlay_wielded_mana_laser_rail", "fg": 673, "rotates": false }, + { "id": "mana_laser_under", "fg": 673, "rotates": false }, + { "id": "overlay_wielded_mana_laser_under", "fg": 673, "rotates": false }, + { "id": "mmask_disappearance", "fg": 674, "rotates": false }, + { "id": "overlay_wielded_mmask_disappearance", "fg": 674, "rotates": false }, + { "id": "overlay_female_worn_mmask_disappearance", "fg": 685, "rotates": false }, + { "id": "overlay_male_worn_mmask_disappearance", "fg": 686, "rotates": false }, + { "id": "mmask_vision", "fg": 687, "rotates": false }, + { "id": "overlay_wielded_mmask_vision", "fg": 687, "rotates": false }, + { "id": "overlay_female_worn_mmask_vision", "fg": 688, "rotates": false }, + { "id": "overlay_male_worn_mmask_vision", "fg": 689, "rotates": false }, + { "id": "rune_animist_weapon", "fg": 690, "rotates": false }, + { "id": "overlay_wielded_rune_animist_weapon", "fg": 690, "rotates": false }, + { "id": "rune_biomancer_weapon", "fg": 691, "rotates": false }, + { "id": "overlay_wielded_rune_biomancer_weapon", "fg": 691, "rotates": false }, + { "id": "rune_kelvinist_weapon", "fg": 692, "rotates": false }, + { "id": "overlay_wielded_rune_kelvinist_weapon", "fg": 692, "rotates": false }, + { "id": "rune_magus_weapon", "fg": 693, "rotates": false }, + { "id": "overlay_wielded_rune_magus_weapon", "fg": 693, "rotates": false }, + { "id": "rune_stormshaper_weapon", "fg": 694, "rotates": false }, + { "id": "overlay_wielded_rune_stormshaper_weapon", "fg": 694, "rotates": false }, + { "id": "rune_technomancer_weapon", "fg": 695, "rotates": false }, + { "id": "overlay_wielded_rune_technomancer_weapon", "fg": 695, "rotates": false }, + { "id": "springstaff-extended", "fg": 696, "rotates": false }, + { "id": "overlay_wielded_springstaff-extended", "fg": 696, "rotates": false }, + { "id": "springstaff-retracted", "fg": 697, "rotates": false }, + { "id": "overlay_wielded_springstaff-retracted", "fg": 697, "rotates": false }, + { "id": "heat_cube", "fg": 698, "rotates": false }, + { "id": "overlay_wielded_heat_cube", "fg": 698, "rotates": false }, + { "id": "heat_cube_torch_on", "fg": 699, "rotates": false }, + { "id": "overlay_wielded_heat_cube_torch_on", "fg": 699, "rotates": false }, + { "id": "mflask_hip_whiskey", "fg": 700, "rotates": false }, + { "id": "overlay_wielded_mflask_hip_whiskey", "fg": 701, "rotates": false }, + { "id": "overlay_worn_mflask_hip_whiskey", "fg": 702, "rotates": false }, + { "id": "mkey_opening", "fg": 703, "rotates": false }, + { "id": "overlay_wielded_mkey_opening", "fg": 703, "rotates": false }, + { "id": "mspider_box", "fg": 704, "rotates": false }, + { "id": "overlay_wielded_mspider_box", "fg": 704, "rotates": false }, + { "id": "mtailors_kit", "fg": 705, "rotates": false }, + { "id": "overlay_wielded_mtailors_kit", "fg": 705, "rotates": false }, + { "id": "mtorch_everburning", "fg": 706, "rotates": false }, + { "id": "overlay_wielded_mtorch_everburning", "fg": 707, "rotates": false }, + { "id": "mtorch_everburning_lit", "fg": 708, "rotates": false }, + { "id": "overlay_wielded_mtorch_everburning_lit", "fg": 709, "rotates": false }, + { "id": "gunblade", "fg": 710, "rotates": false }, + { "id": "overlay_wielded_gunblade", "fg": 711, "rotates": false }, + { "id": "m47a1", "fg": 712, "rotates": false }, + { "id": "overlay_wielded_m47a1", "fg": 713, "rotates": false }, + { "id": "rune_druid_weapon", "fg": 714, "rotates": false }, + { "id": "overlay_wielded_rune_druid_weapon", "fg": 715, "rotates": false }, + { "id": "mring_blades_lesser", "fg": 716, "rotates": false }, + { "id": "overlay_wielded_mring_blades_lesser", "fg": 716, "rotates": false }, + { "id": "mring_copper", "fg": 717, "rotates": false }, + { "id": "overlay_wielded_mring_copper", "fg": 717, "rotates": false }, + { "id": "mring_dexterity_1", "fg": 718, "rotates": false }, + { "id": "overlay_wielded_mring_dexterity_1", "fg": 718, "rotates": false }, + { "id": "mring_dexterity_2", "fg": 719, "rotates": false }, + { "id": "overlay_wielded_mring_dexterity_2", "fg": 719, "rotates": false }, + { "id": "mring_dexterity_3", "fg": 720, "rotates": false }, + { "id": "overlay_wielded_mring_dexterity_3", "fg": 720, "rotates": false }, + { "id": "mring_dexterity_4", "fg": 721, "rotates": false }, + { "id": "overlay_wielded_mring_dexterity_4", "fg": 721, "rotates": false }, + { "id": "mring_dodge_bonus_1", "fg": 722, "rotates": false }, + { "id": "overlay_wielded_mring_dodge_bonus_1", "fg": 722, "rotates": false }, + { "id": "mring_dodge_bonus_2", "fg": 723, "rotates": false }, + { "id": "overlay_wielded_mring_dodge_bonus_2", "fg": 723, "rotates": false }, + { "id": "mring_gold", "fg": 724, "rotates": false }, + { "id": "overlay_wielded_mring_gold", "fg": 724, "rotates": false }, + { "id": "mring_intelligence_1", "fg": 725, "rotates": false }, + { "id": "overlay_wielded_mring_intelligence_1", "fg": 725, "rotates": false }, + { "id": "mring_intelligence_2", "fg": 726, "rotates": false }, + { "id": "overlay_wielded_mring_intelligence_2", "fg": 726, "rotates": false }, + { "id": "mring_intelligence_3", "fg": 727, "rotates": false }, + { "id": "overlay_wielded_mring_intelligence_3", "fg": 727, "rotates": false }, + { "id": "mring_intelligence_4", "fg": 728, "rotates": false }, + { "id": "overlay_wielded_mring_intelligence_4", "fg": 728, "rotates": false }, + { "id": "mring_perception_1", "fg": 729, "rotates": false }, + { "id": "overlay_wielded_mring_perception_1", "fg": 729, "rotates": false }, + { "id": "mring_perception_2", "fg": 730, "rotates": false }, + { "id": "overlay_wielded_mring_perception_2", "fg": 730, "rotates": false }, + { "id": "mring_perception_3", "fg": 731, "rotates": false }, + { "id": "overlay_wielded_mring_perception_3", "fg": 731, "rotates": false }, + { "id": "mring_perception_4", "fg": 732, "rotates": false }, + { "id": "overlay_wielded_mring_perception_4", "fg": 732, "rotates": false }, + { "id": "mring_platinum", "fg": 733, "rotates": false }, + { "id": "overlay_wielded_mring_platinum", "fg": 733, "rotates": false }, + { "id": "mring_protection_2", "fg": 734, "rotates": false }, + { "id": "overlay_wielded_mring_protection_2", "fg": 734, "rotates": false }, + { "id": "mring_protection_4", "fg": 735, "rotates": false }, + { "id": "overlay_wielded_mring_protection_4", "fg": 735, "rotates": false }, + { "id": "mring_protection_6", "fg": 736, "rotates": false }, + { "id": "overlay_wielded_mring_protection_6", "fg": 736, "rotates": false }, + { "id": "mring_protection_8", "fg": 737, "rotates": false }, + { "id": "overlay_wielded_mring_protection_8", "fg": 737, "rotates": false }, + { "id": "mring_silver", "fg": 738, "rotates": false }, + { "id": "overlay_wielded_mring_silver", "fg": 738, "rotates": false }, + { "id": "mring_speed_10", "fg": 739, "rotates": false }, + { "id": "overlay_wielded_mring_speed_10", "fg": 739, "rotates": false }, + { "id": "mring_speed_3", "fg": 740, "rotates": false }, + { "id": "overlay_wielded_mring_speed_3", "fg": 740, "rotates": false }, + { "id": "mring_speed_5", "fg": 741, "rotates": false }, + { "id": "overlay_wielded_mring_speed_5", "fg": 741, "rotates": false }, + { "id": "mring_speed_7", "fg": 742, "rotates": false }, + { "id": "overlay_wielded_mring_speed_7", "fg": 742, "rotates": false }, + { "id": "mring_strength_1", "fg": 743, "rotates": false }, + { "id": "overlay_wielded_mring_strength_1", "fg": 743, "rotates": false }, + { "id": "mring_strength_2", "fg": 744, "rotates": false }, + { "id": "overlay_wielded_mring_strength_2", "fg": 744, "rotates": false }, + { "id": "mring_strength_3", "fg": 745, "rotates": false }, + { "id": "overlay_wielded_mring_strength_3", "fg": 745, "rotates": false }, + { "id": "mring_strength_4", "fg": 746, "rotates": false }, + { "id": "overlay_wielded_mring_strength_4", "fg": 746, "rotates": false }, + { "id": "mtoken_arming_sword", "fg": 747, "rotates": false }, + { "id": "overlay_wielded_mtoken_arming_sword", "fg": 747, "rotates": false }, + { "id": "mtoken_battleaxe", "fg": 748, "rotates": false }, + { "id": "overlay_wielded_mtoken_battleaxe", "fg": 748, "rotates": false }, + { "id": "mtoken_broadsword", "fg": 749, "rotates": false }, + { "id": "overlay_wielded_mtoken_broadsword", "fg": 749, "rotates": false }, + { "id": "mtoken_crowbar", "fg": 750, "rotates": false }, + { "id": "overlay_wielded_mtoken_crowbar", "fg": 750, "rotates": false }, + { "id": "mtoken_hammer", "fg": 751, "rotates": false }, + { "id": "overlay_wielded_mtoken_hammer", "fg": 751, "rotates": false }, + { "id": "mtoken_longsword", "fg": 752, "rotates": false }, + { "id": "overlay_wielded_mtoken_longsword", "fg": 752, "rotates": false }, + { "id": "mtoken_mace", "fg": 753, "rotates": false }, + { "id": "overlay_wielded_mtoken_mace", "fg": 753, "rotates": false }, + { "id": "mtoken_pike", "fg": 754, "rotates": false }, + { "id": "overlay_wielded_mtoken_pike", "fg": 754, "rotates": false }, + { "id": "mtoken_q_staff", "fg": 755, "rotates": false }, + { "id": "overlay_wielded_mtoken_q_staff", "fg": 755, "rotates": false }, + { "id": "mtoken_screwdriver_set", "fg": 756, "rotates": false }, + { "id": "overlay_wielded_mtoken_screwdriver_set", "fg": 756, "rotates": false }, + { "id": "mtoken_toolbox", "fg": 757, "rotates": false }, + { "id": "overlay_wielded_mtoken_toolbox", "fg": 757, "rotates": false }, + { "id": "cestus_plus_one", "fg": 758, "bg": 5 }, + { "id": "overlay_wielded_cestus_plus_one", "fg": 758 }, + { "id": "cestus_plus_two", "fg": 759, "bg": 5 }, + { "id": "overlay_wielded_cestus_plus_two", "fg": 759 }, + { "id": "flaming_fist", "fg": 760, "rotates": false }, + { "id": "overlay_wielded_flaming_fist", "fg": 761, "rotates": false }, + { "id": "flaming_fist_plus_one", "fg": 762, "bg": 282 }, + { "id": "overlay_wielded_flaming_fist_plus_one", "fg": 761, "rotates": false }, + { "id": "flaming_fist_plus_two", "fg": 763, "bg": 282 }, + { "id": "overlay_wielded_flaming_fist_plus_two", "fg": 763 }, + { "id": "gauntlet_pounding", "fg": 764, "rotates": false }, + { "id": "overlay_wielded_gauntlet_pounding", "fg": 765, "rotates": false }, + { "id": "rune_earthshaper_weapon", "fg": 766, "rotates": false }, + { "id": "overlay_wielded_rune_earthshaper_weapon", "fg": 767, "rotates": false }, + { "id": "shotcestus", "fg": 768, "rotates": false }, + { "id": "overlay_wielded_shotcestus", "fg": 769, "rotates": false }, + { "id": "disp_wand", "fg": 770, "rotates": false }, + { "id": "overlay_wielded_disp_wand", "fg": 771, "rotates": false }, + { "id": "spell_wand", "fg": 772, "rotates": false }, + { "id": "overlay_wielded_spell_wand", "fg": 773, "rotates": false }, + { "id": "wand_cone_cold_greater", "fg": 774, "rotates": false }, + { "id": "overlay_wielded_wand_cone_cold_greater", "fg": 775, "rotates": false }, + { "id": "wand_cone_cold_lesser", "fg": 776, "rotates": false }, + { "id": "overlay_wielded_wand_cone_cold_lesser", "fg": 777, "rotates": false }, + { "id": "wand_cone_cold_minor", "fg": 778, "rotates": false }, + { "id": "overlay_wielded_wand_cone_cold_minor", "fg": 779, "rotates": false }, + { "id": "overlay_wielded_wand_disp_cone_cold_greater", "fg": 780, "rotates": false }, + { "id": "wand_disp_cone_cold_greater", "fg": 780, "rotates": false }, + { "id": "overlay_wielded_wand_disp_cone_cold_lesser", "fg": 781, "rotates": false }, + { "id": "wand_disp_cone_cold_lesser", "fg": 781, "rotates": false }, + { "id": "overlay_wielded_wand_disp_cone_cold_minor", "fg": 782, "rotates": false }, + { "id": "wand_disp_cone_cold_minor", "fg": 782, "rotates": false }, + { "id": "overlay_wielded_wand_disp_fireball_greater", "fg": 783, "rotates": false }, + { "id": "wand_disp_fireball_greater", "fg": 783, "rotates": false }, + { "id": "overlay_wielded_wand_disp_fireball_lesser", "fg": 784, "rotates": false }, + { "id": "wand_disp_fireball_lesser", "fg": 784, "rotates": false }, + { "id": "overlay_wielded_wand_disp_fireball_minor", "fg": 785, "rotates": false }, + { "id": "wand_disp_fireball_minor", "fg": 785, "rotates": false }, + { "id": "wand_disp_hoaryblast_greater", "fg": 786, "rotates": false }, + { "id": "overlay_wielded_wand_disp_hoaryblast_greater", "fg": 787, "rotates": false }, + { "id": "wand_disp_hoaryblast_lesser", "fg": 788, "rotates": false }, + { "id": "overlay_wielded_wand_disp_hoaryblast_lesser", "fg": 789, "rotates": false }, + { "id": "wand_disp_hoaryblast_minor", "fg": 790, "rotates": false }, + { "id": "overlay_wielded_wand_disp_hoaryblast_minor", "fg": 791, "rotates": false }, + { "id": "wand_disp_magic_missile_greater", "fg": 792, "rotates": false }, + { "id": "overlay_wielded_wand_disp_magic_missile_greater", "fg": 793, "rotates": false }, + { "id": "wand_disp_magic_missile_lesser", "fg": 794, "rotates": false }, + { "id": "overlay_wielded_wand_disp_magic_missile_lesser", "fg": 795, "rotates": false }, + { "id": "wand_disp_magic_missile_minor", "fg": 796, "rotates": false }, + { "id": "overlay_wielded_wand_disp_magic_missile_minor", "fg": 797, "rotates": false }, + { "id": "wand_disp_mana_beam_greater", "fg": 798, "rotates": false }, + { "id": "overlay_wielded_wand_disp_mana_beam_greater", "fg": 799, "rotates": false }, + { "id": "wand_disp_mana_beam_lesser", "fg": 800, "rotates": false }, + { "id": "overlay_wielded_wand_disp_mana_beam_lesser", "fg": 801, "rotates": false }, + { "id": "wand_disp_mana_beam_minor", "fg": 802, "rotates": false }, + { "id": "overlay_wielded_wand_disp_mana_beam_minor", "fg": 803, "rotates": false }, + { "id": "wand_disp_point_flare_greater", "fg": 804, "rotates": false }, + { "id": "overlay_wielded_wand_disp_point_flare_greater", "fg": 805, "rotates": false }, + { "id": "wand_disp_point_flare_lesser", "fg": 806, "rotates": false }, + { "id": "overlay_wielded_wand_disp_point_flare_lesser", "fg": 807, "rotates": false }, + { "id": "wand_disp_point_flare_minor", "fg": 808, "rotates": false }, + { "id": "overlay_wielded_wand_disp_point_flare_minor", "fg": 809, "rotates": false }, + { "id": "wand_fireball_greater", "fg": 810, "rotates": false }, + { "id": "overlay_wielded_wand_fireball_greater", "fg": 811, "rotates": false }, + { "id": "wand_fireball_lesser", "fg": 812, "rotates": false }, + { "id": "overlay_wielded_wand_fireball_lesser", "fg": 813, "rotates": false }, + { "id": "wand_fireball_minor", "fg": 814, "rotates": false }, + { "id": "overlay_wielded_wand_fireball_minor", "fg": 815, "rotates": false }, + { "id": "wand_hoaryblast_greater", "fg": 816, "rotates": false }, + { "id": "overlay_wielded_wand_hoaryblast_greater", "fg": 817, "rotates": false }, + { "id": "wand_hoaryblast_lesser", "fg": 818, "rotates": false }, + { "id": "overlay_wielded_wand_hoaryblast_lesser", "fg": 819, "rotates": false }, + { "id": "wand_hoaryblast_minor", "fg": 820, "rotates": false }, + { "id": "overlay_wielded_wand_hoaryblast_minor", "fg": 821, "rotates": false }, + { "id": "wand_magic_missile_greater", "fg": 822, "rotates": false }, + { "id": "overlay_wielded_wand_magic_missile_greater", "fg": 823, "rotates": false }, + { "id": "wand_magic_missile_lesser", "fg": 824, "rotates": false }, + { "id": "overlay_wielded_wand_magic_missile_lesser", "fg": 825, "rotates": false }, + { "id": "wand_magic_missile_minor", "fg": 826, "rotates": false }, + { "id": "overlay_wielded_wand_magic_missile_minor", "fg": 827, "rotates": false }, + { "id": "wand_mana_beam_greater", "fg": 828, "rotates": false }, + { "id": "overlay_wielded_wand_mana_beam_greater", "fg": 829, "rotates": false }, + { "id": "wand_mana_beam_lesser", "fg": 830, "rotates": false }, + { "id": "overlay_wielded_wand_mana_beam_lesser", "fg": 831, "rotates": false }, + { "id": "wand_mana_beam_minor", "fg": 832, "rotates": false }, + { "id": "overlay_wielded_wand_mana_beam_minor", "fg": 833, "rotates": false }, + { "id": "wand_point_flare_greater", "fg": 834, "rotates": false }, + { "id": "overlay_wielded_wand_point_flare_greater", "fg": 835, "rotates": false }, + { "id": "wand_point_flare_lesser", "fg": 836, "rotates": false }, + { "id": "overlay_wielded_wand_point_flare_lesser", "fg": 837, "rotates": false }, + { "id": "wand_point_flare_minor", "fg": 838, "rotates": false }, + { "id": "overlay_wielded_wand_point_flare_minor", "fg": 839, "rotates": false }, + { "id": "acid_res_aura", "fg": 3, "rotates": false }, + { "id": "overlay_wielded_acid_res_aura", "fg": 3, "rotates": false }, + { "id": "acid_res_aura_greater", "fg": 3, "rotates": false }, + { "id": "overlay_wielded_acid_res_aura_greater", "fg": 3, "rotates": false }, + { "id": "aura_stoneskin", "fg": 842, "rotates": false }, + { "id": "overlay_wielded_aura_stoneskin", "fg": 842, "rotates": false }, + { "id": "overlay_female_worn_aura_stoneskin", "fg": 843, "rotates": false }, + { "id": "overlay_male_worn_aura_stoneskin", "fg": 844, "rotates": false }, + { "id": "bonespear", "fg": 845, "rotates": true }, + { "id": "overlay_wielded_bonespear", "fg": 846, "rotates": true }, + { "id": "dragon_shell_black", "fg": 847, "rotates": false }, + { "id": "overlay_wielded_dragon_shell_black", "fg": 847, "rotates": false }, + { + "id": "overlay_worn_dragon_shell_black", + "fg": [ + { "weight": 30, "sprite": 848 }, + { "weight": 30, "sprite": 849 }, + { "weight": 30, "sprite": 850 }, + { "weight": 30, "sprite": 851 } + ], + "animated": true, + "rotates": false + }, + { "id": "druid_dust", "fg": 852, "rotates": false }, + { "id": "overlay_wielded_druid_dust", "fg": 852, "rotates": false }, + { "id": "druid_recurve", "fg": 853, "rotates": true }, + { "id": "overlay_wielded_druid_recurve", "fg": 854, "rotates": true }, + { "id": "druid_seed", "fg": 855, "rotates": false }, + { "id": "overlay_wielded_druid_seed", "fg": 855, "rotates": false }, + { "id": "finger_firelighter", "fg": 856 }, + { "id": "overlay_wielded_finger_firelighter", "fg": 857 }, + { "id": "fleshpouch", "fg": 858, "rotates": true }, + { "id": "overlay_wielded_fleshpouch", "fg": 858, "rotates": true }, + { "id": "overlay_worn_fleshpouch", "fg": 859, "rotates": true }, + { "id": "ice_gliders", "fg": 860, "rotates": false }, + { "id": "overlay_wielded_ice_gliders", "fg": 860, "rotates": false }, + { "id": "overlay_worn_ice_gliders", "fg": 861, "rotates": false }, + { "id": "magic_lamp", "fg": 862, "rotates": false }, + { "id": "magic_light", "fg": 863, "rotates": false }, + { "id": "obfuscating_aura", "fg": 864, "rotates": false }, + { "id": "overlay_wielded_obfuscating_aura", "fg": 864, "rotates": false }, + { "id": "overlay_wielded_shield_ice", "fg": 865, "rotates": false }, + { "id": "shield_ice", "fg": 865, "rotates": false }, + { "id": "overlay_worn_shield_ice", "fg": 866, "rotates": false }, + { "id": "stonefist", "fg": 867, "rotates": false }, + { "id": "overlay_wielded_stonefist", "fg": 868, "rotates": false }, + { "id": "stormglove", "fg": 869, "rotates": false }, + { "id": "overlay_wielded_stormglove", "fg": 870, "rotates": false }, + { "id": "stormhammer", "fg": 871, "rotates": false }, + { "id": "overlay_wielded_stormhammer", "fg": 872, "rotates": false }, + { "id": "tentacle_whip", "fg": 873, "rotates": true }, + { "id": "overlay_wielded_tentacle_whip", "fg": 874, "rotates": true }, + { "id": "crystallized_mana", "fg": 875, "rotates": false }, + { "id": "overlay_wielded_crystallized_mana", "fg": 875, "rotates": false }, + { "id": "overlay_wielded_small_mana_crystal", "fg": 876, "rotates": false }, + { "id": "small_mana_crystal", "fg": 876, "rotates": false }, + { "id": "gram", "fg": 877, "rotates": false }, + { "id": "overlay_wielded_gram", "fg": 878, "rotates": false }, + { "id": "gungnir", "fg": 879, "rotates": false }, + { "id": "laevateinn", "fg": 880, "rotates": false }, + { "id": "overlay_wielded_laevateinn", "fg": 881, "rotates": false }, + { "id": "mjolnir", "fg": 882, "bg": 3, "rotates": false }, + { "id": "overlay_wielded_mjolnir", "fg": 883, "rotates": false }, + { "id": "mithril_ingot", "fg": 884, "rotates": false }, + { "id": "overlay_wielded_mithril_ingot", "fg": 884, "rotates": false }, + { "id": "mithril_lump", "fg": 885, "rotates": false }, + { "id": "overlay_wielded_mithril_lump", "fg": 885, "rotates": false }, + { "id": "orichalcum_ingot", "fg": 886, "rotates": false }, + { "id": "overlay_wielded_orichalcum_ingot", "fg": 886, "rotates": false }, + { "id": "orichalcum_lump", "fg": 887, "rotates": false }, + { "id": "overlay_wielded_orichalcum_lump", "fg": 887, "rotates": false }, + { "id": "orichalcum_sliver", "fg": 888, "rotates": false }, + { "id": "overlay_wielded_orichalcum_sliver", "fg": 888, "rotates": false }, + { "id": "iv_black_dragon", "fg": 890, "rotates": false }, + { "id": "overlay_wielded_iv_black_dragon", "fg": 890, "rotates": false }, + { "id": "manatouched_serum", "fg": 889, "rotates": false }, + { "id": "overlay_wielded_manatouched_serum", "fg": 889, "rotates": false }, + { "id": "mutagen_black_dragon", "fg": 890, "rotates": false }, + { "id": "overlay_wielded_mutagen_black_dragon", "fg": 890, "rotates": false }, + { "id": "wand_fireball", "fg": 891, "rotates": false }, + { "id": "overlay_wielded_wand_fireball", "fg": 892, "rotates": false }, + { "id": "wand_magic_missile", "fg": 893, "rotates": false }, + { "id": "overlay_wielded_wand_magic_missile", "fg": 894, "rotates": false }, + { "id": "alchemy_basic", "fg": 895, "rotates": false }, + { "id": "overlay_wielded_alchemy_basic", "fg": 895, "rotates": false }, + { "id": "black_dragons", "fg": 896, "rotates": false }, + { "id": "overlay_wielded_black_dragons", "fg": 896, "rotates": false }, + { "id": "black_dragons_historical", "fg": 897, "rotates": false }, + { "id": "overlay_wielded_black_dragons_historical", "fg": 897, "rotates": false }, + { "id": "book_mythological", "fg": 898, "rotates": false }, + { "id": "overlay_wielded_book_mythological", "fg": 898, "rotates": false }, + { "id": "cooking_poison", "fg": 899, "rotates": false }, + { "id": "overlay_wielded_cooking_poison", "fg": 899, "rotates": false }, + { "id": "enchantment_basic", "fg": 900, "rotates": false }, + { "id": "overlay_wielded_enchantment_basic", "fg": 900, "rotates": false }, + { "id": "magic_armormaking", "fg": 901, "rotates": false }, + { "id": "overlay_wielded_magic_armormaking", "fg": 901, "rotates": false }, + { "id": "metal_legends", "fg": 902, "rotates": false }, + { "id": "overlay_wielded_metal_legends", "fg": 902, "rotates": false }, + { "id": "necro_basic", "fg": 903, "rotates": false }, + { "id": "overlay_wielded_necro_basic", "fg": 903, "rotates": false }, + { "id": "overlay_wielded_techno_basic", "fg": 904, "rotates": false }, + { "id": "techno_basic", "fg": 904, "rotates": false }, + { "id": "biomancer_spellbook", "fg": 905, "rotates": true }, + { "id": "overlay_wielded_biomancer_spellbook", "fg": 905, "rotates": true }, + { "id": "DEBUG_spellbook", "fg": 906, "rotates": false }, + { "id": "overlay_wielded_DEBUG_spellbook", "fg": 906, "rotates": false }, + { "id": "druid_spellbook", "fg": 907, "rotates": true }, + { "id": "overlay_wielded_druid_spellbook", "fg": 907, "rotates": true }, + { "id": "eshaper_spellbook", "fg": 908 }, + { "id": "overlay_wielded_eshaper_spellbook", "fg": 908 }, + { "id": "generic_spellbook", "fg": 909, "rotates": false }, + { "id": "overlay_wielded_generic_spellbook", "fg": 909, "rotates": false }, + { "id": "light_manipulation_spellbook", "fg": 910, "rotates": false }, + { "id": "overlay_wielded_light_manipulation_spellbook", "fg": 910, "rotates": false }, + { "id": "magus_spellbook", "fg": 911 }, + { "id": "overlay_wielded_magus_spellbook", "fg": 911 }, + { "id": "magus_spellbook_move", "fg": 912 }, + { "id": "overlay_wielded_magus_spellbook_move", "fg": 912 }, + { "id": "novice_stormshaper_book", "fg": 913, "rotates": false }, + { "id": "overlay_wielded_novice_stormshaper_book", "fg": 913, "rotates": false }, + { "id": "overlay_wielded_priest_advanced", "fg": 914, "rotates": false }, + { "id": "priest_advanced", "fg": 914, "rotates": false }, + { "id": "overlay_wielded_priest_beginner", "fg": 915, "rotates": false }, + { "id": "priest_beginner", "fg": 915, "rotates": false }, + { "id": "overlay_wielded_pyro", "fg": 916, "rotates": false }, + { "id": "pyro", "fg": 916, "rotates": false }, + { "id": "overlay_wielded_recovery_spellbook", "fg": 917, "rotates": false }, + { "id": "recovery_spellbook", "fg": 917, "rotates": false }, + { "id": "overlay_wielded_stat_up_spellbook", "fg": 918 }, + { "id": "stat_up_spellbook", "fg": 918 }, + { "id": "overlay_wielded_summon_scroll_smudged", "fg": 919 }, + { "id": "summon_scroll_smudged", "fg": 919 }, + { "id": "overlay_wielded_summon_undead_spellbook", "fg": 920 }, + { "id": "summon_undead_spellbook", "fg": 920 }, + { "id": "overlay_wielded_techno_em", "fg": 921 }, + { "id": "techno_em", "fg": 921 }, + { "id": "overlay_wielded_techno_fundamentals", "fg": 922 }, + { "id": "techno_fundamentals", "fg": 922 }, + { "id": "overlay_wielded_techno_idiots", "fg": 923 }, + { "id": "techno_idiots", "fg": 923 }, + { "id": "overlay_wielded_tome_of_storms", "fg": 924, "rotates": false }, + { "id": "tome_of_storms", "fg": 924, "rotates": false }, + { "id": "overlay_wielded_translocate_spellbook", "fg": 925 }, + { "id": "translocate_spellbook", "fg": 925 }, + { "id": "overlay_wielded_winter_grasp", "fg": 926, "rotates": true }, + { "id": "winter_grasp", "fg": 926, "rotates": true }, + { "id": "overlay_wielded_wizard_advanced", "fg": 927, "rotates": true }, + { "id": "wizard_advanced", "fg": 927, "rotates": true }, + { "id": "overlay_wielded_wizard_beginner", "fg": 928, "rotates": true }, + { "id": "wizard_beginner", "fg": 928, "rotates": true }, + { "id": "overlay_wielded_wizard_utility", "fg": 929, "rotates": true }, + { "id": "wizard_utility", "fg": 929, "rotates": true }, + { "id": "lightning_storm_scroll", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_lightning_storm_scroll", "fg": 930, "rotates": false }, + { + "id": [ + "overlay_wielded_spell_scroll", + "overlay_wielded_spell_scroll_baleful_polymorph", + "overlay_wielded_spell_scroll_boneclub", + "overlay_wielded_spell_scroll_caustic_aura", + "overlay_wielded_spell_scroll_feralform", + "overlay_wielded_spell_scroll_flamebreath", + "overlay_wielded_spell_scroll_flamesword", + "overlay_wielded_spell_scroll_impactsling", + "overlay_wielded_spell_scroll_improved_knock", + "overlay_wielded_spell_scroll_knifeshot", + "overlay_wielded_spell_scroll_knock", + "overlay_wielded_spell_scroll_overcharge_eyes", + "overlay_wielded_spell_scroll_repelling_arc", + "overlay_wielded_spell_scroll_summon_floating_disk", + "overlay_wielded_spell_scroll_tornskin" + ], + "fg": 930, + "rotates": false + }, + { + "id": [ + "spell_scroll", + "spell_scroll_baleful_polymorph", + "spell_scroll_boneclub", + "spell_scroll_caustic_aura", + "spell_scroll_feralform", + "spell_scroll_flamebreath", + "spell_scroll_flamesword", + "spell_scroll_impactsling", + "spell_scroll_improved_knock", + "spell_scroll_knifeshot", + "spell_scroll_knock", + "spell_scroll_overcharge_eyes", + "spell_scroll_repelling_arc", + "spell_scroll_summon_floating_disk", + "spell_scroll_tornskin" + ], + "fg": 930, + "rotates": false + }, + { "id": "overlay_wielded_spell_scroll_acid_resistance", "fg": 930, "rotates": false }, + { "id": "spell_scroll_acid_resistance", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_animated_blade", "fg": 930, "rotates": false }, + { "id": "spell_scroll_animated_blade", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_biomancer_coagulant_weave", "fg": 930, "rotates": false }, + { "id": "spell_scroll_biomancer_coagulant_weave", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_biomancer_paralytic_dart", "fg": 930, "rotates": false }, + { "id": "spell_scroll_biomancer_paralytic_dart", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_biomancer_visceral_projection", "fg": 930, "rotates": false }, + { "id": "spell_scroll_biomancer_visceral_projection", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_bio_acidicspray", "fg": 930, "rotates": false }, + { "id": "spell_scroll_bio_acidicspray", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_bio_bonespear", "fg": 930, "rotates": false }, + { "id": "spell_scroll_bio_bonespear", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_bio_fleshpouch", "fg": 930, "rotates": false }, + { "id": "spell_scroll_bio_fleshpouch", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_bio_grotesque", "fg": 930, "rotates": false }, + { "id": "spell_scroll_bio_grotesque", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_bless", "fg": 930, "rotates": false }, + { "id": "spell_scroll_bless", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_blinding_flash", "fg": 930, "rotates": false }, + { "id": "spell_scroll_blinding_flash", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_burning_hands", "fg": 930, "rotates": false }, + { "id": "spell_scroll_burning_hands", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_cats_grace", "fg": 930, "rotates": false }, + { "id": "spell_scroll_cats_grace", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_chilling_touch", "fg": 930, "rotates": false }, + { "id": "spell_scroll_chilling_touch", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_clairvoyance", "fg": 930, "rotates": false }, + { "id": "spell_scroll_clairvoyance", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_cone_cold", "fg": 930, "rotates": false }, + { "id": "spell_scroll_cone_cold", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_create_atomic_lamp", "fg": 930, "rotates": false }, + { "id": "spell_scroll_create_atomic_lamp", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_create_atomic_light", "fg": 930, "rotates": false }, + { "id": "spell_scroll_create_atomic_light", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_create_lighter", "fg": 930, "rotates": false }, + { "id": "spell_scroll_create_lighter", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_crystallize_mana", "fg": 930, "rotates": false }, + { "id": "spell_scroll_crystallize_mana", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_dark_sight", "fg": 930, "rotates": false }, + { "id": "spell_scroll_dark_sight", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_druidic_healing", "fg": 930, "rotates": false }, + { "id": "spell_scroll_druidic_healing", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_druidic_regrowth", "fg": 930, "rotates": false }, + { "id": "spell_scroll_druidic_regrowth", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_druid_naturebow1", "fg": 930, "rotates": false }, + { "id": "spell_scroll_druid_naturebow1", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_druid_rootstrike", "fg": 930, "rotates": false }, + { "id": "spell_scroll_druid_rootstrike", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_druid_veggrasp", "fg": 930, "rotates": false }, + { "id": "spell_scroll_druid_veggrasp", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_druid_woodshaft", "fg": 930, "rotates": false }, + { "id": "spell_scroll_druid_woodshaft", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_eagles_sight", "fg": 930, "rotates": false }, + { "id": "spell_scroll_eagles_sight", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_earthshaper_pillar", "fg": 930, "rotates": false }, + { "id": "spell_scroll_earthshaper_pillar", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_earthshaper_stoneskin", "fg": 930, "rotates": false }, + { "id": "spell_scroll_earthshaper_stoneskin", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_eshaper_piercing_bolt", "fg": 930, "rotates": false }, + { "id": "spell_scroll_eshaper_piercing_bolt", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_eshaper_rockbolt", "fg": 930, "rotates": false }, + { "id": "spell_scroll_eshaper_rockbolt", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_eshaper_shardspray", "fg": 930, "rotates": false }, + { "id": "spell_scroll_eshaper_shardspray", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_eshaper_shardstorm", "fg": 930, "rotates": false }, + { "id": "spell_scroll_eshaper_shardstorm", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_ethereal_grasp", "fg": 930, "rotates": false }, + { "id": "spell_scroll_ethereal_grasp", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_fireball", "fg": 930, "rotates": false }, + { "id": "spell_scroll_fireball", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_foxs_cunning", "fg": 930, "rotates": false }, + { "id": "spell_scroll_foxs_cunning", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_freezing_touch", "fg": 930, "rotates": false }, + { "id": "spell_scroll_freezing_touch", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_frost_armor", "fg": 930, "rotates": false }, + { "id": "spell_scroll_frost_armor", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_frost_spray", "fg": 930, "rotates": false }, + { "id": "spell_scroll_frost_spray", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_glide_ice", "fg": 930, "rotates": false }, + { "id": "spell_scroll_glide_ice", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_gravity_well", "fg": 930, "rotates": false }, + { "id": "spell_scroll_gravity_well", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_hoary_blast", "fg": 930, "rotates": false }, + { "id": "spell_scroll_hoary_blast", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_holographic_transposition", "fg": 930, "rotates": false }, + { "id": "spell_scroll_holographic_transposition", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_holy_blade", "fg": 930, "rotates": false }, + { "id": "spell_scroll_holy_blade", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_ice_shield", "fg": 930, "rotates": false }, + { "id": "spell_scroll_ice_shield", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_ice_spike", "fg": 930, "rotates": false }, + { "id": "spell_scroll_ice_spike", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_invisibility", "fg": 930, "rotates": false }, + { "id": "spell_scroll_invisibility", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_jolt", "fg": 930, "rotates": false }, + { "id": "spell_scroll_jolt", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_lava_bomb", "fg": 930, "rotates": false }, + { "id": "spell_scroll_lava_bomb", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_laze", "fg": 930, "rotates": false }, + { "id": "spell_scroll_laze", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_lightning_blast", "fg": 930, "rotates": false }, + { "id": "spell_scroll_lightning_blast", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_lightning_bolt", "fg": 930, "rotates": false }, + { "id": "spell_scroll_lightning_bolt", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_light_healing", "fg": 930, "rotates": false }, + { "id": "spell_scroll_light_healing", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_magic_missile", "fg": 930, "rotates": false }, + { "id": "spell_scroll_magic_missile", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_magus_escape", "fg": 930, "rotates": false }, + { "id": "spell_scroll_magus_escape", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_magus_haste", "fg": 930, "rotates": false }, + { "id": "spell_scroll_magus_haste", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_magus_mana_beam", "fg": 930, "rotates": false }, + { "id": "spell_scroll_magus_mana_beam", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_magus_mana_blast", "fg": 930, "rotates": false }, + { "id": "spell_scroll_magus_mana_blast", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_magus_mana_bolt", "fg": 930, "rotates": false }, + { "id": "spell_scroll_magus_mana_bolt", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_megablast", "fg": 930, "rotates": false }, + { "id": "spell_scroll_megablast", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_mirror_image", "fg": 930, "rotates": false }, + { "id": "spell_scroll_mirror_image", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_necrotic_gaze", "fg": 930, "rotates": false }, + { "id": "spell_scroll_necrotic_gaze", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_nova_flare", "fg": 930, "rotates": false }, + { "id": "spell_scroll_nova_flare", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_obfuscated_body", "fg": 930, "rotates": false }, + { "id": "spell_scroll_obfuscated_body", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_ogres_strength", "fg": 930, "rotates": false }, + { "id": "spell_scroll_ogres_strength", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_pain_split", "fg": 930, "rotates": false }, + { "id": "spell_scroll_pain_split", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_phase_door", "fg": 930, "rotates": false }, + { "id": "spell_scroll_phase_door", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_point_flare", "fg": 930, "rotates": false }, + { "id": "spell_scroll_point_flare", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_protection_aura", "fg": 930, "rotates": false }, + { "id": "spell_scroll_protection_aura", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_purification_seed", "fg": 930, "rotates": false }, + { "id": "spell_scroll_purification_seed", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_quantum_tunnel_lesser", "fg": 930, "rotates": false }, + { "id": "spell_scroll_quantum_tunnel_lesser", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_recover_bionic_power", "fg": 930, "rotates": false }, + { "id": "spell_scroll_recover_bionic_power", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_recover_fatigue", "fg": 930, "rotates": false }, + { "id": "spell_scroll_recover_fatigue", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_recover_mana", "fg": 930, "rotates": false }, + { "id": "spell_scroll_recover_mana", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_recover_pain", "fg": 930, "rotates": false }, + { "id": "spell_scroll_recover_pain", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_recover_stamina", "fg": 930, "rotates": false }, + { "id": "spell_scroll_recover_stamina", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_seismic_stomp", "fg": 930, "rotates": false }, + { "id": "spell_scroll_seismic_stomp", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_animated_blade", "fg": 930, "rotates": false }, + { "id": "spell_scroll_animated_blade", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_summon_magic_motorcycle", "fg": 930, "rotates": false }, + { "id": "spell_scroll_summon_magic_motorcycle", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_smite", "fg": 930, "rotates": false }, + { "id": "spell_scroll_smite", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_spirit_armor", "fg": 930, "rotates": false }, + { "id": "spell_scroll_spirit_armor", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_stonefist", "fg": 930, "rotates": false }, + { "id": "spell_scroll_stonefist", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_stormshaper_ionization", "fg": 930, "rotates": false }, + { "id": "spell_scroll_stormshaper_ionization", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_stormshaper_wall_of_fog", "fg": 930, "rotates": false }, + { "id": "spell_scroll_stormshaper_wall_of_fog", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_storm_hammer", "fg": 930, "rotates": false }, + { "id": "spell_scroll_storm_hammer", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_summon_cats", "fg": 930, "rotates": false }, + { "id": "spell_scroll_summon_cats", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_summon_decayed_pouncer", "fg": 930, "rotates": false }, + { "id": "spell_scroll_summon_decayed_pouncer", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_bio_bonespear", "fg": 930, "rotates": false }, + { "id": "spell_scroll_bio_bonespear", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_summon_skeleton", "fg": 930, "rotates": false }, + { "id": "spell_scroll_summon_skeleton", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_summon_wisps", "fg": 930, "rotates": false }, + { "id": "spell_scroll_summon_wisps", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_summon_wolf", "fg": 930, "rotates": false }, + { "id": "spell_scroll_summon_wolf", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_summon_zombie", "fg": 930, "rotates": false }, + { "id": "spell_scroll_summon_zombie", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_synaptic_stimulation", "fg": 930, "rotates": false }, + { "id": "spell_scroll_synaptic_stimulation", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_taze", "fg": 930, "rotates": false }, + { "id": "spell_scroll_taze", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_vicious_tentacle", "fg": 930, "rotates": false }, + { "id": "spell_scroll_vicious_tentacle", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_windrun", "fg": 930, "rotates": false }, + { "id": "spell_scroll_windrun", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_windstrike", "fg": 930, "rotates": false }, + { "id": "spell_scroll_windstrike", "fg": 930, "rotates": false }, + { "id": "overlay_wielded_spell_scroll_x-ray", "fg": 930, "rotates": false }, + { "id": "spell_scroll_x-ray", "fg": 930, "rotates": false }, + { "id": "cauldron_demon_chitin", "fg": 931, "rotates": false }, + { "id": "overlay_wielded_cauldron_demon_chitin", "fg": 932, "rotates": false }, + { "id": "cauldron_orichalcum", "fg": 933, "rotates": false }, + { "id": "overlay_wielded_cauldron_orichalcum", "fg": 934, "rotates": false }, + { "id": "demon_forge", "fg": 935, "rotates": false }, + { "id": "overlay_wielded_demon_forge", "fg": 936, "rotates": false }, + { "id": "overlay_wielded_sewing_kit", "fg": 937, "rotates": false }, + { "id": "sewing_kit", "fg": 937, "rotates": false }, + { "id": "overlay_wielded_tailors_kit", "fg": 938 }, + { "id": "tailors_kit", "fg": 938 }, + { "id": "fold_orichalcum_frame", "fg": 939, "rotates": false }, + { "id": "overlay_wielded_fold_orichalcum_frame", "fg": 940, "rotates": false }, + { "id": "orichalcum_frame", "fg": 941, "rotates": false }, + { "id": "overlay_wielded_orichalcum_frame", "fg": 942, "rotates": false }, + { "id": "lizardfolk_club", "fg": 943, "rotates": false }, + { "id": "overlay_wielded_lizardfolk_club", "fg": 944, "rotates": false }, + { "id": "lizardfolk_javelin", "fg": 945, "rotates": false }, + { "id": "overlay_wielded_lizardfolk_javelin", "fg": 946, "rotates": false }, + { "id": "lizardfolk_javelin_gun", "fg": 947, "rotates": false }, + { "id": "overlay_wielded_lizardfolk_javelin_gun", "fg": 947, "rotates": false }, + { "id": "novice_kelvin_spellbook", "fg": 948, "rotates": false }, + { "id": "novice_earth_spellbook", "fg": 949, "rotates": false }, + { "id": "novice_storm_spellbook", "fg": 950, "rotates": false }, + { "id": "cestus", "fg": 951, "bg": 3, "rotates": false }, + { "id": "mana", "fg": 952, "rotates": false }, + { "id": "overlay_wielded_mana", "fg": 952, "rotates": false }, + { "id": "gaul_maraz", "fg": 953, "rotates": false }, + { "id": "overlay_wielded_gaul_maraz", "fg": 954, "rotates": false }, + { "id": "true_gaul_maraz", "fg": 955, "rotates": false }, + { "id": "overlay_wielded_true_gaul_maraz", "fg": 956, "rotates": false }, + { "id": "dbone_longsword", "fg": 957, "rotates": false }, + { "id": "dbone_battleaxe", "fg": 958, "rotates": false }, + { "id": "dbone_qiang", "fg": 959, "rotates": false }, + { "id": "dbone_tachi", "fg": 960, "rotates": false }, + { "id": "overlay_wielded_dbone_longsword", "fg": 961, "rotates": false }, + { "id": "overlay_wielded_dbone_battleaxe", "fg": 962, "rotates": false }, + { "id": "overlay_wielded_dbone_qiang", "fg": 963, "rotates": false }, + { "id": "overlay_wielded_dbone_tachi", "fg": 964, "rotates": false }, + { "id": "black_dbone_longsword", "fg": 965, "rotates": false }, + { "id": "black_dbone_battleaxe", "fg": 966, "rotates": false }, + { "id": "black_dbone_qiang", "fg": 967, "rotates": false }, + { "id": "black_dbone_tachi", "fg": 968, "rotates": false }, + { "id": "overlay_wielded_black_dbone_longsword", "fg": 969, "rotates": false }, + { "id": "overlay_wielded_black_dbone_battleaxe", "fg": 970, "rotates": false }, + { "id": "overlay_wielded_black_dbone_qiang", "fg": 971, "rotates": false }, + { "id": "overlay_wielded_black_dbone_tachi", "fg": 972, "rotates": false } + ], + "//": "range 513 to 1280", + "sprite_width": 32, + "sprite_height": 32, + "sprite_offset_x": 0, + "sprite_offset_y": 0 + }, + { + "file": "MagicalNights_Monsters.png", + "tiles": [ + { "id": "mon_demon_spider", "fg": 1281, "bg": 4, "rotates": false }, + { "id": "corpse_mon_demon_spider", "fg": 1282, "rotates": false }, + { "id": "mon_demon_spiderling", "fg": 1283, "bg": 4, "rotates": false }, + { "id": "corpse_mon_demon_spiderling", "fg": 1284, "rotates": false }, + { "id": "mon_dragon_black_wyrmling", "fg": 1285, "bg": 4, "rotates": false }, + { "id": "corpse_mon_dragon_black_wyrmling", "fg": 1286, "rotates": false }, + { "id": "mon_forgedemons", "fg": 1287, "bg": 4, "rotates": false }, + { "id": "corpse_mon_forgedemons", "fg": 1288, "rotates": false }, + { + "id": "mon_forgedwarves", + "fg": [ + { "weight": 3, "sprite": 1289 }, + { "weight": 3, "sprite": 1290 }, + { "weight": 3, "sprite": 1291 }, + { "weight": 3, "sprite": 1292 }, + { "weight": 3, "sprite": 1296 }, + { "weight": 3, "sprite": 1297 }, + { "weight": 3, "sprite": 1298 }, + { "weight": 3, "sprite": 1299 } + ], + "bg": 2, + "rotates": false + }, + { "id": "mon_mirror_image", "fg": 1293 }, + { "id": "mon_yulecat_cub", "fg": 1294, "bg": 4, "rotates": false }, + { "id": "corpse_mon_yulecat_cub", "fg": 1295, "rotates": false }, + { "id": "mon_forgemaster1", "fg": 1296, "bg": 2, "rotates": false }, + { "id": "corpse_mon_forgedwarves", "fg": 1300, "rotates": false }, + { "id": "corpse_mon_forgemaster1", "fg": 1300, "rotates": false }, + { + "id": "mon_goblin_chieftain", + "fg": [ + { "weight": 3, "sprite": 1302 }, + { "weight": 3, "sprite": 1303 }, + { "weight": 3, "sprite": 1304 }, + { "weight": 3, "sprite": 1305 }, + { "weight": 3, "sprite": 1306 }, + { "weight": 3, "sprite": 1307 } + ], + "bg": 2, + "rotates": false + }, + { "id": "corpse_mon_goblin_chieftain", "fg": 1308, "rotates": false }, + { + "id": "mon_goblin_slinger", + "fg": [ + { "weight": 3, "sprite": 1309 }, + { "weight": 3, "sprite": 1310 }, + { "weight": 3, "sprite": 1311 }, + { "weight": 3, "sprite": 1312 }, + { "weight": 3, "sprite": 1313 }, + { "weight": 3, "sprite": 1314 } + ], + "bg": 2, + "rotates": false + }, + { "id": "corpse_mon_goblin_slinger", "fg": 1315, "rotates": false }, + { + "id": "mon_goblin_warrior", + "fg": [ + { "weight": 3, "sprite": 1316 }, + { "weight": 3, "sprite": 1317 }, + { "weight": 3, "sprite": 1318 }, + { "weight": 3, "sprite": 1319 }, + { "weight": 3, "sprite": 1320 }, + { "weight": 3, "sprite": 1321 } + ], + "bg": 2, + "rotates": false + }, + { "id": "corpse_mon_goblin_warrior", "fg": 1322, "rotates": false }, + { "id": "mon_leprechaun", "fg": 1323, "bg": 4, "rotates": false }, + { "id": "corpse_mon_leprechaun", "fg": 1324, "rotates": false }, + { "id": "mon_workshop_elf", "fg": 1325, "bg": 4, "rotates": false }, + { "id": "corpse_mon_workshop_elf", "fg": 1326, "rotates": false }, + { "id": "mon_crocodile", "fg": 1327, "rotates": false }, + { "id": "corpse_mon_crocodile", "fg": 1328, "rotates": false }, + { "id": "mon_baleful_polymorph_frog", "fg": 1329, "bg": 1, "rotates": false }, + { "id": "corpse_mon_baleful_polymorph_frog", "fg": 1330, "rotates": false }, + { "id": "mon_black_pudding", "fg": 1331, "rotates": false }, + { "id": "mon_krabgek", "fg": 1332, "bg": 4, "rotates": false }, + { "id": "corpse_mon_krabgek", "fg": 1333, "rotates": false }, + { "id": "mon_lemure", "fg": 1334, "bg": 4, "rotates": false }, + { "id": "corpse_mon_lemure", "fg": 1335, "rotates": false }, + { "id": "mon_loup_garou", "fg": 1336, "bg": 4 }, + { "id": "mon_owlbear", "fg": 1337 }, + { "id": "corpse_mon_owlbear", "fg": 1338 }, + { "id": "mon_owlbear_cub", "fg": 1339 }, + { "id": "corpse_mon_owlbear_cub", "fg": 1340 }, + { "id": "mon_winter_wolf", "fg": 1341, "bg": 4, "rotates": false }, + { "id": "corpse_mon_winter_wolf", "fg": 1342, "rotates": false }, + { "id": "mon_shrieker", "fg": 1343, "bg": 4, "rotates": false }, + { "id": "corpse_mon_shrieker", "fg": 1344, "rotates": false }, + { "id": "mon_stirge", "fg": 1345, "rotates": false }, + { "id": "corpse_mon_stirge", "fg": 1346, "rotates": false }, + { + "id": "mon_wisp", + "fg": [ + { "weight": 3, "sprite": 1347 }, + { "weight": 3, "sprite": 1348 }, + { "weight": 3, "sprite": 1349 }, + { "weight": 3, "sprite": 1350 } + ] + }, + { "id": "mon_animated_blade", "fg": 1351 }, + { + "id": "mon_orc_archer", + "fg": [ + { "weight": 3, "sprite": 1352 }, + { "weight": 3, "sprite": 1353 }, + { "weight": 3, "sprite": 1354 }, + { "weight": 3, "sprite": 1355 }, + { "weight": 3, "sprite": 1356 }, + { "weight": 3, "sprite": 1357 } + ], + "bg": 4, + "rotates": false + }, + { "id": "corpse_mon_orc_archer", "fg": 1358, "rotates": false }, + { + "id": "mon_orc_blood_warrior", + "fg": [ + { "weight": 3, "sprite": 1359 }, + { "weight": 3, "sprite": 1360 }, + { "weight": 3, "sprite": 1361 }, + { "weight": 3, "sprite": 1362 }, + { "weight": 3, "sprite": 1363 }, + { "weight": 3, "sprite": 1364 } + ], + "bg": 4, + "rotates": false + }, + { "id": "corpse_mon_orc_blood_warrior", "fg": 1365, "rotates": false }, + { + "id": "mon_orc_warrior", + "fg": [ + { "weight": 3, "sprite": 1366 }, + { "weight": 3, "sprite": 1367 }, + { "weight": 3, "sprite": 1368 }, + { "weight": 3, "sprite": 1369 }, + { "weight": 3, "sprite": 1370 }, + { "weight": 3, "sprite": 1371 } + ], + "bg": 4, + "rotates": false + }, + { "id": "corpse_mon_orc_warrior", "fg": 1372, "rotates": false }, + { "id": "mon_were_zolf", "fg": 1373, "bg": 4 }, + { "id": "mon_zorc", "fg": 1374, "bg": 4 }, + { "id": "corpse_mon_zorc", "fg": 1375, "rotates": false }, + { "id": "broken_claygolem", "fg": 1376, "rotates": false }, + { "id": "overlay_wielded_broken_claygolem", "fg": 1376, "rotates": false }, + { "id": "broken_irongolem", "fg": 1377, "rotates": false }, + { "id": "overlay_wielded_broken_irongolem", "fg": 1377, "rotates": false }, + { "id": "broken_plasticgolem", "fg": 1378, "rotates": false }, + { "id": "overlay_wielded_broken_plasticgolem", "fg": 1378, "rotates": false }, + { "id": "broken_stonegolem", "fg": 1379, "rotates": false }, + { "id": "overlay_wielded_broken_stonegolem", "fg": 1379, "rotates": false }, + { "id": "broken_resingolem_fresh", "fg": 1380, "rotates": false }, + { "id": "overlay_wielded_broken_resingolem_fresh", "fg": 1380, "rotates": false }, + { "id": "broken_resingolem_half", "fg": 1381, "rotates": false }, + { "id": "overlay_wielded_broken_resingolem_half", "fg": 1381, "rotates": false }, + { "id": "broken_resingolem_cured", "fg": 1382, "rotates": false }, + { "id": "overlay_wielded_broken_resingolem_cured", "fg": 1382, "rotates": false } + ], + "//": "range 1281 to 1536", + "sprite_width": 32, + "sprite_height": 32, + "sprite_offset_x": 0, + "sprite_offset_y": 0 + }, + { + "file": "MagicalNights_normal_offset.png", + "tiles": [ { "id": "overlay_worn_wizard_hat", "fg": 1537, "rotates": false } ], + "//": "range 1537 to 1552", + "sprite_width": 32, + "sprite_height": 32, + "sprite_offset_x": 0, + "sprite_offset_y": -16 + }, + { + "file": "MagicalNights_large.png", + "tiles": [ + { "id": "bg_big_dirt", "fg": 1553, "rotates": false }, + { "id": "bg_big_golem_shadow", "fg": 1554, "rotates": false }, + { "id": "bg_big_large_shadow", "fg": 1556, "rotates": false }, + { "id": "bg_big_normal_shadow", "fg": 1556, "rotates": false }, + { "id": "bg_big_snow", "fg": 1557, "rotates": false }, + { "id": "bg_big_tall_shadow", "fg": 1558, "rotates": false }, + { "id": "f_alembic", "fg": 1559, "rotates": false }, + { + "id": "f_everburning_candelabra", + "fg": [ { "weight": 11, "sprite": 1560 }, { "weight": 11, "sprite": 1561 }, { "weight": 11, "sprite": 1562 } ], + "rotates": false, + "animated": true + }, + { "id": "f_glow_boulder", "fg": 1563, "rotates": false }, + { "id": "f_glow_boulder_season_autumn", "fg": 1564, "rotates": false }, + { "id": "f_glow_boulder_season_spring", "fg": 1565, "rotates": false }, + { "id": "f_glow_boulder_season_summer", "fg": 1566, "rotates": false }, + { "id": "f_glow_boulder_season_winter", "fg": 1567, "rotates": false }, + { "id": "f_huge_mana_crystal", "fg": 1568, "rotates": false }, + { "id": "overlay_worn_magic_lamp", "fg": 1569, "rotates": false }, + { "id": "overlay_worn_magic_light", "fg": 1570, "rotates": false }, + { "id": "overlay_wielded_gungnir", "fg": 1571, "rotates": false }, + { + "id": [ + "magic_academy_ground", + "magic_academy_2nd", + "magic_academy_3rd", + "magic_academy_4th", + "magic_academy_5th", + "magic_academy_6th", + "magic_academy_7th", + "magic_academy_8th" + ], + "fg": 1572, + "rotates": false + }, + { "id": "mon_demon_spider_queen", "fg": 1573, "rotates": false }, + { "id": "corpse_mon_demon_spider_queen", "fg": 1574, "rotates": false }, + { "id": "mon_dragon_black_young", "fg": 1575, "rotates": false }, + { "id": "corpse_mon_dragon_black_young", "fg": 1576, "rotates": false }, + { "id": "mon_forgeborn", "fg": 1577, "bg": 1558, "rotates": false }, + { "id": "corpse_mon_forgeborn", "fg": 1578, "rotates": false }, + { "id": "mon_claygolem", "fg": 1579, "bg": 1554, "rotates": false }, + { "id": "mon_irongolem", "fg": 1580, "bg": 1554, "rotates": false }, + { "id": "mon_plasticgolem", "fg": 1581, "bg": 1554, "rotates": false }, + { "id": "mon_stonegolem", "fg": 1582, "bg": 1554, "rotates": false }, + { "id": "mon_yulecat", "fg": 1583, "bg": 1555, "rotates": false }, + { "id": "corpse_mon_yulecat", "fg": 1584, "rotates": false }, + { "id": "mon_lizardfolk_chieftan", "fg": 1585, "rotates": false }, + { "id": "corpse_mon_lizardfolk_chieftan", "fg": 1586, "rotates": false }, + { "id": "mon_lizardfolk_hunter", "fg": 1587, "rotates": false }, + { "id": "corpse_mon_lizardfolk_hunter", "fg": 1588, "rotates": false }, + { "id": "mon_lizardfolk_shaman", "fg": 1589, "rotates": false }, + { "id": "corpse_mon_lizardfolk_shaman", "fg": 1590, "rotates": false }, + { "id": "mon_lizardfolk_warrior", "fg": 1591, "rotates": false }, + { "id": "corpse_mon_lizardfolk_warrior", "fg": 1592, "rotates": false }, + { "id": "mon_bulette", "fg": 1593, "rotates": false }, + { "id": "corpse_mon_bulette", "fg": 1594, "rotates": false }, + { "id": "mon_ogre", "fg": 1595, "rotates": false }, + { "id": "corpse_mon_ogre", "fg": 1596, "rotates": false }, + { "id": "mon_troll", "fg": 1597, "rotates": false }, + { "id": "corpse_mon_troll", "fg": 1598, "rotates": false }, + { + "id": "t_thconc_floor_echandelier", + "fg": [ { "weight": 11, "sprite": 1599 }, { "weight": 11, "sprite": 1600 }, { "weight": 11, "sprite": 1601 } ], + "bg": 1602, + "rotates": false, + "animated": true + }, + { "id": "t_tree_burnt", "fg": 1603, "bg": 1553, "rotates": false }, + { "id": "t_tree_burnt_season_autumn", "fg": 1604, "bg": 1553, "rotates": false }, + { "id": "t_tree_burnt_season_spring", "fg": 1605, "bg": 1553, "rotates": false }, + { "id": "t_tree_burnt_season_summer", "fg": 1606, "bg": 1553, "rotates": false }, + { "id": "t_tree_burnt_season_winter", "fg": 1607, "bg": 1557, "rotates": false }, + { "id": "mon_resingolem_fresh", "fg": 1608, "rotates": false }, + { "id": "mon_resingolem_half", "fg": 1609, "rotates": false }, + { "id": "mon_resingolem_cured", "fg": 1610, "rotates": false }, + { "id": "mon_mithrgolem", "fg": 1611, "rotates": false }, + { "id": "mon_orchigolem", "fg": 1612, "rotates": false } + ], + "//": "range 1553 to 1680", + "sprite_width": 64, + "sprite_height": 80, + "sprite_offset_x": -16, + "sprite_offset_y": -48 + }, + { + "file": "MagicalNights_huge.png", + "tiles": [ + { "id": "f_orrery", "fg": 1681, "rotates": false }, + { "id": "mon_dragon_black_adult", "fg": 1682, "rotates": false }, + { "id": "corpse_mon_dragon_black_adult", "fg": 1683, "rotates": false } + ], + "//": "range 1681 to 1696", + "sprite_width": 160, + "sprite_height": 128, + "sprite_offset_x": -48, + "sprite_offset_y": -48 + } + ] + } +] diff --git a/data/mods/Magiclysm/modinfo.json b/data/mods/Magical_Nights/modinfo.json similarity index 60% rename from data/mods/Magiclysm/modinfo.json rename to data/mods/Magical_Nights/modinfo.json index 003da373fe5e..d93153b1b5c9 100644 --- a/data/mods/Magiclysm/modinfo.json +++ b/data/mods/Magical_Nights/modinfo.json @@ -1,11 +1,11 @@ [ { "type": "MOD_INFO", - "id": "magiclysm", - "name": "Magiclysm", - "authors": [ "KorGgenT", "Aptronym", "LaVeyanFiend" ], - "maintainers": [ ], - "description": "Cataclysm but with magic spells, BN Edition!", + "id": "MagicalNights", + "name": "Magical Nights", + "authors": [ "Robbietheneko", "KorGgenT", "Aptronym", "LaVeyanFiend" ], + "maintainers": [ "Robbietheneko" ], + "description": "Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod, and a new head at the controls. ", "category": "content", "dependencies": [ "bn" ] }, diff --git a/data/mods/Magiclysm/monster_attacks.json b/data/mods/Magical_Nights/monster_attacks.json similarity index 100% rename from data/mods/Magiclysm/monster_attacks.json rename to data/mods/Magical_Nights/monster_attacks.json diff --git a/data/mods/Magiclysm/monster_factions.json b/data/mods/Magical_Nights/monster_factions.json old mode 100644 new mode 100755 similarity index 76% rename from data/mods/Magiclysm/monster_factions.json rename to data/mods/Magical_Nights/monster_factions.json index 1a3a64abf666..ea3c0cdf6a30 --- a/data/mods/Magiclysm/monster_factions.json +++ b/data/mods/Magical_Nights/monster_factions.json @@ -20,6 +20,12 @@ }, { "type": "MONSTER_FACTION", - "name": "goblins" + "name": "goblins", + "friendly": [ "orcs" ] + }, + { + "type": "MONSTER_FACTION", + "name": "orcs", + "friendly": [ "goblins" ] } ] diff --git a/data/mods/Magiclysm/monstergroups.json b/data/mods/Magical_Nights/monstergroups.json similarity index 94% rename from data/mods/Magiclysm/monstergroups.json rename to data/mods/Magical_Nights/monstergroups.json index 9c548c968487..631082a74714 100644 --- a/data/mods/Magiclysm/monstergroups.json +++ b/data/mods/Magical_Nights/monstergroups.json @@ -10,8 +10,10 @@ "name": "GROUP_FOREST", "default": "mon_null", "is_animal": true, + "override": false, + "auto_total": true, "monsters": [ - { "monster": "mon_owlbear", "freq": 10, "cost_multiplier": 10 }, + { "monster": "mon_owlbear", "freq": 7, "cost_multiplier": 10 }, { "monster": "mon_wisp", "freq": 3, "cost_multiplier": 10, "conditions": [ "NIGHT" ] }, { "monster": "mon_troll", "freq": 3, "cost_multiplier": 10, "conditions": [ "DAY" ] }, { "monster": "mon_claygolem", "freq": 8, "cost_multiplier": 3 }, @@ -25,6 +27,8 @@ "name": "GROUP_SWAMP", "default": "mon_null", "is_animal": true, + "override": false, + "auto_total": true, "monsters": [ { "monster": "mon_black_pudding", "freq": 14, "cost_multiplier": 1, "pack_size": [ 4, 6 ] }, { "monster": "mon_stirge", "freq": 7, "cost_multiplier": 1, "pack_size": [ 2, 8 ] }, @@ -42,6 +46,8 @@ "name": "GROUP_CAVE", "default": "mon_null", "is_animal": true, + "override": false, + "auto_total": true, "monsters": [ { "monster": "mon_owlbear", "freq": 100, "cost_multiplier": 10, "pack_size": [ 2, 4 ] }, { "monster": "mon_shrieker", "freq": 10, "cost_multiplier": 1 }, @@ -53,6 +59,8 @@ "name": "GROUP_WORM", "default": "mon_worm", "is_animal": true, + "override": false, + "auto_total": true, "monsters": [ { "monster": "mon_bulette", "freq": 5, "cost_multiplier": 40 } ] }, { @@ -113,6 +121,7 @@ "//": "Cheap golems used to defend the average wizard's tower.", "monsters": [ { "monster": "mon_plasticgolem", "freq": 60, "cost_multiplier": 1 }, + { "monster": "mon_resingolem_fresh", "freq": 30, "cost_multiplier": 1 }, { "monster": "mon_claygolem", "freq": 20, "cost_multiplier": 1 }, { "monster": "mon_stonegolem", "freq": 10, "cost_multiplier": 1 }, { "monster": "mon_irongolem", "freq": 5, "cost_multiplier": 1 } diff --git a/data/mods/Magiclysm/monstergroups_egg.json b/data/mods/Magical_Nights/monstergroups_egg.json similarity index 100% rename from data/mods/Magiclysm/monstergroups_egg.json rename to data/mods/Magical_Nights/monstergroups_egg.json diff --git a/data/mods/Magiclysm/monsters.json b/data/mods/Magical_Nights/monsters.json similarity index 64% rename from data/mods/Magiclysm/monsters.json rename to data/mods/Magical_Nights/monsters.json index 07bf47dfa2eb..6995b718c767 100644 --- a/data/mods/Magiclysm/monsters.json +++ b/data/mods/Magical_Nights/monsters.json @@ -44,6 +44,7 @@ "melee_cut": 10, "dodge": 6, "luminance": 16, + "path_settings": { "max_dist": 10 }, "armor_bash": 2, "armor_cut": 2, "armor_bullet": 2, @@ -53,5 +54,29 @@ "harvest": "exempt", "death_function": [ "MELT" ], "flags": [ "SEES", "HEARS", "NOHEAD", "HARDTOSHOOT", "FLIES", "PRIORITIZE_TARGETS", "NO_BREATHE", "NOGIB" ] + }, + { + "id": "mon_summoned_zombie", + "type": "MONSTER", + "copy-from": "mon_zombie", + "name": "Summoned Zombie", + "description": "A summoned zombie. Slightly more intelligent than its wild cousins.", + "path_settings": { "max_dist": 10 } + }, + { + "id": "mon_summoned_skeleton", + "type": "MONSTER", + "copy-from": "mon_skeleton", + "name": "Summoned Skeleton", + "description": "A summoned skeleton. Slightly more intelligent than its wild cousins. Seems like it somehow enjoys puns.", + "path_settings": { "max_dist": 10 } + }, + { + "id": "mon_summoned_zougar", + "type": "MONSTER", + "copy-from": "mon_zougar", + "name": "Summoned Decayed Pouncer", + "description": "A summoned zombie cougar. Slightly more intelligent than its wild cousins.", + "path_settings": { "max_dist": 10 } } ] diff --git a/data/mods/Magiclysm/monsters/demon_spider.json b/data/mods/Magical_Nights/monsters/demon_spider.json similarity index 98% rename from data/mods/Magiclysm/monsters/demon_spider.json rename to data/mods/Magical_Nights/monsters/demon_spider.json index 806f7ef1a148..6b4223e5aa45 100644 --- a/data/mods/Magiclysm/monsters/demon_spider.json +++ b/data/mods/Magical_Nights/monsters/demon_spider.json @@ -10,7 +10,7 @@ "type": "harvest", "//": "separate harvest entry for future special alchemical items", "entries": [ - { "drop": "tainted_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "blood_tainted", "type": "blood", "mass_ratio": 0.1 }, { "drop": "meat_tainted", "type": "flesh", "mass_ratio": 0.1 }, { "drop": "meat", "type": "flesh", "mass_ratio": 0.05 }, { "drop": "demon_chitin_piece", "type": "bone", "mass_ratio": 0.04 }, diff --git a/data/mods/Magiclysm/monsters/dragon.json b/data/mods/Magical_Nights/monsters/dragon.json similarity index 93% rename from data/mods/Magiclysm/monsters/dragon.json rename to data/mods/Magical_Nights/monsters/dragon.json index f68f3b58916c..a9bde8a48da6 100644 --- a/data/mods/Magiclysm/monsters/dragon.json +++ b/data/mods/Magical_Nights/monsters/dragon.json @@ -88,7 +88,7 @@ "melee_dice_sides": 4, "melee_cut": 9, "dodge": 5, - "armor_bash": 2, + "armor_bash": 4, "armor_cut": 12, "armor_bullet": 10, "armor_acid": 600, @@ -102,19 +102,7 @@ [ "scratch", 7 ], { "type": "spell", "spell_data": { "id": "dragon_breath_black", "min_level": 4 }, "cooldown": 20 } ], - "flags": [ - "SEES", - "HEARS", - "SMELLS", - "KEENNOSE", - "PATH_AVOID_DANGER_2", - "WARM", - "SWIMS", - "ATTACKMON", - "ACIDPROOF", - "PUSH_MON", - "FLIES" - ] + "flags": [ "SEES", "HEARS", "SMELLS", "KEENNOSE", "PATH_AVOID_DANGER_2", "WARM", "SWIMS", "ACIDPROOF", "PUSH_MON", "FLIES" ] }, { "id": "mon_dragon_black_young", @@ -130,7 +118,7 @@ "melee_dice": 3, "melee_dice_sides": 10, "melee_cut": 16, - "armor_bash": 8, + "armor_bash": 12, "armor_cut": 20, "armor_bullet": 16, "special_attacks": [ @@ -147,14 +135,14 @@ "copy-from": "mon_dragon_black_young", "//": "If it were possible, the adult would be about double the size of a young version or so.", "weight": "2200 kg", - "hp": 3500, + "hp": 2000, "melee_dice": 4, "melee_dice_sides": 12, - "melee_cut": 28, - "armor_bash": 14, - "armor_cut": 30, + "melee_cut": 24, + "armor_bash": 20, + "armor_cut": 32, "armor_bullet": 24, - "dodge": 3, + "dodge": 2, "//2": "Large means powerful, but it does not mean fast.", "speed": 100, "delete": { "flags": [ "PATH_AVOID_DANGER_2" ] }, diff --git a/data/mods/Magiclysm/monsters/goblins.json b/data/mods/Magical_Nights/monsters/goblins.json similarity index 98% rename from data/mods/Magiclysm/monsters/goblins.json rename to data/mods/Magical_Nights/monsters/goblins.json index e7c1920390c3..71c45bf9d78c 100644 --- a/data/mods/Magiclysm/monsters/goblins.json +++ b/data/mods/Magical_Nights/monsters/goblins.json @@ -9,7 +9,7 @@ "species": [ "GOBLIN" ], "volume": "30 L", "weight": "45 kg", - "hp": 45, + "hp": 50, "speed": 115, "material": [ "flesh" ], "symbol": "g", @@ -79,7 +79,7 @@ "copy-from": "mon_goblin_warrior", "name": { "str": "Goblin Chieftain" }, "description": "An ugly bastard of a goblin who asserted his rule over the rest through liberal application of violence and a little extra cunning. He's much tougher, and he brandishes a weapon that has faint tinges of magic.", - "hp": 135, + "hp": 150, "melee_dice_sides": 8, "melee_damage": [ { "damage_type": "cut", "amount": 4 } ], "death_drops": "goblin_chieftain_drops" diff --git a/data/mods/Magical_Nights/monsters/golems.json b/data/mods/Magical_Nights/monsters/golems.json new file mode 100644 index 000000000000..59cb7987b876 --- /dev/null +++ b/data/mods/Magical_Nights/monsters/golems.json @@ -0,0 +1,294 @@ +[ + { + "id": "mon_claygolem", + "type": "MONSTER", + "name": "clay golem", + "description": "A large, humanoid golem made from clay. Its proportions are off and it seems fragile.", + "default_faction": "robot", + "bodytype": "human", + "species": [ "ROBOT" ], + "diff": 2, + "volume": "120 L", + "weight": "122 kg", + "hp": 100, + "speed": 80, + "material": [ "clay" ], + "symbol": "X", + "color": "brown", + "aggression": 8, + "morale": 100, + "melee_skill": 6, + "melee_dice": 2, + "melee_dice_sides": 10, + "melee_cut": 5, + "armor_bash": 10, + "armor_cut": 10, + "armor_bullet": 10, + "armor_fire": 4, + "dodge": 0, + "vision_day": 40, + "vision_night": 40, + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "flags": [ "SEES", "NO_BREATHE", "ACIDPROOF", "LOUDMOVES" ] + }, + { + "id": "mon_plasticgolem", + "type": "MONSTER", + "name": { "str": "plastic golem" }, + "description": "Traditionally, making a golem is a months-long process involving hand tools and precision craftsmanship. A stone golem is as much a work of art as it is a magical device. The advent of 3D printing made it easy to get into the golem-making hobby, and plastic golems have soared in popularity.", + "default_faction": "robot", + "species": [ "ROBOT" ], + "volume": "150 L", + "weight": "70 kg", + "hp": 120, + "speed": 90, + "material": [ "plastic" ], + "symbol": "G", + "color": "light_gray", + "aggression": 30, + "morale": 100, + "armor_bash": 18, + "armor_cut": 6, + "armor_bullet": 5, + "melee_skill": 5, + "melee_dice": 3, + "melee_dice_sides": 6, + "melee_cut": 3, + "special_attacks": [ { "type": "spell", "spell_data": { "id": "mon_magic_missile", "min_level": 1 }, "cooldown": 25 } ], + "vision_day": 30, + "vision_night": 30, + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "flags": [ "SEES", "HEARS", "NO_BREATHE", "LOUDMOVES" ] + }, + { + "id": "mon_stonegolem", + "type": "MONSTER", + "name": "stone golem", + "description": "A large, humanoid golem made from stone. Its fists look similar to rockets.", + "default_faction": "robot", + "bodytype": "human", + "species": [ "ROBOT" ], + "diff": 2, + "volume": "120 L", + "weight": "162 kg", + "hp": 250, + "speed": 60, + "material": [ "stone" ], + "symbol": "X", + "color": "light_gray", + "aggression": 8, + "morale": 100, + "melee_skill": 6, + "melee_dice": 3, + "melee_dice_sides": 8, + "melee_cut": 6, + "armor_bash": 20, + "armor_cut": 20, + "armor_bullet": 16, + "armor_fire": 20, + "dodge": 0, + "vision_day": 40, + "vision_night": 40, + "special_attacks": [ { "type": "spell", "spell_data": { "id": "rocket_punch", "min_level": 5 }, "cooldown": 10 } ], + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "flags": [ "SEES", "NO_BREATHE", "ACIDPROOF", "LOUDMOVES" ] + }, + { + "id": "mon_irongolem", + "type": "MONSTER", + "name": "iron golem", + "description": "A large, humanoid golem made from iron. Some sort of noxious gas seems to be seeping from its mouth.", + "default_faction": "robot", + "bodytype": "human", + "species": [ "ROBOT" ], + "diff": 2, + "volume": "120 L", + "weight": "945 kg", + "hp": 400, + "speed": 50, + "material": [ "iron" ], + "symbol": "X", + "color": "dark_gray", + "aggression": 9, + "morale": 100, + "melee_skill": 6, + "melee_dice": 3, + "melee_dice_sides": 10, + "melee_cut": 7, + "armor_bash": 32, + "armor_cut": 32, + "armor_bullet": 26, + "armor_fire": 32, + "dodge": 0, + "vision_day": 40, + "vision_night": 40, + "special_attacks": [ { "type": "spell", "spell_data": { "id": "gas_attack", "min_level": 5 }, "cooldown": 60 } ], + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "flags": [ "SEES", "NO_BREATHE", "ACIDPROOF", "LOUDMOVES" ] + }, + { + "id": "mon_resingolem_fresh", + "type": "MONSTER", + "name": { "str": "fresh resin golem" }, + "description": "Traditionally, creating a golem is a long and arduous process, taking several months for a golem so large as this one. However, the advent of modern materials has allowed for much simpler and quicker to make golems. This golem appears to somehow still be very fresh, almost as if it had only been very recently poured, and it can likely recover from wounds rather quickly", + "default_faction": "robot", + "bodytype": "human", + "species": [ "ROBOT" ], + "volume": "150 L", + "weight": "70 kg", + "hp": 150, + "speed": 90, + "material": [ "plastic" ], + "symbol": "G", + "color": "green", + "aggression": 30, + "morale": 100, + "armor_bash": 12, + "armor_cut": 8, + "armor_bullet": 7, + "melee_skill": 5, + "melee_dice": 4, + "melee_dice_sides": 6, + "melee_cut": 3, + "vision_day": 30, + "vision_night": 30, + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "regenerates": 25, + "upgrades": { "into": "mon_resingolem_half", "half_life": 25 }, + "flags": [ "SEES", "HEARS", "NO_BREATHE", "LOUDMOVES" ] + }, + { + "id": "mon_resingolem_half", + "type": "MONSTER", + "name": { "str": "somewhat-cured resin golem" }, + "description": "Traditionally, creating a golem is a long and arduous process, taking several months for a golem so large as this one. However, the advent of modern materials has allowed for much simpler and quicker to make golems. This golem appears to be partially, but not fully, cured. As such, it can likely recover from small injuries given some time.", + "default_faction": "robot", + "bodytype": "human", + "species": [ "ROBOT" ], + "volume": "150 L", + "weight": "70 kg", + "hp": 250, + "speed": 90, + "material": [ "plastic" ], + "symbol": "G", + "color": "blue", + "aggression": 30, + "morale": 100, + "armor_bash": 20, + "armor_cut": 14, + "armor_bullet": 14, + "melee_skill": 6, + "melee_dice": 4, + "melee_dice_sides": 8, + "melee_cut": 6, + "vision_day": 30, + "vision_night": 30, + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "regenerates": 10, + "upgrades": { "into": "mon_resingolem_cured", "half_life": 25 }, + "flags": [ "SEES", "HEARS", "NO_BREATHE", "LOUDMOVES" ] + }, + { + "id": "mon_resingolem_cured", + "type": "MONSTER", + "name": { "str": "hardened resin golem" }, + "description": "Traditionally, creating a golem is a long and arduous process, taking several months for a golem so large as this one. However, the advent of modern materials has allowed for much simpler and quicker to make golems. This golem appears to be fully cured, meaning it'll be almost like stone. You can't quite tell whether that's just a pattern on it, or if it's something more sinister…", + "default_faction": "robot", + "bodytype": "human", + "species": [ "ROBOT" ], + "volume": "150 L", + "weight": "70 kg", + "hp": 375, + "speed": 90, + "material": [ "plastic" ], + "symbol": "G", + "color": "red", + "aggression": 30, + "morale": 100, + "armor_bash": 30, + "armor_cut": 26, + "armor_bullet": 24, + "melee_skill": 8, + "melee_dice": 4, + "melee_dice_sides": 10, + "melee_cut": 5, + "vision_day": 30, + "vision_night": 30, + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "flags": [ "SEES", "HEARS", "NO_BREATHE", "LOUDMOVES" ] + }, + { + "id": "mon_orchigolem", + "type": "MONSTER", + "name": "orichalcum golem", + "description": "A large, humanoid golem made from orichalcum. It's arms are fashioned into sharp blades.", + "default_faction": "robot", + "bodytype": "human", + "species": [ "ROBOT" ], + "diff": 2, + "volume": "120 L", + "weight": "600 kg", + "hp": 600, + "speed": 70, + "material": [ "orichalcum_metal" ], + "symbol": "X", + "color": "light_green", + "aggression": 9, + "morale": 100, + "melee_skill": 10, + "melee_dice": 5, + "melee_dice_sides": 12, + "melee_cut": 10, + "armor_bash": 40, + "armor_cut": 40, + "armor_bullet": 35, + "armor_fire": 40, + "dodge": 0, + "vision_day": 40, + "vision_night": 40, + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "flags": [ "SEES", "NO_BREATHE", "ACIDPROOF", "LOUDMOVES" ] + }, + { + "id": "mon_mithrgolem", + "type": "MONSTER", + "name": "mithril golem", + "description": "A large, humanoid golem made from mithril. This golem is practically invulnerable. Luckily, it is less aggressive", + "default_faction": "robot", + "bodytype": "human", + "species": [ "ROBOT" ], + "diff": 2, + "volume": "120 L", + "weight": "945 kg", + "hp": 800, + "speed": 80, + "material": [ "mithril_metal" ], + "symbol": "X", + "color": "light_blue", + "looks_like": "mon_irongolem", + "aggression": 1, + "morale": 100, + "melee_skill": 8, + "melee_dice": 3, + "melee_dice_sides": 10, + "melee_cut": 7, + "armor_bash": 50, + "armor_cut": 50, + "armor_bullet": 40, + "armor_fire": 50, + "dodge": 0, + "vision_day": 40, + "vision_night": 40, + "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], + "death_function": [ "BROKEN" ], + "flags": [ "SEES", "NO_BREATHE", "ACIDPROOF", "LOUDMOVES" ] + } +] diff --git a/data/mods/Magiclysm/monsters/lizardfolk.json b/data/mods/Magical_Nights/monsters/lizardfolk.json similarity index 100% rename from data/mods/Magiclysm/monsters/lizardfolk.json rename to data/mods/Magical_Nights/monsters/lizardfolk.json diff --git a/data/mods/Magiclysm/monsters/monsterdrops.json b/data/mods/Magical_Nights/monsters/monsterdrops.json old mode 100644 new mode 100755 similarity index 53% rename from data/mods/Magiclysm/monsters/monsterdrops.json rename to data/mods/Magical_Nights/monsters/monsterdrops.json index 7407fe5efbc9..c95b718eb155 --- a/data/mods/Magiclysm/monsters/monsterdrops.json +++ b/data/mods/Magical_Nights/monsters/monsterdrops.json @@ -37,5 +37,41 @@ { "item": "cuirass_scrap", "prob": 40 }, { "group": "enchanted_melee_weapons_plus1", "prob": 100 } ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "orc_warrior_drops", + "entries": [ + { "item": "chainmail_legs", "prob": 40 }, + { "item": "chainmail_feet", "prob": 40 }, + { "item": "chainmail_arms", "prob": 40 }, + { "item": "chainmail_vest", "prob": 40 }, + { "item": "cutlass", "prob": 95 } + ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "orc_archer_drops", + "entries": [ + { "item": "chainmail_legs", "prob": 40 }, + { "item": "chainmail_feet", "prob": 40 }, + { "item": "chainmail_arms", "prob": 40 }, + { "item": "chainmail_vest", "prob": 40 }, + { "item": "longbow", "prob": 95 } + ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "orc_blood_warrior_drops", + "entries": [ + { "item": "chainmail_legs", "prob": 40 }, + { "item": "chainmail_feet", "prob": 40 }, + { "item": "chainmail_arms", "prob": 40 }, + { "item": "chainmail_vest", "prob": 40 }, + { "item": "pike_plus_one", "prob": 95 } + ] } ] diff --git a/data/mods/Magiclysm/monsters/monsters.json b/data/mods/Magical_Nights/monsters/monsters.json similarity index 97% rename from data/mods/Magiclysm/monsters/monsters.json rename to data/mods/Magical_Nights/monsters/monsters.json index 4d454ca686e2..ba0660b71bb4 100644 --- a/data/mods/Magiclysm/monsters/monsters.json +++ b/data/mods/Magical_Nights/monsters/monsters.json @@ -3,7 +3,7 @@ "id": "mon_owlbear", "type": "MONSTER", "name": "owlbear", - "description": "The horrible owlbear is probably the result of genetic experimentation by some insane wizard. These creatures inhabit the tangled forest regions of every temperate clime, as well as subterranean labyrinths. They are ravenous eaters, aggressive hunters, and evil tempered at all times. They attack prey on sight and will fight to the death.", + "description": "The horrible owlbear is probably the result of genetic experimentation by some insane wizard. These creatures inhabit the tangled forest regions of every temperate climate, as well as subterranean labyrinths. They are even more easily angered than normal bears, so it's best to keep a distance. Something tells you this isn't exactly a very old species, based on only recently seeing them.", "default_faction": "magical_beast", "bodytype": "bear", "species": [ "MAGICAL_BEAST" ], @@ -80,7 +80,7 @@ "symbol": "K", "color": "dark_gray", "type": "MONSTER", - "flags": [ "SEES", "HEARS", "SMELLS", "KEENNOSE", "PATH_AVOID_DANGER_1", "WARM" ], + "flags": [ "SEES", "HEARS", "SMELLS", "KEENNOSE", "PATH_AVOID_DANGER_1", "WARM", "BIOPROOF" ], "harvest": "mutant_human", "material": [ "hflesh" ], "bodytype": "human", diff --git a/data/mods/Magical_Nights/monsters/orcs.json b/data/mods/Magical_Nights/monsters/orcs.json new file mode 100755 index 000000000000..fccf64f475e3 --- /dev/null +++ b/data/mods/Magical_Nights/monsters/orcs.json @@ -0,0 +1,89 @@ +[ + { + "id": "mon_orc_warrior", + "type": "MONSTER", + "name": "Orc Warrior", + "description": "A big, badly behaved brutish humanoid. Armed with a sword and possessing more than enough strength to use it to deadly effect, you don't want to be in the way of one when its angry. It's also well armored, alongside a hide one might slightly exaggerate as being ironlike. Generally less intelligent than goblins, but it's ill advised to mention that.", + "default_faction": "orcs", + "bodytype": "human", + "species": [ "ORC" ], + "volume": "90 L", + "weight": "120 kg", + "hp": 150, + "speed": 90, + "material": [ "flesh" ], + "symbol": "O", + "color": "green", + "aggression": 90, + "morale": 80, + "vision_day": 20, + "vision_night": 10, + "melee_skill": 6, + "melee_dice": 3, + "melee_dice_sides": 8, + "melee_damage": [ { "damage_type": "cut", "amount": 4 } ], + "dodge": 1, + "armor_bash": 15, + "armor_cut": 18, + "armor_bullet": 8, + "armor_stab": 12, + "harvest": "human", + "//": "We haven't demihuman, so I went with the Troll solution of just going human.", + "death_function": [ "NORMAL" ], + "death_drops": "orc_warrior_drops", + "special_attacks": [ { "type": "bite", "cooldown": 5 } ], + "flags": [ + "SEES", + "HEARS", + "SMELLS", + "PATH_AVOID_DANGER_1", + "GROUP_MORALE", + "ATTACKMON", + "PUSH_MON", + "SWARMS", + "BONES", + "CAN_OPEN_DOORS" + ] + }, + { + "type": "MONSTER", + "id": "mon_orc_archer", + "name": { "str": "Orc 'Arrer" }, + "description": "A big brute who wields a powerful bow. Not as respected among orc society, but still very effective. It won't hesitate to slam you with the bow if necessary, though.", + "copy-from": "mon_orc_warrior", + "melee_skill": 3, + "dodge": 2, + "death_drops": "orc_archer_drops", + "starting_ammo": { "arrow_metal_sharpened_fletched": 30 }, + "extend": { + "special_attacks": [ + { + "type": "gun", + "cooldown": 15, + "move_cost": 120, + "gun_type": "longbow", + "ammo_type": "arrow_metal_sharpened_fletched", + "fake_skills": [ [ "gun", 6 ], [ "rifle", 6 ] ], + "fake_dex": 8, + "fake_per": 8, + "require_targeting_player": false, + "description": "The orc fires its bow at you!", + "ranges": [ [ 2, 18, "DEFAULT" ] ], + "no_ammo_sound": "grunting" + } + ] + } + }, + { + "id": "mon_orc_blood_warrior", + "type": "MONSTER", + "copy-from": "mon_orc_warrior", + "name": { "str": "Orc Blood Warrior" }, + "description": "As a deviation from the normal verdant skin of the orcs, the blood warriors are believed to be blessed by the gods of the orcs. They certainly look the part, and from what you can tell their strength matches up with it. You best be ready for a fight, because they'll certainly give you one.", + "hp": 300, + "color": "red", + "melee_dice_sides": 12, + "melee_damage": [ { "damage_type": "cut", "amount": 8 }, { "damage_type": "stab", "amount": 4 } ], + "death_drops": "orc_blood_warrior_drops" + } +] diff --git a/data/mods/Magiclysm/npc/TALK_HEALER_GREY.json b/data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json similarity index 100% rename from data/mods/Magiclysm/npc/TALK_HEALER_GREY.json rename to data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json diff --git a/data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json b/data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json similarity index 100% rename from data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json rename to data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json diff --git a/data/mods/Magiclysm/npc/TALK_TECHNO_KID.json b/data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json similarity index 100% rename from data/mods/Magiclysm/npc/TALK_TECHNO_KID.json rename to data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json diff --git a/data/mods/Magiclysm/npc/classes.json b/data/mods/Magical_Nights/npc/classes.json similarity index 100% rename from data/mods/Magiclysm/npc/classes.json rename to data/mods/Magical_Nights/npc/classes.json diff --git a/data/mods/Magiclysm/npc/factions.json b/data/mods/Magical_Nights/npc/factions.json similarity index 100% rename from data/mods/Magiclysm/npc/factions.json rename to data/mods/Magical_Nights/npc/factions.json diff --git a/data/mods/Magiclysm/npc/items_worn.json b/data/mods/Magical_Nights/npc/items_worn.json similarity index 100% rename from data/mods/Magiclysm/npc/items_worn.json rename to data/mods/Magical_Nights/npc/items_worn.json diff --git a/data/mods/Magiclysm/npc/missiondef.json b/data/mods/Magical_Nights/npc/missiondef.json similarity index 98% rename from data/mods/Magiclysm/npc/missiondef.json rename to data/mods/Magical_Nights/npc/missiondef.json index 3bb3f7f0c874..57018db96623 100644 --- a/data/mods/Magiclysm/npc/missiondef.json +++ b/data/mods/Magical_Nights/npc/missiondef.json @@ -89,7 +89,7 @@ "dialogue": { "describe": "You have proven you are one of the few, will you stand with the few again?", "offer": "We must continue the purge. Remove 150 more of the cursed from this land and you shall be blessed with greatness.", - "accepted": "Blessed be. You are a true testament to the few.", + "accepted": "Blessed be. You are a true testament to the few.", "rejected": "I see. Perhaps you will find your way back to us one day.", "advice": "The awakened stir in even the darkest of corners. Seek them out and destroy them.", "inquire": "Blessed be.", diff --git a/data/mods/Magiclysm/npc/npc.json b/data/mods/Magical_Nights/npc/npc.json similarity index 100% rename from data/mods/Magiclysm/npc/npc.json rename to data/mods/Magical_Nights/npc/npc.json diff --git a/data/mods/Magical_Nights/obsolete.json b/data/mods/Magical_Nights/obsolete.json new file mode 100644 index 000000000000..3283d55cddb4 --- /dev/null +++ b/data/mods/Magical_Nights/obsolete.json @@ -0,0 +1,19 @@ +[ + { + "type": "recipe", + "result": "flu_shot", + "obsolete": true + }, + { + "id": "armor_stonefist", + "type": "MIGRATION", + "replace": "stonefist" + }, + { + "id": "bio_fuel_cell_blood", + "type": "bionic", + "name": { "str": "Obsolete Blood Power Generator CBM" }, + "description": "This bionic is obsolete!", + "occupied_bodyparts": [ [ "torso", 8 ] ] + } +] diff --git a/data/mods/Magiclysm/professions.json b/data/mods/Magical_Nights/professions.json similarity index 86% rename from data/mods/Magiclysm/professions.json rename to data/mods/Magical_Nights/professions.json index 0ce1bb613ff0..18ef0afc6dd5 100644 --- a/data/mods/Magiclysm/professions.json +++ b/data/mods/Magical_Nights/professions.json @@ -4,7 +4,7 @@ "id": "wizard_novice", "name": "Would-be Wizard", "description": "You found a pamphlet with bright colors claiming you can be a Wizard, oddly serene with the world falling down around you.", - "points": 1, + "points": 0, "items": { "both": [ "jeans", "tshirt", "gloves_light", "hat_ball", "boots", "socks", "hoodie", "knit_scarf", "wizard_beginner" ], "male": [ "boxer_briefs" ], @@ -16,7 +16,7 @@ "id": "pyromaniac", "name": "Pyromaniac Kelvinist", "description": "You have loved fire all of your life. You have now discovered your inner fire, and want to exercise that upon the world.", - "points": 2, + "points": 1, "items": { "both": [ "lighter", "sneakers", "pants", "tshirt", "jacket_light", "pyro" ], "male": [ "boxer_briefs" ], @@ -29,7 +29,7 @@ "id": "druid", "name": "Druid", "description": "The ancient circle of druids is gone with the Cataclysm. Nature must thrive.", - "points": 2, + "points": 1, "items": { "both": [ "druid_spellbook", "leathersandals", "robe", "rope_makeshift_30", "hide_bag", "hat_fur", "gloves_wraps_fur" ] }, @@ -200,11 +200,22 @@ "id": "novice_necromancer", "name": "Novice Necromancer", "description": "You always had to hide your magic, as it was generally not an acceptable type of magic in the wizarding world, but with the Cataclysm you need to pull every trick out of the book.", - "spells": [ { "id": "summon_zombie", "level": 5 }, { "id": "necrotic_gaze", "level": 1 } ], - "points": 2, + "spells": [ { "id": "summon_zombie", "level": 1 }, { "id": "necrotic_gaze", "level": 1 } ], + "points": 1, "skills": [ { "level": 1, "name": "spellcraft" } ], "items": { - "both": [ "jeans", "tshirt", "gloves_light", "hat_ball", "boots", "socks", "hoodie", "knit_scarf", "primitive_knife" ], + "both": [ + "jeans", + "tshirt", + "gloves_light", + "hat_ball", + "boots", + "socks", + "hoodie", + "knit_scarf", + "primitive_knife", + "summon_undead_spellbook" + ], "male": [ "boxer_briefs" ], "female": [ "bra", "panties" ] }, @@ -218,7 +229,7 @@ "spells": [ { "id": "lightning_bolt", "level": 1 }, { "id": "windrun", "level": 1 } ], "points": 0, "items": { - "both": [ "jeans", "tshirt", "hat_ball", "sneakers", "socks", "hoodie" ], + "both": [ "jeans", "tshirt", "hat_ball", "sneakers", "socks", "hoodie", "novice_storm_spellbook" ], "male": [ "boxer_briefs" ], "female": [ "bra", "panties" ] }, @@ -232,7 +243,7 @@ "spells": [ { "id": "stonefist", "level": 1 }, { "id": "seismic_stomp", "level": 1 } ], "points": 0, "items": { - "both": [ "jeans", "tshirt", "boxing_gloves", "hat_ball", "sneakers", "socks", "hoodie" ], + "both": [ "jeans", "tshirt", "boxing_gloves", "hat_ball", "sneakers", "socks", "hoodie", "novice_earth_spellbook" ], "male": [ "boxer_briefs" ], "female": [ "bra", "panties" ] }, @@ -246,10 +257,24 @@ "spells": [ { "id": "synaptic_stimulation", "level": 4 } ], "points": 0, "items": { - "both": [ "jeans", "tshirt", "gloves_light", "hat_ball", "sneakers", "socks", "hoodie" ], + "both": [ "jeans", "tshirt", "gloves_light", "hat_ball", "sneakers", "socks", "hoodie", "novice_techno_spellbook" ], "male": [ "boxer_briefs" ], "female": [ "bra", "panties" ] }, "traits": [ "TECHNOMANCER" ] + }, + { + "type": "profession", + "id": "novice_kelvinist", + "name": "Novice Kelvinist", + "description": "Even from a young age, you'd always felt drawn to the hot and cold. Fire had always warmed your spirits, and every Winter you were praying for a snow day simply because you loved them so much, even as you got older. It's only natural that you'd find yourself learning the magic to control these primal elements.", + "spells": [ { "id": "create_lighter", "level": 1 }, { "id": "chilling_touch", "level": 1 } ], + "points": 0, + "items": { + "both": [ "jeans", "tshirt", "hat_ball", "gloves_light", "sneakers", "socks", "hoodie", "novice_kelvin_spellbook" ], + "male": [ "boxer_briefs" ], + "female": [ "bra", "panties" ] + }, + "traits": [ "KELVINIST" ] } ] diff --git a/data/mods/Magiclysm/qualities.json b/data/mods/Magical_Nights/qualities.json similarity index 100% rename from data/mods/Magiclysm/qualities.json rename to data/mods/Magical_Nights/qualities.json diff --git a/data/mods/Magical_Nights/readme.md b/data/mods/Magical_Nights/readme.md new file mode 100644 index 000000000000..a7a5ce08e3ee --- /dev/null +++ b/data/mods/Magical_Nights/readme.md @@ -0,0 +1,12 @@ +# The Ancestry of this Mod +This mod, Magical Nights, is built off of the version of Magiclysm previously found in Cataclysm: Bright Nights. As such, some thanks goes to KorGgenT, Aptronym, and LaVeyanFiend for their past work on Magiclysm. + +I adopted that version of Magiclysm, becoming its maintainer. I rebalanced Demon Spiders, I rebalanced almost every single spell in the mod, and even added my own content (in the form of my own take on Goblins, some clothing mods (including owlbear fur), and the dragonbone weapons). +However, I found myself disagreeing fundamentally with much of KorG's original vision for Magiclysm, particularly in the lore. Thus, Magical Nights was born. + +# What is the big lore shift you've made? +I'm glad you asked! Under KorG's vision, the public has basically always known about magic. However, for whatever reason, the public didn't much care for magic compared to technology. As such, Magical Academies could be found in the cities, but it was rare for anyone in the public to actually use (much) magic. + +My approach is instead that magic has long been hidden, ever since the immense persecution that it once suffered. You wouldn't find evidence of pre-cataclysm magic in cities aside from the odd basement or appearance in a book store. Instead, magic is more out in the countryside. Mage towers, Magic Academies, and all sorts of magic are located out in the countryside instead. + +Due to the influx of magic following the tearing of the veil between worlds, some magic has made its way into cities and towns. However, it will most likely primarily be magical anomalies and threats. Some intriguing uses and aspects of these urban influxes of the arcane may be discoverable by the player, given some effort. diff --git a/data/mods/Magiclysm/recipes.json b/data/mods/Magical_Nights/recipes.json similarity index 100% rename from data/mods/Magiclysm/recipes.json rename to data/mods/Magical_Nights/recipes.json diff --git a/data/mods/Magiclysm/recipes/alchemy.json b/data/mods/Magical_Nights/recipes/alchemy.json similarity index 97% rename from data/mods/Magiclysm/recipes/alchemy.json rename to data/mods/Magical_Nights/recipes/alchemy.json index 445f5c37c736..4fadcbe145f5 100644 --- a/data/mods/Magiclysm/recipes/alchemy.json +++ b/data/mods/Magical_Nights/recipes/alchemy.json @@ -25,7 +25,7 @@ "qualities": [ { "id": "CONTAIN", "level": 1 }, { "id": "MANA_INFUSE", "level": 1 }, { "id": "MANA_FOCUS", "level": 1 } ], "tools": [ [ [ "paint_brush", -1 ] ] ], "components": [ - [ [ "tainted_blood", 2000 ], [ "blood", 8 ], [ "dragon_blood", 2000 ] ], + [ [ "blood_tainted", 2000 ], [ "blood", 8 ], [ "dragon_blood", 2000 ] ], [ [ "acid", 4 ] ], [ [ "water", 2 ], [ "water_clean", 2 ] ] ], diff --git a/data/mods/Magiclysm/recipes/armor.json b/data/mods/Magical_Nights/recipes/armor.json similarity index 97% rename from data/mods/Magiclysm/recipes/armor.json rename to data/mods/Magical_Nights/recipes/armor.json index 962dbe57f405..92ab82c9c4eb 100644 --- a/data/mods/Magiclysm/recipes/armor.json +++ b/data/mods/Magical_Nights/recipes/armor.json @@ -15,6 +15,7 @@ "skills_required": [ [ "spellcraft", 6 ] ], "difficulty": 7, "time": "4 h", + "autolearn": true, "book_learn": [ [ "magic_armormaking", 6 ] ], "components": [ [ [ "cordage_superior", 1, "LIST" ] ], [ [ "demon_chitin_plate", 1 ] ], [ [ "demon_chitin_piece", 1 ] ] ] }, @@ -34,6 +35,7 @@ "skills_required": [ [ "spellcraft", 6 ] ], "difficulty": 6, "time": "2 h", + "autolearn": true, "book_learn": [ [ "magic_armormaking", 5 ] ], "components": [ [ [ "cordage_superior", 1, "LIST" ] ], [ [ "demon_chitin_plate", 1 ] ], [ [ "demon_chitin_piece", 2 ] ] ] }, @@ -52,6 +54,7 @@ "skills_required": [ [ "spellcraft", 6 ] ], "difficulty": 8, "time": "4 h", + "autolearn": true, "book_learn": [ [ "magic_armormaking", 7 ] ], "components": [ [ [ "cordage_superior", 1, "LIST" ] ], [ [ "demon_chitin_plate", 4 ] ], [ [ "demon_chitin_piece", 6 ] ] ] }, @@ -70,6 +73,7 @@ "skills_required": [ [ "spellcraft", 6 ] ], "difficulty": 5, "time": "2 h 40 m", + "autolearn": true, "book_learn": [ [ "magic_armormaking", 4 ] ], "components": [ [ [ "cordage_superior", 1, "LIST" ] ], [ [ "demon_chitin_plate", 1 ] ], [ [ "demon_chitin_piece", 2 ] ] ] }, @@ -88,6 +92,7 @@ "skills_required": [ [ "spellcraft", 6 ] ], "difficulty": 5, "time": "2 h", + "autolearn": true, "book_learn": [ [ "magic_armormaking", 4 ] ], "components": [ [ [ "cordage_superior", 1, "LIST" ] ], [ [ "demon_chitin_piece", 10 ] ] ] }, diff --git a/data/mods/Magiclysm/recipes/blacksmithing.json b/data/mods/Magical_Nights/recipes/blacksmithing.json similarity index 69% rename from data/mods/Magiclysm/recipes/blacksmithing.json rename to data/mods/Magical_Nights/recipes/blacksmithing.json index ad092d093921..56b29c8fa7f6 100644 --- a/data/mods/Magiclysm/recipes/blacksmithing.json +++ b/data/mods/Magical_Nights/recipes/blacksmithing.json @@ -25,6 +25,32 @@ "tools": [ [ [ "demon_forge", 15 ] ], [ [ "tongs", -1 ] ] ], "components": [ [ [ "scrap_bronze", 9 ] ], [ [ "mercury", 400 ] ] ] }, + { + "result": "mithril_ingot", + "type": "recipe", + "category": "CC_OTHER", + "subcategory": "CSC_MATERIALS", + "skill_used": "fabrication", + "difficulty": 6, + "time": "180 m", + "batch_time_factors": [ 50, 2 ], + "book_learn": [ [ "welding_book", 5 ] ], + "tools": [ [ [ "demon_forge", 15 ] ], [ [ "tongs", -1 ] ] ], + "components": [ [ [ "mithril_lump", 2 ] ], [ [ "mercury", 100 ] ] ] + }, + { + "result": "mithril_ingot", + "id_suffix": "with_silver", + "type": "recipe", + "category": "CC_OTHER", + "skill_used": "fabrication", + "difficulty": 6, + "time": "180 m", + "batch_time_factors": [ 50, 2 ], + "book_learn": [ [ "welding_book", 5 ] ], + "tools": [ [ [ "demon_forge", 15 ] ], [ [ "tongs", -1 ] ] ], + "components": [ [ [ "silver_small", 9 ] ], [ [ "mercury", 400 ] ] ] + }, { "type": "recipe", "result": "fireproof_mortar", diff --git a/data/mods/Magiclysm/recipes/construction.json b/data/mods/Magical_Nights/recipes/construction.json similarity index 100% rename from data/mods/Magiclysm/recipes/construction.json rename to data/mods/Magical_Nights/recipes/construction.json diff --git a/data/mods/Magiclysm/recipes/cooking.json b/data/mods/Magical_Nights/recipes/cooking.json similarity index 100% rename from data/mods/Magiclysm/recipes/cooking.json rename to data/mods/Magical_Nights/recipes/cooking.json diff --git a/data/mods/Magical_Nights/recipes/deconstruction.json b/data/mods/Magical_Nights/recipes/deconstruction.json new file mode 100644 index 000000000000..28167913bdef --- /dev/null +++ b/data/mods/Magical_Nights/recipes/deconstruction.json @@ -0,0 +1,69 @@ +[ + { + "result": "broken_claygolem", + "type": "uncraft", + "skill_used": "spellcraft", + "difficulty": 2, + "time": "4 h", + "qualities": [ { "id": "HAMMER", "level": 1 } ], + "//": "Balanced based on weight", + "components": [ [ [ "clay_lump", 231 ] ] ] + }, + { + "result": "broken_stonegolem", + "type": "uncraft", + "skill_used": "spellcraft", + "difficulty": 4, + "time": "4 h", + "qualities": [ { "id": "HAMMER", "level": 1 } ], + "components": [ [ [ "rock", 222 ] ], [ [ "sharp_rock", 33 ] ] ] + }, + { + "result": "broken_irongolem", + "type": "uncraft", + "skill_used": "spellcraft", + "difficulty": 6, + "time": "6 h", + "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "SAW_M", "level": 1 } ], + "components": [ [ [ "scrap", 800 ] ], [ [ "steel_lump", 200 ] ] ] + }, + { + "result": "broken_plasticgolem", + "type": "uncraft", + "skill_used": "spellcraft", + "difficulty": 3, + "time": "5 h", + "qualities": [ { "id": "HAMMER", "level": 1 } ], + "components": [ [ [ "plastic_chunk", 1400 ] ] ] + }, + { + "result": "broken_resingolem_fresh", + "type": "uncraft", + "skill_used": "spellcraft", + "difficulty": 3, + "time": "8 h", + "qualities": [ { "id": "HAMMER", "level": 1 } ], + "//": "Terrible yields on purpose", + "components": [ [ [ "plastic_chunk", 200 ] ] ] + }, + { + "result": "broken_resingolem_half", + "type": "uncraft", + "skill_used": "spellcraft", + "difficulty": 3, + "time": "6 h", + "qualities": [ { "id": "HAMMER", "level": 1 } ], + "//": "Poor yields on purpose", + "components": [ [ [ "plastic_chunk", 800 ] ] ] + }, + { + "result": "broken_resingolem_cured", + "type": "uncraft", + "skill_used": "spellcraft", + "difficulty": 3, + "time": "5 h", + "qualities": [ { "id": "HAMMER", "level": 1 } ], + "//": "Slightly less than pure plastic to account for differences between resin and plastic, I suppose", + "components": [ [ [ "plastic_chunk", 1200 ] ] ] + } +] diff --git a/data/mods/Magiclysm/recipes/dragon_black.json b/data/mods/Magical_Nights/recipes/dragon_black.json similarity index 100% rename from data/mods/Magiclysm/recipes/dragon_black.json rename to data/mods/Magical_Nights/recipes/dragon_black.json diff --git a/data/mods/Magiclysm/recipes/enchanting.json b/data/mods/Magical_Nights/recipes/enchanting.json similarity index 100% rename from data/mods/Magiclysm/recipes/enchanting.json rename to data/mods/Magical_Nights/recipes/enchanting.json diff --git a/data/mods/Magiclysm/recipes/magic_tools.json b/data/mods/Magical_Nights/recipes/magic_tools.json similarity index 88% rename from data/mods/Magiclysm/recipes/magic_tools.json rename to data/mods/Magical_Nights/recipes/magic_tools.json index 76184c356aba..74338388e782 100644 --- a/data/mods/Magiclysm/recipes/magic_tools.json +++ b/data/mods/Magical_Nights/recipes/magic_tools.json @@ -14,18 +14,6 @@ "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], "components": [ [ [ "scrap_copper", 1 ], [ "copper", 100 ] ], [ [ "splinter", 3 ] ] ] }, - { - "type": "recipe", - "result": "stone_chisel", - "category": "CC_OTHER", - "subcategory": "CSC_OTHER_TOOLS", - "skill_used": "fabrication", - "difficulty": 0, - "time": "20 m", - "autolearn": true, - "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "CUT", "level": 1 } ], - "components": [ [ [ "rock", 1 ], [ "sharp_rock", 1 ] ], [ [ "stick", 1 ], [ "2x4", 1 ] ] ] - }, { "type": "recipe", "result": "copper_infuser", @@ -76,7 +64,7 @@ "time": "180 m", "book_learn": [ [ "cooking_poison", 3 ] ], "qualities": [ { "id": "CHISEL", "level": 1 }, { "id": "MANA_INFUSE", "level": 1 } ], - "components": [ [ [ "demon_chitin_piece", 16 ] ], [ [ "adhesive_proper", 10, "LIST" ] ] ] + "components": [ [ [ "demon_chitin_piece", 16 ] ], [ [ "bone_glue", 10 ] ] ] }, { "type": "recipe", diff --git a/data/mods/Magiclysm/recipes/materials.json b/data/mods/Magical_Nights/recipes/materials.json similarity index 98% rename from data/mods/Magiclysm/recipes/materials.json rename to data/mods/Magical_Nights/recipes/materials.json index 98abd3948508..85f515544928 100644 --- a/data/mods/Magiclysm/recipes/materials.json +++ b/data/mods/Magical_Nights/recipes/materials.json @@ -2,7 +2,7 @@ { "type": "recipe", "result": "cured_hide", - "id_suffix": "scraped", + "id_suffix": "scraped_owlbear", "category": "CC_OTHER", "subcategory": "CSC_OTHER_MATERIALS", "skill_used": "survival", diff --git a/data/mods/Magiclysm/recipes/mods.json b/data/mods/Magical_Nights/recipes/mods.json similarity index 100% rename from data/mods/Magiclysm/recipes/mods.json rename to data/mods/Magical_Nights/recipes/mods.json diff --git a/data/mods/Magiclysm/recipes/recipe_potions.json b/data/mods/Magical_Nights/recipes/recipe_potions.json similarity index 100% rename from data/mods/Magiclysm/recipes/recipe_potions.json rename to data/mods/Magical_Nights/recipes/recipe_potions.json diff --git a/data/mods/Magiclysm/recipes/weapons.json b/data/mods/Magical_Nights/recipes/weapons.json similarity index 83% rename from data/mods/Magiclysm/recipes/weapons.json rename to data/mods/Magical_Nights/recipes/weapons.json index cc09459ee02a..cdf7d7dd4d09 100644 --- a/data/mods/Magiclysm/recipes/weapons.json +++ b/data/mods/Magical_Nights/recipes/weapons.json @@ -358,7 +358,7 @@ "category": "CC_WEAPON", "subcategory": "CSC_WEAPON_CUTTING", "skill_used": "fabrication", - "difficulty": 8, + "difficulty": 7, "autolearn": true, "time": "8 h", "book_learn": [ [ "textbook_weapwest", 8 ], [ "recipe_melee", 7 ] ], @@ -371,7 +371,7 @@ "category": "CC_WEAPON", "subcategory": "CSC_WEAPON_CUTTING", "skill_used": "fabrication", - "difficulty": 9, + "difficulty": 7, "autolearn": true, "time": "8 h", "book_learn": [ [ "textbook_weapeast", 8 ] ], @@ -384,7 +384,7 @@ "category": "CC_WEAPON", "subcategory": "CSC_WEAPON_CUTTING", "skill_used": "fabrication", - "difficulty": 8, + "difficulty": 7, "autolearn": true, "time": "7 h", "book_learn": [ [ "textbook_weapwest", 7 ] ], @@ -408,5 +408,94 @@ [ [ "fabric_hides_any", 2, "LIST" ] ], [ [ "dragon_bone", 4 ] ] ] + }, + { + "type": "recipe", + "result": "black_dbone_battleaxe", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_CUTTING", + "skill_used": "fabrication", + "difficulty": 8, + "autolearn": true, + "time": "8 h", + "book_learn": [ [ "textbook_weapwest", 8 ], [ "recipe_melee", 7 ] ], + "using": [ [ "blacksmithing_advanced", 12 ] ], + "components": [ [ [ "black_dragon_tanned_hide", 2 ] ], [ [ "dragon_essence", 1 ] ] ] + }, + { + "type": "recipe", + "result": "black_dbone_tachi", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_CUTTING", + "skill_used": "fabrication", + "difficulty": 8, + "autolearn": true, + "time": "8 h", + "book_learn": [ [ "textbook_weapeast", 7 ] ], + "using": [ [ "blacksmithing_advanced", 8 ] ], + "components": [ [ [ "black_dragon_tanned_hide", 1 ] ], [ [ "dragon_essence", 1 ] ] ] + }, + { + "type": "recipe", + "result": "black_dbone_longsword", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_CUTTING", + "skill_used": "fabrication", + "difficulty": 8, + "autolearn": true, + "time": "7 h", + "book_learn": [ [ "textbook_weapwest", 7 ] ], + "using": [ [ "blacksmithing_advanced", 16 ] ], + "components": [ [ [ "black_dragon_tanned_hide", 1 ] ], [ [ "dragon_essence", 1 ] ] ] + }, + { + "type": "recipe", + "result": "black_dbone_qiang", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_PIERCING", + "skill_used": "fabrication", + "difficulty": 8, + "autolearn": true, + "time": "7 h 40 m", + "book_learn": [ [ "textbook_armschina", 6 ] ], + "using": [ [ "blacksmithing_advanced", 4 ] ], + "components": [ [ [ "black_dragon_tanned_hide", 2 ] ], [ [ "dragon_essence", 1 ] ] ] + }, + { + "type": "recipe", + "result": "orich_longsword", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_CUTTING", + "skill_used": "fabrication", + "difficulty": 8, + "time": "7 h", + "book_learn": [ [ "textbook_weapwest", 7 ], [ "scots_cookbook", 9 ] ], + "using": [ [ "blacksmithing_advanced", 16 ] ], + "components": [ [ [ "orichalcum_ingot", 2 ] ], [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fabric_hides_any", 1, "LIST" ] ] ] + }, + { + "type": "recipe", + "result": "orich_fire_ax", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_CUTTING", + "skill_used": "fabrication", + "difficulty": 9, + "time": "7 h", + "book_learn": [ [ "textbook_fireman", 8 ], [ "textbook_fabrication", 9 ] ], + "using": [ [ "blacksmithing_intermediate", 16 ] ], + "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], + "components": [ [ [ "orichalcum_ingot", 2 ] ], [ [ "2x4", 2 ], [ "stick", 4 ] ] ] + }, + { + "type": "recipe", + "result": "orich_knife_combat", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_PIERCING", + "skill_used": "fabrication", + "difficulty": 6, + "time": "6 h", + "using": [ [ "blacksmithing_advanced", 4 ] ], + "book_learn": [ [ "manual_knives", 4 ], [ "recipe_melee", 5 ] ], + "components": [ [ [ "orichalcum_ingot", 1 ] ], [ [ "fabric_hides_any", 2, "LIST" ] ] ] } ] diff --git a/data/mods/Magiclysm/requirements/alchemy.json b/data/mods/Magical_Nights/requirements/alchemy.json similarity index 100% rename from data/mods/Magiclysm/requirements/alchemy.json rename to data/mods/Magical_Nights/requirements/alchemy.json diff --git a/data/mods/Magiclysm/requirements/cooking_components.json b/data/mods/Magical_Nights/requirements/cooking_components.json similarity index 100% rename from data/mods/Magiclysm/requirements/cooking_components.json rename to data/mods/Magical_Nights/requirements/cooking_components.json diff --git a/data/mods/Magiclysm/requirements/spell_requirements.json b/data/mods/Magical_Nights/requirements/spell_requirements.json similarity index 92% rename from data/mods/Magiclysm/requirements/spell_requirements.json rename to data/mods/Magical_Nights/requirements/spell_requirements.json index 6a7ee01c82af..faf146ae03d9 100644 --- a/data/mods/Magiclysm/requirements/spell_requirements.json +++ b/data/mods/Magical_Nights/requirements/spell_requirements.json @@ -17,7 +17,7 @@ "//": "Weapon materials and 1000 energy from blood suitable for the Decaying Boneclub spell", "components": [ [ [ "bone", 3 ], [ "bone_human", 3 ], [ "bone_tainted", 6 ] ], - [ [ "blood", 4 ], [ "tainted_blood", 200 ], [ "dragon_blood", 20 ] ] + [ [ "blood", 4 ], [ "blood_tainted", 200 ], [ "dragon_blood", 20 ] ] ] } ] diff --git a/data/mods/Magiclysm/scenarios.json b/data/mods/Magical_Nights/scenarios.json similarity index 81% rename from data/mods/Magiclysm/scenarios.json rename to data/mods/Magical_Nights/scenarios.json index 54905f6d4ee0..e6c3526f57f3 100644 --- a/data/mods/Magiclysm/scenarios.json +++ b/data/mods/Magical_Nights/scenarios.json @@ -3,9 +3,9 @@ "type": "scenario", "id": "lost_faith", "name": "Lost Faith", - "surround_groups": [ [ "GROUP_CHURCH_ZOMBIE", 70.0 ] ], "flags": [ "LONE_START" ], - "points": 2, + "surround_groups": [ [ "GROUP_CHURCH_ZOMBIE", 70.0 ] ], + "points": 1, "description": "You've been preaching your faith for a long time, but the recent events have begun to make you doubt it. Wandering in your temple, you just found books that may restore your faith or shatter it completely.", "start_name": "Church", "allowed_locs": [ "sloc_church" ], @@ -16,21 +16,35 @@ "id": "magic_basement", "name": "The Wizard's Apprentice", "flags": [ "LONE_START" ], - "points": 3, + "points": 2, "description": "You have been an apprentice to a wizard for some time now, working on a prototype device that could perhaps be used to escape from the Cataclysm. Something went wrong with the maiden voyage though, and your teacher teleported his insides into his outsides. Now you have to figure out how to survive on your own. At least he left his notebook…", "start_name": "Wizard's Secret Basement Study", "allowed_locs": [ "sloc_magic_basement" ], - "professions": [ "wizard_novice", "novice_necromancer", "novice_earthshaper", "novice_technomancer", "novice_stormshaper" ] + "professions": [ + "wizard_novice", + "novice_necromancer", + "novice_earthshaper", + "novice_technomancer", + "novice_stormshaper", + "novice_kelvinist" + ] }, { "type": "scenario", "id": "lake_retreat", "name": "The Wizard's Vacation", "flags": [ "LONE_START" ], - "points": 6, + "points": 3, "description": "You have been an apprentice to a wizard for some time now, you've saved for years for your dream vacation at a secluded wizard tower. Your journey of self-discovery is interrupted by the Cataclysm. Now you have to figure out how to survive on your own.", "start_name": "Wizard's Retreat Vacation", "allowed_locs": [ "sloc_lake_retreat" ], - "professions": [ "wizard_novice", "novice_necromancer", "novice_earthshaper", "novice_technomancer", "novice_stormshaper" ] + "professions": [ + "wizard_novice", + "novice_necromancer", + "novice_earthshaper", + "novice_technomancer", + "novice_stormshaper", + "novice_kelvinist" + ] } ] diff --git a/data/mods/Magiclysm/species.json b/data/mods/Magical_Nights/species.json old mode 100644 new mode 100755 similarity index 86% rename from data/mods/Magiclysm/species.json rename to data/mods/Magical_Nights/species.json index fcf1447839ea..d20476d224bf --- a/data/mods/Magiclysm/species.json +++ b/data/mods/Magical_Nights/species.json @@ -21,5 +21,10 @@ "type": "SPECIES", "id": "GOBLIN", "name": { "str": "goblin" } + }, + { + "type": "SPECIES", + "id": "ORC", + "name": { "str": "orc" } } ] diff --git a/data/mods/Magiclysm/start_locations.json b/data/mods/Magical_Nights/start_locations.json similarity index 100% rename from data/mods/Magiclysm/start_locations.json rename to data/mods/Magical_Nights/start_locations.json diff --git a/data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json b/data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json similarity index 100% rename from data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json rename to data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json diff --git a/data/mods/Magiclysm/terrain.json b/data/mods/Magical_Nights/terrain.json similarity index 100% rename from data/mods/Magiclysm/terrain.json rename to data/mods/Magical_Nights/terrain.json diff --git a/data/mods/Magical_Nights/tileset-acknowledgement.txt b/data/mods/Magical_Nights/tileset-acknowledgement.txt new file mode 100644 index 000000000000..5c0bffa47b43 --- /dev/null +++ b/data/mods/Magical_Nights/tileset-acknowledgement.txt @@ -0,0 +1,11 @@ +Part of the graphic tiles used in this mod are from the public domain roguelike tileset "RLTiles". +Some of the tiles have been modified. + +You can find the original tileset at: +http://rltiles.sf.net + +Some of the graphic tiles used are from the CC0-licensed portion of Dungeon Crawl: Stone Soup's tileset. +Many of these tiles have been recolored and had small alterations. + +You can find Dungeon Crawl: Stone Soup at: +https://github.com/crawl/crawl diff --git a/data/mods/Magiclysm/tool_qualities.json b/data/mods/Magical_Nights/tool_qualities.json similarity index 100% rename from data/mods/Magiclysm/tool_qualities.json rename to data/mods/Magical_Nights/tool_qualities.json diff --git a/data/mods/Magiclysm/traits/classes.json b/data/mods/Magical_Nights/traits/classes.json similarity index 78% rename from data/mods/Magiclysm/traits/classes.json rename to data/mods/Magical_Nights/traits/classes.json index 084213263583..fb056eb14dab 100644 --- a/data/mods/Magiclysm/traits/classes.json +++ b/data/mods/Magical_Nights/traits/classes.json @@ -8,8 +8,9 @@ "starting_trait": false, "purifiable": false, "valid": false, - "cancels": [ "ANIMIST" ], - "spells_learned": [ [ "create_rune_magus", 1 ] ] + "spells_learned": [ [ "create_rune_magus", 1 ] ], + "mana_modifier": 500, + "mana_regen_multiplier": 1.2 }, { "type": "mutation", @@ -20,8 +21,9 @@ "starting_trait": false, "purifiable": false, "valid": false, - "cancels": [ "MAGUS" ], - "spells_learned": [ [ "create_rune_animist", 1 ] ] + "spells_learned": [ [ "create_rune_animist", 1 ] ], + "mana_modifier": 500, + "mana_regen_multiplier": 1.2 }, { "type": "mutation", @@ -32,8 +34,9 @@ "starting_trait": false, "purifiable": false, "valid": false, - "cancels": [ "STORMSHAPER" ], - "spells_learned": [ [ "create_rune_kelvinist", 1 ] ] + "spells_learned": [ [ "create_rune_kelvinist", 1 ] ], + "mana_modifier": 500, + "mana_regen_multiplier": 1.2 }, { "type": "mutation", @@ -44,8 +47,9 @@ "starting_trait": false, "purifiable": false, "valid": false, - "cancels": [ "KELVINIST" ], - "spells_learned": [ [ "create_rune_stormshaper", 1 ] ] + "spells_learned": [ [ "create_rune_stormshaper", 1 ] ], + "mana_modifier": 500, + "mana_regen_multiplier": 1.2 }, { "type": "mutation", @@ -56,8 +60,9 @@ "starting_trait": false, "purifiable": false, "valid": false, - "cancels": [ "EARTHSHAPER" ], - "spells_learned": [ [ "create_rune_technomancer", 1 ] ] + "spells_learned": [ [ "create_rune_technomancer", 1 ] ], + "mana_modifier": 500, + "mana_regen_multiplier": 1.2 }, { "type": "mutation", @@ -68,8 +73,9 @@ "starting_trait": false, "purifiable": false, "valid": false, - "cancels": [ "TECHNOMANCER" ], - "spells_learned": [ [ "create_rune_earthshaper", 1 ] ] + "spells_learned": [ [ "create_rune_earthshaper", 1 ] ], + "mana_modifier": 500, + "mana_regen_multiplier": 1.2 }, { "type": "mutation", @@ -80,8 +86,9 @@ "starting_trait": false, "purifiable": false, "valid": false, - "cancels": [ "DRUID" ], - "spells_learned": [ [ "create_rune_biomancer", 1 ] ] + "spells_learned": [ [ "create_rune_biomancer", 1 ] ], + "mana_modifier": 500, + "mana_regen_multiplier": 1.2 }, { "type": "mutation", @@ -92,7 +99,8 @@ "starting_trait": false, "purifiable": false, "valid": false, - "cancels": [ "BIOMANCER" ], - "spells_learned": [ [ "create_rune_druid", 1 ] ] + "spells_learned": [ [ "create_rune_druid", 1 ] ], + "mana_modifier": 500, + "mana_regen_multiplier": 1.2 } ] diff --git a/data/mods/Magiclysm/traits/manatouched.json b/data/mods/Magical_Nights/traits/manatouched.json similarity index 100% rename from data/mods/Magiclysm/traits/manatouched.json rename to data/mods/Magical_Nights/traits/manatouched.json diff --git a/data/mods/Magiclysm/traits/mutation.json b/data/mods/Magical_Nights/traits/mutation.json old mode 100644 new mode 100755 similarity index 99% rename from data/mods/Magiclysm/traits/mutation.json rename to data/mods/Magical_Nights/traits/mutation.json index a1c291829cf9..db0a23f4449c --- a/data/mods/Magiclysm/traits/mutation.json +++ b/data/mods/Magical_Nights/traits/mutation.json @@ -48,7 +48,6 @@ "description": "You are able to store a lot more mana in your body than usual.", "cancels": [ "MANA_SUB1", "MANA_SUB2", "MANA_SUB3" ], "types": [ "MANA_ADD" ], - "starting_trait": true, "category": [ "MANATOUCHED" ], "prereqs": [ "MANA_ADD2" ], "flags": [ "NON_THRESH" ], @@ -116,6 +115,7 @@ "changes_to": [ "MANA_REGEN3" ], "types": [ "MANA_REGEN" ], "category": [ "FISH", "ELFA", "PLANT", "MANATOUCHED" ], + "starting_trait": true, "flags": [ "NON_THRESH" ], "mana_regen_multiplier": 1.25 }, @@ -198,6 +198,7 @@ "changes_to": [ "MANA_MULT3" ], "types": [ "MANA_MULT" ], "category": [ "BIRD", "SLIME", "CATTLE", "PLANT", "CEPHALOPOD", "ELFA", "MANATOUCHED" ], + "starting_trait": true, "prereqs": [ "MANA_MULT1" ], "flags": [ "NON_THRESH" ], "mana_multiplier": 1.9 diff --git a/data/mods/Magiclysm/traps.json b/data/mods/Magical_Nights/traps.json similarity index 100% rename from data/mods/Magiclysm/traps.json rename to data/mods/Magical_Nights/traps.json diff --git a/data/mods/Magiclysm/vehicleparts/frames.json b/data/mods/Magical_Nights/vehicleparts/frames.json similarity index 100% rename from data/mods/Magiclysm/vehicleparts/frames.json rename to data/mods/Magical_Nights/vehicleparts/frames.json diff --git a/data/mods/Magiclysm/vehicleparts/vehicle_parts.json b/data/mods/Magical_Nights/vehicleparts/vehicle_parts.json similarity index 100% rename from data/mods/Magiclysm/vehicleparts/vehicle_parts.json rename to data/mods/Magical_Nights/vehicleparts/vehicle_parts.json diff --git a/data/mods/Magiclysm/vehicles/summoned_vehicles.json b/data/mods/Magical_Nights/vehicles/summoned_vehicles.json similarity index 98% rename from data/mods/Magiclysm/vehicles/summoned_vehicles.json rename to data/mods/Magical_Nights/vehicles/summoned_vehicles.json index 7c2a0ff89d63..6c2a1c900358 100644 --- a/data/mods/Magiclysm/vehicles/summoned_vehicles.json +++ b/data/mods/Magical_Nights/vehicles/summoned_vehicles.json @@ -69,7 +69,7 @@ "volume": "10 ml", "bashing": 1, "phase": "solid", - "material": [ "flesh" ], + "material": "flesh", "flags": [ "PSEUDO", "PERPETUAL" ], "fuel": { "energy": 500 }, "symbol": "?", diff --git a/data/mods/Magiclysm/worldgen/black_dragon_lair.json b/data/mods/Magical_Nights/worldgen/black_dragon_lair.json similarity index 100% rename from data/mods/Magiclysm/worldgen/black_dragon_lair.json rename to data/mods/Magical_Nights/worldgen/black_dragon_lair.json diff --git a/data/mods/Magiclysm/worldgen/demon_spider_lair.json b/data/mods/Magical_Nights/worldgen/demon_spider_lair.json similarity index 98% rename from data/mods/Magiclysm/worldgen/demon_spider_lair.json rename to data/mods/Magical_Nights/worldgen/demon_spider_lair.json index 61813e973300..d7eee068a8a9 100644 --- a/data/mods/Magiclysm/worldgen/demon_spider_lair.json +++ b/data/mods/Magical_Nights/worldgen/demon_spider_lair.json @@ -33,7 +33,7 @@ "S": { "field": "fd_web", "intensity": 3 }, "~": { "field": "fd_web", "intensity": 3 } }, - "items": { "$": { "item": "demon_spider_lair_treasure", "chance": 50, "repeat": [ 3, 6 ] } }, + "items": { "$": { "item": "demon_spider_lair_treasure", "chance": 90, "repeat": [ 3, 6 ] } }, "monster": { "S": { "monster": "mon_demon_spider_queen", "chance": 100 }, "s": { "monster": "mon_demon_spider", "chance": 100 }, diff --git a/data/mods/Magiclysm/worldgen/forest_tomb.json b/data/mods/Magical_Nights/worldgen/forest_tomb.json similarity index 100% rename from data/mods/Magiclysm/worldgen/forest_tomb.json rename to data/mods/Magical_Nights/worldgen/forest_tomb.json diff --git a/data/mods/Magiclysm/worldgen/goblin_camp.json b/data/mods/Magical_Nights/worldgen/goblin_camp.json similarity index 79% rename from data/mods/Magiclysm/worldgen/goblin_camp.json rename to data/mods/Magical_Nights/worldgen/goblin_camp.json index f02103293874..0e614fee0508 100644 --- a/data/mods/Magiclysm/worldgen/goblin_camp.json +++ b/data/mods/Magical_Nights/worldgen/goblin_camp.json @@ -31,9 +31,9 @@ "........................" ], "place_loot": [ - { "item": "water", "x": 3, "y": 2, "repeat": [ 6, 9 ] }, - { "item": "bum_wine", "x": 5, "y": 2, "repeat": [ 6, 9 ] }, - { "item": "beer", "x": 7, "y": 2, "repeat": [ 6, 9 ] }, + { "item": "water", "x": 3, "y": 2, "repeat": [ 3, 6 ] }, + { "item": "bum_wine", "x": 5, "y": 2, "repeat": [ 3, 6 ] }, + { "item": "beer", "x": 7, "y": 2, "repeat": [ 3, 6 ] }, { "item": "2x4", "x": 5, "y": 4, "repeat": [ 3, 6 ] } ], "place_monster": [ @@ -84,18 +84,18 @@ "r": "f_rack_coat" }, "items": { - "s": { "item": "enchanted_rings_common", "chance": 100, "repeat": [ 1, 2 ] }, - "k": { "item": "magic_shop_books", "chance": 100, "repeat": [ 1, 2 ] }, + "s": { "item": "enchanted_rings_common", "chance": 100 }, + "k": { "item": "magic_shop_books", "chance": 100 }, "B": { "item": "bed", "chance": 100, "repeat": [ 1, 2 ] }, - "C": { "item": "dry_goods", "chance": 100, "repeat": [ 2, 3 ] }, + "C": { "item": "dry_goods", "chance": 100, "repeat": [ 1, 2 ] }, "R": [ - { "item": "tools_earthworking", "chance": 35 }, - { "item": "tailoring_fabric", "chance": 65 }, - { "item": "home_hw", "chance": 50 }, - { "item": "tools_common", "chance": 50 }, - { "item": "kitchen_counters", "chance": 50 }, - { "item": "tinware", "chance": 50 }, - { "item": "supplies_hardware", "chance": 25 } + { "item": "tools_earthworking", "chance": 25 }, + { "item": "tailoring_fabric", "chance": 55 }, + { "item": "home_hw", "chance": 40 }, + { "item": "tools_common", "chance": 40 }, + { "item": "kitchen_counters", "chance": 40 }, + { "item": "tinware", "chance": 40 }, + { "item": "supplies_hardware", "chance": 15 } ], "r": [ { "item": "goblin_slinger_drops", "chance": 50 }, { "item": "goblin_warrior_drops", "chance": 50 } ] } diff --git a/data/mods/Magiclysm/worldgen/lake_retreat.json b/data/mods/Magical_Nights/worldgen/lake_retreat.json similarity index 100% rename from data/mods/Magiclysm/worldgen/lake_retreat.json rename to data/mods/Magical_Nights/worldgen/lake_retreat.json diff --git a/data/mods/Magiclysm/worldgen/magic_academy.json b/data/mods/Magical_Nights/worldgen/magic_academy.json similarity index 84% rename from data/mods/Magiclysm/worldgen/magic_academy.json rename to data/mods/Magical_Nights/worldgen/magic_academy.json index 373121191514..ef36e715bef2 100644 --- a/data/mods/Magiclysm/worldgen/magic_academy.json +++ b/data/mods/Magical_Nights/worldgen/magic_academy.json @@ -51,31 +51,31 @@ { "item": "stereo", "x": 5, "y": 20, "chance": 100 } ], "items": { - "&": [ { "item": "classless_items", "chance": 30 }, { "item": "druid_items", "chance": 70 } ], - "%": [ { "item": "classless_items", "chance": 30 }, { "item": "biomancer_items", "chance": 70 } ], - "$": [ { "item": "classless_items", "chance": 30 }, { "item": "earthshaper_items", "chance": 70 } ], - "0": [ { "item": "classless_items", "chance": 30 }, { "item": "technomancer_items", "chance": 70 } ], - "x": { "item": "enchanted_small_items", "chance": 20 }, + "&": [ { "item": "classless_items", "chance": 50 }, { "item": "druid_items", "chance": 70 } ], + "%": [ { "item": "classless_items", "chance": 50 }, { "item": "biomancer_items", "chance": 70 } ], + "$": [ { "item": "classless_items", "chance": 50 }, { "item": "earthshaper_items", "chance": 70 } ], + "0": [ { "item": "classless_items", "chance": 50 }, { "item": "technomancer_items", "chance": 70 } ], + "x": { "item": "enchanted_small_items", "chance": 40 }, "r": [ { "item": "academy_lore", "chance": 100 }, - { "item": "enchanted_small_items", "chance": 10 }, - { "item": "enchanted_combat_items", "chance": 10 } + { "item": "enchanted_small_items", "chance": 20 }, + { "item": "enchanted_combat_items", "chance": 20 } ], "d": [ - { "item": "magic_shop_clothes", "chance": 25, "repeat": [ 1, 2 ] }, - { "item": "enchanted_worn_items", "chance": 10 }, - { "item": "enchanted_small_items", "chance": 20 } + { "item": "magic_shop_clothes", "chance": 50, "repeat": [ 1, 2 ] }, + { "item": "enchanted_worn_items", "chance": 20 }, + { "item": "enchanted_small_items", "chance": 40 } ], "D": [ - { "item": "magic_shop_clothes", "chance": 30, "repeat": [ 1, 2 ] }, - { "item": "enchanted_worn_items", "chance": 10 }, - { "item": "enchanted_combat_items", "chance": 5 } + { "item": "magic_shop_clothes", "chance": 60, "repeat": [ 1, 2 ] }, + { "item": "enchanted_worn_items", "chance": 20 }, + { "item": "enchanted_combat_items", "chance": 10 } ], "R": [ { "item": "magic_shop_books", "chance": 40, "repeat": [ 0, 2 ] }, { "item": "spellbook_loot_2", "chance": 10 } ], "j": [ - { "item": "enchanted_small_items", "chance": 5, "repeat": [ 1, 2 ] }, - { "item": "enchanted_combat_items", "chance": 1 }, - { "item": "enchanted_misc", "chance": 1 } + { "item": "enchanted_small_items", "chance": 10, "repeat": [ 1, 2 ] }, + { "item": "enchanted_combat_items", "chance": 2 }, + { "item": "enchanted_misc", "chance": 2 } ] } } @@ -122,16 +122,16 @@ { "item": "alchemy_items", "chance": 45, "repeat": [ 1, 3 ] }, { "item": "magic_shop_potions", "chance": 30, "repeat": [ 1, 2 ] } ], - "l": { "item": "enchanted_small_items", "chance": 15 }, - "v": { "item": "boss_treasure_items", "chance": 20, "repeat": [ 1, 3 ] }, + "l": { "item": "enchanted_small_items", "chance": 30 }, + "v": { "item": "boss_treasure_items", "chance": 40, "repeat": [ 1, 3 ] }, "d": [ - { "item": "magic_shop_clothes", "chance": 25, "repeat": [ 1, 2 ] }, - { "item": "enchanted_worn_items", "chance": 5 }, - { "item": "enchanted_small_items", "chance": 10 }, - { "item": "enchanted_combat_items", "chance": 10 } + { "item": "magic_shop_clothes", "chance": 50, "repeat": [ 1, 2 ] }, + { "item": "enchanted_worn_items", "chance": 10 }, + { "item": "enchanted_small_items", "chance": 20 }, + { "item": "enchanted_combat_items", "chance": 20 } ], - "R": [ { "item": "magic_shop_books", "chance": 30 }, { "item": "enchanted_misc", "chance": 1 } ], - "i": [ { "item": "enchanted_small_items", "chance": 10 }, { "item": "enchanted_combat_items", "chance": 15 } ] + "R": [ { "item": "magic_shop_books", "chance": 30 }, { "item": "enchanted_misc", "chance": 2 } ], + "i": [ { "item": "enchanted_small_items", "chance": 20 }, { "item": "enchanted_combat_items", "chance": 30 } ] }, "place_monsters": [ { "monster": "GROUP_TOWER_GOLEM", "x": 12, "y": 12, "density": 0.01, "repeat": [ 2, 3 ] } ] } @@ -190,27 +190,27 @@ "0": "f_desk" }, "items": { - "&": [ { "item": "classless_items", "chance": 30 }, { "item": "kelvinist_items", "chance": 70 } ], - "%": [ { "item": "classless_items", "chance": 30 }, { "item": "animist_items", "chance": 70 } ], - "$": [ { "item": "classless_items", "chance": 30 }, { "item": "magus_items", "chance": 70 } ], - "0": [ { "item": "classless_items", "chance": 30 }, { "item": "stormshaper_items", "chance": 70 } ], + "&": [ { "item": "classless_items", "chance": 50 }, { "item": "kelvinist_items", "chance": 70 } ], + "%": [ { "item": "classless_items", "chance": 50 }, { "item": "animist_items", "chance": 70 } ], + "$": [ { "item": "classless_items", "chance": 50 }, { "item": "magus_items", "chance": 70 } ], + "0": [ { "item": "classless_items", "chance": 50 }, { "item": "stormshaper_items", "chance": 70 } ], "H": [ - { "item": "magic_shop_clothes", "chance": 5 }, - { "item": "enchanted_small_items", "chance": 10 }, - { "item": "magic_shop_books", "chance": 10 } + { "item": "magic_shop_clothes", "chance": 10 }, + { "item": "enchanted_small_items", "chance": 20 }, + { "item": "magic_shop_books", "chance": 20 } ], "`": [ { "item": "alchemy_items", "chance": 35, "repeat": [ 1, 2 ] }, - { "item": "magic_tools_and_loot", "chance": 35 }, + { "item": "magic_tools_and_loot", "chance": 50 }, { "item": "magic_shop_potions", "chance": 20 } ], - "v": { "item": "boss_treasure_items", "chance": 20, "repeat": [ 0, 2 ] }, + "v": { "item": "boss_treasure_items", "chance": 40, "repeat": [ 0, 2 ] }, "d": [ - { "item": "magic_shop_clothes", "chance": 25, "repeat": [ 1, 2 ] }, - { "item": "enchanted_worn_items", "chance": 10 }, - { "item": "enchanted_small_items", "chance": 10 } + { "item": "magic_shop_clothes", "chance": 50, "repeat": [ 1, 2 ] }, + { "item": "enchanted_worn_items", "chance": 20 }, + { "item": "enchanted_small_items", "chance": 20 } ], - "R": [ { "item": "classless_items", "chance": 20 }, { "item": "enchanted_misc", "chance": 1 } ] + "R": [ { "item": "classless_items", "chance": 40 }, { "item": "enchanted_misc", "chance": 2 } ] }, "place_monsters": [ { "monster": "GROUP_TOWER_GOLEM", "x": 12, "y": 12, "density": 0.01, "repeat": [ 1, 3 ] } ] } @@ -251,8 +251,12 @@ "terrain": { "_": "t_open_air", ")": "t_wall_glass", "#": "t_rock_wall", "]": "t_door_glass_c", ".": "t_shingle_flat_roof" }, "furniture": { "&": "f_magic_bench" }, "items": { - "&": [ { "item": "magic_tools_and_loot", "chance": 35, "repeat": [ 1, 2 ] }, { "item": "magic_shop_potions", "chance": 30 } ], - "R": [ { "item": "magic_shop_books", "chance": 30 } ] + "&": [ { "item": "magic_tools_and_loot", "chance": 50, "repeat": [ 1, 2 ] }, { "item": "magic_shop_potions", "chance": 30 } ], + "R": [ + { "item": "magic_shop_books", "chance": 30 }, + { "item": "magic_recipe_basic", "prob": 50 }, + { "item": "magic_recipe_advanced", "prob": 15 } + ] }, "place_monsters": [ { "monster": "GROUP_TOWER_GOLEM", "x": 12, "y": 12, "density": 0.01, "repeat": [ 1, 3 ] } ] } @@ -293,8 +297,12 @@ "terrain": { "_": "t_open_air", ")": "t_wall_glass", "#": "t_rock_wall", "]": "t_door_glass_c" }, "furniture": { "&": "f_magic_bench" }, "items": { - "&": [ { "item": "magic_tools_and_loot", "chance": 35 }, { "item": "magic_shop_potions", "chance": 30 } ], - "R": [ { "item": "magic_shop_books", "chance": 30 } ] + "&": [ { "item": "magic_tools_and_loot", "chance": 50 }, { "item": "magic_shop_potions", "chance": 30 } ], + "R": [ + { "item": "magic_shop_books", "chance": 30 }, + { "item": "magic_recipe_basic", "prob": 50 }, + { "item": "magic_recipe_advanced", "prob": 15 } + ] }, "place_monsters": [ { "monster": "GROUP_TOWER_GOLEM", "x": 12, "y": 12, "density": 0.01, "repeat": [ 1, 3 ] } ] } @@ -335,14 +343,14 @@ "terrain": { "_": "t_open_air", ")": "t_wall_glass", "#": "t_rock_wall", "]": "t_door_glass_c" }, "place_loot": [ { "item": "television", "x": 9, "y": 11, "chance": 100 }, { "item": "stereo", "x": 13, "y": 16, "chance": 100 } ], "items": { - "l": { "item": "enchanted_small_items", "chance": 5 }, + "l": { "item": "enchanted_small_items", "chance": 10 }, "H": [ - { "item": "magic_shop_clothes", "chance": 30 }, - { "item": "enchanted_worn_items", "chance": 10 }, - { "item": "enchanted_combat_items", "chance": 3 }, - { "item": "enchanted_small_items", "chance": 5 } + { "item": "magic_shop_clothes", "chance": 60 }, + { "item": "enchanted_worn_items", "chance": 20 }, + { "item": "enchanted_combat_items", "chance": 6 }, + { "item": "enchanted_small_items", "chance": 10 } ], - "s": [ { "item": "enchanted_small_items", "chance": 10 }, { "item": "enchanted_combat_items", "chance": 1 } ] + "s": [ { "item": "enchanted_small_items", "chance": 20 }, { "item": "enchanted_combat_items", "chance": 2 } ] }, "place_monsters": [ { "monster": "GROUP_TOWER_GOLEM", "x": 12, "y": 12, "density": 0.01, "repeat": [ 1, 3 ] } ] } @@ -384,9 +392,9 @@ "items": { "r": [ { "item": "magic_shop_books", "chance": 20 }, - { "item": "magic_shop_wands", "chance": 10 }, - { "item": "enchanted_small_items", "chance": 5 }, - { "item": "enchanted_combat_items", "chance": 2 } + { "item": "magic_shop_wands", "chance": 20 }, + { "item": "enchanted_small_items", "chance": 10 }, + { "item": "enchanted_combat_items", "chance": 4 } ], "R": [ { "item": "magic_shop_books", "chance": 30 } ] }, @@ -433,7 +441,8 @@ { "item": "alchemy_items", "chance": 35, "repeat": [ 1, 2 ] }, { "item": "magic_shop_potions", "chance": 30 }, { "item": "magic_recipe_basic", "chance": 40 }, - { "item": "magic_shop_wands", "chance": 5 } + { "item": "magic_shop_wands", "chance": 10 }, + { "item": "magic_recipe_basic", "prob": 25 } ], "?": [ { "item": "alchemy_items", "chance": 45 }, { "item": "magic_shop_potions", "chance": 30 } ] }, diff --git a/data/mods/Magiclysm/worldgen/magic_basement.json b/data/mods/Magical_Nights/worldgen/magic_basement.json similarity index 100% rename from data/mods/Magiclysm/worldgen/magic_basement.json rename to data/mods/Magical_Nights/worldgen/magic_basement.json diff --git a/data/mods/Magiclysm/worldgen/magic_cabin.json b/data/mods/Magical_Nights/worldgen/magic_cabin.json similarity index 90% rename from data/mods/Magiclysm/worldgen/magic_cabin.json rename to data/mods/Magical_Nights/worldgen/magic_cabin.json index 935d29d28823..fccda2169aea 100644 --- a/data/mods/Magiclysm/worldgen/magic_cabin.json +++ b/data/mods/Magical_Nights/worldgen/magic_cabin.json @@ -135,20 +135,20 @@ "fill_ter": "t_shingle_flat_roof", "rows": [ " ", - " --------- ", - " -.......----- ", - " -...........- ", - " --...&.......- ", - " --............- ", - " --.............5 ", - " -----..............- ", - " -..................-- ", - " -=..................- ", - " -.........Q.........- ", - " ---.................- ", - " -................-- ", - " -...............-- ", - " ----------------- ", + " |22222223 ", + " |.......32223 ", + " |...........3 ", + " ||...&.......3 ", + " ||............3 ", + " ||.............5 ", + " |222|..............3 ", + " |..................33 ", + " |=..................3 ", + " |.........Q.........3 ", + " |-|.................3 ", + " |................33 ", + " |...............33 ", + " |---------------3 ", " ", " ", " ", diff --git a/data/mods/Magiclysm/worldgen/magic_shop.json b/data/mods/Magical_Nights/worldgen/magic_shop.json similarity index 91% rename from data/mods/Magiclysm/worldgen/magic_shop.json rename to data/mods/Magical_Nights/worldgen/magic_shop.json index c8579bcf10e4..657d5dbe76da 100644 --- a/data/mods/Magiclysm/worldgen/magic_shop.json +++ b/data/mods/Magical_Nights/worldgen/magic_shop.json @@ -207,24 +207,24 @@ " ", " ", " ", - " --- ", - " -.- ", - " -.5- ", - " ------..- ", - " --.......- ", - " --........- ", - " --.........- ", - " --..........- ", - " -..A...:....- ", - " -...........- ", - " -...........- ", - " -.......&...- ", - " -...........- ", - " --..........- ", - " --...X.....- ", - " --........- ", - " --.......- ", - " -5------- ", + " |23 ", + " |.3 ", + " |.53 ", + " |2222|..3 ", + " ||.......3 ", + " ||........3 ", + " ||.........3 ", + " ||..........3 ", + " |..A...:....3 ", + " |...........3 ", + " |...........3 ", + " |.......&...3 ", + " |...........3 ", + " ||..........3 ", + " ||...X.....3 ", + " ||........3 ", + " ||.......3 ", + " |5------3 ", " ", " ", " " diff --git a/data/mods/Magiclysm/worldgen/multitile_city_buildings.json b/data/mods/Magical_Nights/worldgen/multitile_city_buildings.json similarity index 100% rename from data/mods/Magiclysm/worldgen/multitile_city_buildings.json rename to data/mods/Magical_Nights/worldgen/multitile_city_buildings.json diff --git a/data/mods/Magiclysm/worldgen/nested_mapgen.json b/data/mods/Magical_Nights/worldgen/nested_mapgen.json similarity index 100% rename from data/mods/Magiclysm/worldgen/nested_mapgen.json rename to data/mods/Magical_Nights/worldgen/nested_mapgen.json diff --git a/data/mods/Magical_Nights/worldgen/orc_camp.json b/data/mods/Magical_Nights/worldgen/orc_camp.json new file mode 100755 index 000000000000..f199b0b6a627 --- /dev/null +++ b/data/mods/Magical_Nights/worldgen/orc_camp.json @@ -0,0 +1,101 @@ +[ + { + "type": "mapgen", + "method": "json", + "om_terrain": "orc_camp", + "weight": 100, + "object": { + "fill_ter": "t_null", + "rows": [ + "###########HH###########", + "#**********************#", + "#*----............----*#", + "#*-QG-............-GQ-*#", + "#*-GG-............-GG-*#", + "#*--=-............-=--*#", + "#*.................*..*#", + "#*....................I#", + "#*%%.....------.......*#", + "#*%......-Bold-.......I#", + "#*.......WrrrrW.......*#", + "H*.......WrrrrW.......*H", + "H*.......-rrrr-.......*H", + "#*.......--++--.......*#", + "#**...................P#", + "#**...................*#", + "#*....................P#", + "#*....................*#", + "#*--=-...-=--=-*..-=--*#", + "#*-GG-...-GGGG-...-GG-*#", + "#*-QG-...-RSSR-...-GQ-*#", + "#*----...------...----*#", + "#**********************#", + "###########HH###########" + ], + "place_monster": [ + { "monster": "mon_orc_warrior", "x": [ 3, 20 ], "y": [ 6, 16 ], "repeat": 2 }, + { "monster": "mon_orc_archer", "x": [ 3, 20 ], "y": [ 6, 16 ], "repeat": 2 }, + { "monster": "mon_goblin_chieftain", "x": [ 10, 13 ], "y": [ 10, 12 ] } + ], + "items": { + "%": [ + { "item": "preserved_food", "chance": 75, "repeat": [ 2, 4 ] }, + { "item": "stash_food", "chance": 66, "repeat": [ 2, 4 ] } + ], + "B": { "item": "bed", "chance": 80 }, + "R": [ + { "item": "camping", "chance": 50, "repeat": [ 1, 3 ] }, + { "item": "gear_survival", "chance": 30, "repeat": [ 1, 3 ] }, + { "item": "tools_home", "chance": 50, "repeat": [ 1, 3 ] }, + { "item": "hand_tools", "chance": 50, "repeat": [ 1, 3 ] } + ], + "S": [ + { "item": "supplies_hardware", "chance": 66, "repeat": [ 2, 4 ] }, + { "item": "supplies_metal", "chance": 50, "repeat": [ 2, 4 ] }, + { "item": "tailoring_fabric", "chance": 33, "repeat": [ 2, 4 ] } + ], + "o": [ + { "item": "enchanted_rings_uncommon", "chance": 100 }, + { "item": "magic_tools_and_loot", "chance": 95, "repeat": [ 2, 3 ] } + ], + "d": [ { "item": "spell_scroll_tier_1", "chance": 66, "repeat": [ 2, 3 ] }, { "item": "spellbook_tier_1", "chance": 10 } ] + }, + "furniture": { + "%": "f_crate_o", + "Q": "f_makeshift_bed", + "I": "f_target", + "P": "f_punching_bag", + "B": "f_bed", + "R": [ "f_rack", "f_utility_shelf" ], + "S": "f_rack_wood", + "o": "f_safe_l", + "d": "f_desk", + "l": "f_stool", + "z": "f_brazier" + }, + "terrain": { + "+": [ [ "t_door_c", 3 ], "t_door_locked" ], + "#": "t_junk_wall", + "=": "t_door_c", + "-": "t_wall_log", + "%": "t_region_groundcover", + "*": [ [ "t_region_groundcover", 15 ], "t_region_shrub" ], + ".": [ [ "t_region_groundcover", 4 ], "t_region_groundcover_forest" ], + "G": "t_floor", + "H": "t_gate_metal_c", + "I": "t_region_groundcover", + "P": "t_region_groundcover", + "Q": "t_floor", + "R": "t_floor", + "S": "t_floor", + "W": "t_window", + "o": "t_rock_floor", + "r": "t_rock_floor", + "d": "t_rock_floor", + "~": [ [ "t_region_groundcover_barren", 3 ], "t_region_groundcover" ], + "B": "t_rock_floor", + "l": "t_rock_floor" + } + } + } +] diff --git a/data/mods/Magiclysm/worldgen/overmap_specials.json b/data/mods/Magical_Nights/worldgen/overmap_specials.json similarity index 73% rename from data/mods/Magiclysm/worldgen/overmap_specials.json rename to data/mods/Magical_Nights/worldgen/overmap_specials.json index 72ef3a0c8a77..8fa4d0595bac 100644 --- a/data/mods/Magiclysm/worldgen/overmap_specials.json +++ b/data/mods/Magical_Nights/worldgen/overmap_specials.json @@ -125,6 +125,15 @@ "city_sizes": [ 0, 20 ], "occurrences": [ 0, 5 ] }, + { + "type": "overmap_special", + "id": "orc_camp", + "overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "orc_camp_north" } ], + "locations": [ "wilderness" ], + "city_distance": [ 20, -1 ], + "city_sizes": [ 0, 20 ], + "occurrences": [ 0, 2 ] + }, { "type": "overmap_special", "id": "forest_tomb", @@ -137,5 +146,58 @@ "city_distance": [ 20, -1 ], "city_sizes": [ 0, 20 ], "occurrences": [ 0, 1 ] + }, + { + "type": "overmap_special", + "id": "wizardtower1", + "overmaps": [ + { "point": [ 0, 0, 0 ], "overmap": "wizardtower1_ground_north" }, + { "point": [ 0, 0, 1 ], "overmap": "wizardtower1_living_north" }, + { "point": [ 0, 0, 2 ], "overmap": "wizardtower1_golems_north" }, + { "point": [ 0, 0, 3 ], "overmap": "wizardtower1_study_north" }, + { "point": [ 0, 0, 4 ], "overmap": "wizardtower1_roof_north" } + ], + "locations": [ "wilderness" ], + "city_distance": [ 20, -1 ], + "city_sizes": [ 0, 20 ], + "occurrences": [ 0, 5 ], + "flags": [ "ELECTRIC_GRID" ] + }, + { + "type": "overmap_special", + "id": "wizardtower2", + "overmaps": [ + { "point": [ 0, 0, 0 ], "overmap": "wizardtower2_ground_north" }, + { "point": [ 0, 0, 1 ], "overmap": "wizardtower2_stairs1_north" }, + { "point": [ 0, 0, 2 ], "overmap": "wizardtower2_stairs2_north" }, + { "point": [ 0, 0, 3 ], "overmap": "wizardtower2_study_north" }, + { "point": [ 0, 0, 4 ], "overmap": "wizardtower2_roof_north" } + ], + "locations": [ "wilderness" ], + "city_distance": [ 20, -1 ], + "city_sizes": [ 0, 20 ], + "occurrences": [ 0, 5 ], + "flags": [ "ELECTRIC_GRID" ] + }, + { + "type": "overmap_special", + "id": "forest_tomb", + "overmaps": [ + { "point": [ 0, 0, 0 ], "overmap": "magic_academy_ground_north" }, + { "point": [ 0, 0, 1 ], "overmap": "magic_academy_2nd_north" }, + { "point": [ 0, 0, 2 ], "overmap": "magic_academy_3rd_north" }, + { "point": [ 0, 0, 3 ], "overmap": "magic_academy_4th_north" }, + { "point": [ 0, 0, 4 ], "overmap": "magic_academy_5th_north" }, + { "point": [ 0, 0, 5 ], "overmap": "magic_academy_6th_north" }, + { "point": [ 0, 0, 6 ], "overmap": "magic_academy_7th_north" }, + { "point": [ 0, 0, 7 ], "overmap": "magic_academy_8th_north" }, + { "point": [ 0, 0, 8 ], "overmap": "magic_academy_roof_north" }, + { "point": [ 0, 0, -1 ], "overmap": "magic_academy_basement_north" } + ], + "locations": [ "wilderness" ], + "city_distance": [ 20, -1 ], + "city_sizes": [ 0, 20 ], + "occurrences": [ 0, 1 ], + "flags": [ "ELECTRIC_GRID" ] } ] diff --git a/data/mods/Magiclysm/worldgen/overmap_terrain.json b/data/mods/Magical_Nights/worldgen/overmap_terrain.json similarity index 88% rename from data/mods/Magiclysm/worldgen/overmap_terrain.json rename to data/mods/Magical_Nights/worldgen/overmap_terrain.json index d04aab5fbc8a..3ccea999617d 100644 --- a/data/mods/Magiclysm/worldgen/overmap_terrain.json +++ b/data/mods/Magical_Nights/worldgen/overmap_terrain.json @@ -53,7 +53,7 @@ { "type": "overmap_terrain", "id": "demon_spider_lair", - "name": "Forest", + "name": "Demon Spider Nest", "sym": "F", "color": "light_gray", "see_cost": 5 @@ -87,7 +87,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-0_NW", - "name": "Swamp", + "name": "Black Dragon Lair", "sym": "F", "color": "cyan", "see_cost": 5 @@ -95,7 +95,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-0_NE", - "name": "Swamp", + "name": "Black Dragon Lair", "sym": "F", "color": "cyan", "see_cost": 5 @@ -103,7 +103,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-0_SE", - "name": "Swamp", + "name": "Black Dragon Lair", "sym": "F", "color": "cyan", "see_cost": 5 @@ -111,7 +111,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-0_SW", - "name": "Swamp", + "name": "Black Dragon Lair", "sym": "F", "color": "cyan", "see_cost": 5 @@ -119,7 +119,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-1_NW", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -127,7 +127,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-1_NE", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -135,7 +135,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-1_SE", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -143,7 +143,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-1_SW", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -151,7 +151,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-2_NW", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -159,7 +159,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-2_NE", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -167,7 +167,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-2_SE", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -175,7 +175,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-2_SW", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -183,7 +183,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-3_NW", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -191,7 +191,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-3_NE", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -199,7 +199,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-3_SE", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -207,7 +207,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-3_SW", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -215,7 +215,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-4_NW", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -223,7 +223,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-4_NE", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -231,7 +231,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-4_SE", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -239,7 +239,7 @@ { "type": "overmap_terrain", "id": "black_dragon_lair_z-4_SW", - "name": "solid rock", + "name": "Black Dragon Lair", "sym": "%", "color": "light_gray", "see_cost": 5 @@ -247,7 +247,7 @@ { "type": "overmap_terrain", "id": "lake_retreat_ground", - "name": "forest", + "name": "Lake Retreat", "sym": "F", "color": "green", "see_cost": 5 @@ -255,7 +255,7 @@ { "type": "overmap_terrain", "id": "lake_retreat_z1", - "name": "forest", + "name": "Lake Retreat", "sym": ".", "color": "blue", "see_cost": 5 @@ -263,7 +263,7 @@ { "type": "overmap_terrain", "id": "lake_retreat_z2", - "name": "forest", + "name": "Lake Retreat", "sym": ".", "color": "blue", "see_cost": 5 @@ -271,7 +271,7 @@ { "type": "overmap_terrain", "id": "lake_retreat_z3", - "name": "forest", + "name": "Lake Retreat", "sym": ".", "color": "blue", "see_cost": 5 @@ -279,7 +279,7 @@ { "type": "overmap_terrain", "id": "lake_retreat_z4", - "name": "forest", + "name": "Lake Retreat", "sym": ".", "color": "blue", "see_cost": 5 @@ -287,7 +287,7 @@ { "type": "overmap_terrain", "id": "lake_retreat_boathouse", - "name": "lake shore", + "name": "Lake Retreat Boathouse", "sym": "#", "color": "light_blue", "see_cost": 5 @@ -295,7 +295,7 @@ { "type": "overmap_terrain", "id": "lake_retreat_boathouse_roof", - "name": "forest", + "name": "Lake Retreat Boathouse", "sym": ".", "color": "blue", "see_cost": 5 @@ -356,7 +356,7 @@ { "type": "overmap_terrain", "id": "forest_tomb", - "name": "forest", + "name": "Forest Tomb", "sym": "F", "color": "brown", "see_cost": 5 @@ -469,5 +469,15 @@ "see_cost": 5, "extras": "build", "mondensity": 2 + }, + { + "type": "overmap_terrain", + "id": "orc_camp", + "name": "Orc Camp", + "sym": "O", + "color": "green", + "see_cost": 5, + "extras": "build", + "mondensity": 2 } ] diff --git a/data/mods/Magical_Nights/worldgen/regional_overlay.json b/data/mods/Magical_Nights/worldgen/regional_overlay.json new file mode 100644 index 000000000000..d0cfa67f5d76 --- /dev/null +++ b/data/mods/Magical_Nights/worldgen/regional_overlay.json @@ -0,0 +1,8 @@ +[ + { + "type": "region_overlay", + "regions": [ "all" ], + "city": { "shops": { "used_bookstore": 225 } }, + "field_coverage": { "other": { "f_boulder_large": 0.98, "f_glow_boulder": 0.02 } } + } +] diff --git a/data/mods/Magiclysm/worldgen/used_bookstore.json b/data/mods/Magical_Nights/worldgen/used_bookstore.json similarity index 82% rename from data/mods/Magiclysm/worldgen/used_bookstore.json rename to data/mods/Magical_Nights/worldgen/used_bookstore.json index dd723dcc2f8b..f04a7e33bc44 100644 --- a/data/mods/Magiclysm/worldgen/used_bookstore.json +++ b/data/mods/Magical_Nights/worldgen/used_bookstore.json @@ -14,8 +14,8 @@ ",#N NNN NNN N#******", ",#NNN NNNN N N#******", ",#NNN NN$$$$D$#W##******", - ",W $Mz $#d********", - ",W NNN$MOz $#d********", + ",W $M $#d********", + ",W NNN$MO $#d********", ",#N ###$MMMM$#d********", ",#N +s&$$$$$$#*********", ",##############********,", @@ -74,19 +74,19 @@ " ", " ", " ", - " -------- ", - " -......5#---- ", - " -....&......- ", - " -...........- ", - " -...........- ", - " -...........5---- ", - " -...............- ", - " -...............- ", - " -......A........- ", - " -...............- ", - " -...............- ", - " -...............- ", - " 5---------------5 ", + " |2222222 ", + " |......5#2223 ", + " |....&......3 ", + " |...........3 ", + " |...........3 ", + " |...........52223 ", + " |...............3 ", + " |...............3 ", + " |......A........3 ", + " |...............3 ", + " |...............3 ", + " |...............3 ", + " 52222222222222225 ", " " ], "palettes": [ "roof_palette" ] diff --git a/data/mods/Magiclysm/worldgen/wizard-towers.json b/data/mods/Magical_Nights/worldgen/wizard-towers.json similarity index 86% rename from data/mods/Magiclysm/worldgen/wizard-towers.json rename to data/mods/Magical_Nights/worldgen/wizard-towers.json index c48c0156f8e7..fb35cda16f02 100644 --- a/data/mods/Magiclysm/worldgen/wizard-towers.json +++ b/data/mods/Magical_Nights/worldgen/wizard-towers.json @@ -22,17 +22,18 @@ ",# + | hTTh 5w,,.;wH b||| ##+||||+||#....!!!!##M#### mw!!!!........wd 9## w............!!!!!!!!!!!!......", ",#fx|st| 4w,,.;wH + |u t| U#....!!!!#0 # mw!!!!........wdA 99 w............!!!!!!!!!!!!......", ",######## &F##,,.;##H A| |u | U##....!!!!##0 # 0##!!!!........## O ##............!!!!!!!!!!!!......", - ",#UUU& + |67| ||#,,,.;;#HHHbb| |u CsC|cc#......!!!!##0 # <##!!!!..........## >##..............!!!!!!!!!!.......", - ",# # |||| #,,,.;;##|||||+||+|||||##......!!!!!##0 M ##!!!!!...........## ##................!!!!!!!!........", - ",# # ||HHHH w,,,.;;;#E + Adw;.......!!!!!######!!!!!.............#wwww#..................!!!!!!.........", - ",# # + #,,,.;;;##E|b d##;.......!!!!!!!!!!!!!!!!....................................................", - ",# #||+|b b#,,,.;;;;###b BB #w#;;........!!!!!!!!!!!!!!.....................................................", - ",# #A |H bw,,,.;;;;;;###EBBE###;;;;..........!!!!!!!!!!.......................................................", - ",#MMMMMM#R |H r#,,,.;;;;;;;;#wwww#;;;;;;............!!!!!!.........................................................", - ",*______## Y|H A##,,,........;;;;;;;;;;;;;...........................................................................", - ",*______*#=##ww#ww##,,,,.........;;;;;;;;;;;............................................................................" + ",]UUU& + |67| ||#,,,.;;#HHHbb| |u CsC|cc#......!!!!##0 # <##!!!!..........## >##..............!!!!!!!!!!.......", + ",] # |||| #,,,.;;##|||||+||+|||||##......!!!!!##0 M ##!!!!!...........## $ ##................!!!!!!!!........", + ",] # ||HHHH w,,,.;;;#E + Adw;.......!!!!!######!!!!!.............#wwww#..................!!!!!!.........", + ",] # + #,,,.;;;##E|b d##;.......!!!!!!!!!!!!!!!!....................................................", + ",] ##|+|b b#,,,.;;;;###b BB #w#;;........!!!!!!!!!!!!!!.....................................................", + ",] # |H bw,,,.;;;;;;###EBBE###;;;;..........!!!!!!!!!!.......................................................", + ",] -# |H r#,,,.;;;;;;;;#wwww#;;;;;;............!!!!!!.........................................................", + ",]MMMMMM]# Y|H A##,,,........;;;;;;;;;;;;;...........................................................................", + ",*______-#=##ww#ww##,,,,.........;;;;;;;;;;;............................................................................" ], - "palettes": [ "wizardtower1_palette" ] + "palettes": [ "wizardtower1_palette" ], + "terrain": { ",": [ [ "t_region_groundcover_forest", 5 ], "t_region_shrub", "t_region_tree" ] } } }, { @@ -69,16 +70,13 @@ ",,,,,,,,,,,,,,,,,,,,,,,,................................................................................................" ], "palettes": [ "wizardtower1_palette" ], - "terrain": { - ",": [ [ "t_region_groundcover_urban", 50 ], [ "t_region_groundcover_forest", 5 ], "t_region_shrub", "t_region_tree" ] - } + "terrain": { ",": [ [ "t_region_groundcover_forest", 5 ], "t_region_shrub", "t_region_tree" ] } } }, { "type": "palette", "id": "wizardtower1_palette", "terrain": { - ",": "t_region_groundcover_urban", ".": "t_open_air", "*": "t_region_shrub_decorative", "_": "t_pavement", @@ -94,7 +92,9 @@ "=": "t_door_locked", "w": "t_window_domestic", ">": "t_stairs_down", - "<": "t_stairs_up" + "<": "t_stairs_up", + "-": "t_gates_mech_control", + "]": "t_concrete_wall" }, "furniture": { "&": "f_trashcan", @@ -146,7 +146,7 @@ "a": [ { "item": "dresser", "chance": 50, "repeat": [ 1, 8 ] }, { "item": "allclothes", "chance": 10, "repeat": [ 1, 3 ] }, - { "item": "enchanted_misc", "chance": 5 } + { "item": "enchanted_misc", "chance": 25 } ], "b": [ { "item": "novels", "chance": 50, "repeat": [ 1, 15 ] }, { "item": "homebooks", "chance": 25, "repeat": [ 1, 5 ] } ], "B": { "item": "bed", "chance": 20 }, @@ -155,10 +155,10 @@ "d": { "item": "SUS_office_desk", "chance": 25 }, "D": { "item": "snacks", "chance": 10, "repeat": [ 1, 2 ] }, "E": { "item": "dresser", "chance": 50, "repeat": [ 1, 5 ] }, - "f": [ { "item": "SUS_fridge", "chance": 95 }, { "item": "potions_common", "chance": 5, "repeat": [ 1, 3 ] } ], + "f": [ { "item": "SUS_fridge", "chance": 95 }, { "item": "potions_common", "chance": 25, "repeat": [ 1, 3 ] } ], "i": [ { "item": "SUS_office_filing_cabinet", "chance": 30 }, { "item": "office", "chance": 50, "repeat": [ 1, 4 ] } ], "I": { "item": "SUS_dishwasher", "chance": 50 }, - "m": { "item": "magic_tools_and_loot", "chance": 25 }, + "m": { "item": "magic_tools_and_loot", "chance": 60 }, "o": { "item": "SUS_oven", "chance": 70 }, "r": { "item": "a_television", "chance": 100 }, "R": { "item": "shoes", "chance": 20, "repeat": [ 1, 4 ] }, @@ -166,9 +166,9 @@ "V": [ { "item": "tools_general", "chance": 60, "repeat": [ 1, 3 ] }, { "item": "mischw", "chance": 10 }, - { "item": "magic_tools_and_loot", "chance": 5 } + { "item": "magic_tools_and_loot", "chance": 20 } ], - "Y": [ { "item": "coat_rack", "chance": 70 }, { "item": "magic_shop_clothes", "chance": 30 } ], + "Y": [ { "item": "coat_rack", "chance": 70 }, { "item": "magic_shop_clothes", "chance": 60 } ], "1": [ { "item": "SUS_dishes", "chance": 100 }, { "item": "SUS_silverware", "chance": 100 } ], "2": [ { "item": "SUS_cookware", "chance": 100 }, { "item": "SUS_spice_collection", "chance": 50 } ], "3": [ { "item": "SUS_utensils", "chance": 100 }, { "item": "SUS_knife_drawer", "chance": 100 } ], @@ -176,13 +176,14 @@ "5": { "item": "SUS_kitchen_sink", "chance": 100 }, "6": { "item": "SUS_pantry", "chance": 100 }, "7": [ { "item": "SUS_breakfast_cupboard", "chance": 50 }, { "item": "SUS_coffee_cupboard", "chance": 50 } ], - "8": [ { "item": "homebooks", "chance": 45, "repeat": [ 1, 5 ] }, { "item": "spellbook_loot_1", "chance": 5 } ], + "8": [ { "item": "homebooks", "chance": 45, "repeat": [ 1, 5 ] }, { "item": "spellbook_loot_1", "chance": 20 } ], "9": [ { "item": "homebooks", "chance": 45, "repeat": [ 1, 5 ] }, - { "item": "spellbook_loot_1", "chance": 15 }, - { "item": "spellbook_loot_2", "chance": 1 } + { "item": "spellbook_loot_1", "chance": 40 }, + { "item": "spellbook_loot_2", "chance": 15 } ] }, - "monsters": { "0": { "monster": "GROUP_TOWER_GOLEM" } } + "monsters": { "0": { "monster": "GROUP_TOWER_GOLEM" } }, + "monster": { "$": { "monster": "mon_resingolem_half", "chance": 100 } } } ] diff --git a/data/mods/Magiclysm/Magiclysm_large.png b/data/mods/Magiclysm/Magiclysm_large.png deleted file mode 100644 index 5f41ce8bd52c..000000000000 Binary files a/data/mods/Magiclysm/Magiclysm_large.png and /dev/null differ diff --git a/data/mods/Magiclysm/Magiclysm_normal.png b/data/mods/Magiclysm/Magiclysm_normal.png deleted file mode 100644 index 8d6b5e64894a..000000000000 Binary files a/data/mods/Magiclysm/Magiclysm_normal.png and /dev/null differ diff --git a/data/mods/Magiclysm/bionics.json b/data/mods/Magiclysm/bionics.json deleted file mode 100644 index 38063acab52d..000000000000 --- a/data/mods/Magiclysm/bionics.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "id": "bio_fuel_cell_blood", - "type": "bionic", - "name": { "str": "Blood Power Generator CBM" }, - "description": "Embedded into your back and connected to your bionic power supply is a powerfull spell focus able to consume blood from dead creatures to produce bionic power. It can store up to 100 mL of blood.", - "occupied_bodyparts": [ [ "torso", 8 ] ], - "fuel_options": [ "blood", "dragon_blood", "tainted_blood", "mana_infused_blood" ], - "fuel_capacity": 100, - "fuel_efficiency": 0.6, - "exothermic_power_gen": true, - "time": 6, - "flags": [ "BIONIC_TOGGLED", "BIONIC_POWER_SOURCE" ] - } -] diff --git a/data/mods/Magiclysm/items/bionics.json b/data/mods/Magiclysm/items/bionics.json deleted file mode 100644 index 82d29c68e1ba..000000000000 --- a/data/mods/Magiclysm/items/bionics.json +++ /dev/null @@ -1,40 +0,0 @@ -[ - { - "id": "bio_fuel_cell_blood", - "copy-from": "bionic_general", - "type": "BIONIC_ITEM", - "name": { "str": "Blood Power Generator CBM" }, - "description": "Using the latest advancement in technomancy this bionic is able to convert the innate energy stored in blood into bionic power. The stronger the blood the better. It can hold up to 100 mL of blood.", - "price": "4500 USD", - "weight": "500 g", - "difficulty": 8 - }, - { - "type": "enchantment", - "id": "ench_bio_sneeze_beam", - "values": [ { "value": "MANA_CAP", "add": 500 } ] - }, - { - "id": "bio_sneeze_beam", - "copy-from": "bionic_general", - "type": "BIONIC_ITEM", - "name": { "str": "Crystallized Mana Nose Replacement" }, - "description": "A large gem made with crystallized mana and some other stabilizing metals. Comes with a specially designed power pack (installed into the skull) that does not interfere with your mana ley lines. WARNING: for Technomancer use only. By using this spell you are waiving all liability of Frikken Laser Beams Inc. and its subsidiaries.", - "price": "4500 USD", - "weight": "750 g", - "volume": "177 ml", - "difficulty": 8 - }, - { - "id": "bio_sneeze_beam", - "type": "bionic", - "name": { "str": "Crystallized Mana Nose Replacement" }, - "description": "A large gem made with crystallized mana and some other stabilizing metals. Comes with a specially designed power pack (installed into the skull) that does not interfere with your mana ley lines. WARNING: for Technomancer use only. By using this spell you are waiving all liability of Frikken Laser Beams Inc. and its subsidiaries.", - "occupied_bodyparts": [ [ "head", 10 ], [ "mouth", 1 ] ], - "capacity": "500 kJ", - "learned_spells": [ [ "overcharge_eyes", 4 ] ], - "canceled_mutations": [ "EARTHSHAPER" ], - "enchantments": [ "ench_bio_sneeze_beam" ], - "flags": [ "BIONIC_SHOCKPROOF" ] - } -] diff --git a/data/mods/Magiclysm/items/class_runes.json b/data/mods/Magiclysm/items/class_runes.json deleted file mode 100644 index 7f5f406e5903..000000000000 --- a/data/mods/Magiclysm/items/class_runes.json +++ /dev/null @@ -1,110 +0,0 @@ -[ - { - "id": "rune_biomancer", - "type": "TOOL", - "symbol": "=", - "color": "pink", - "name": { "str": "Biomancer rune" }, - "description": "This magical pebble has an insignia of rended flesh and bones on it. It is necessary for Biomancers to channel magic into their crafts.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - }, - { - "id": "rune_technomancer", - "type": "TOOL", - "symbol": "=", - "color": "blue", - "name": { "str": "Technomancer rune" }, - "description": "This magical pebble has an insignia of clockwork and gears on it. It is necessary for Technomancers to channel magic into their crafts.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - }, - { - "id": "rune_magus", - "type": "TOOL", - "symbol": "=", - "color": "magenta", - "name": { "str": "Magus rune", "str_pl": "Magi runes" }, - "description": "This magical pebble has an insignia of crystal and mana orbs on it. It is necessary for Magi to channel magic into their crafts.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - }, - { - "id": "rune_earthshaper", - "type": "TOOL", - "symbol": "=", - "color": "green", - "name": { "str": "Earthshaper rune" }, - "description": "This magical pebble has an insignia of steel and rocks on it. It is necessary for Earthshapers to channel magic into their crafts.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - }, - { - "id": "rune_kelvinist", - "type": "TOOL", - "symbol": "=", - "color": "red", - "name": { "str": "Kelvinist rune" }, - "description": "This magical pebble has an insignia of ice and flames on it. It is necessary for Kelvinists to channel magic into their crafts.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - }, - { - "id": "rune_stormshaper", - "type": "TOOL", - "symbol": "=", - "color": "yellow", - "name": { "str": "Stormshaper rune" }, - "description": "This magical pebble has an insignia of lightning and storm clouds on it. It is necessary for Stormshapers to channel magic into their crafts.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - }, - { - "id": "rune_druid", - "type": "TOOL", - "symbol": "=", - "color": "brown", - "name": { "str": "Druid rune" }, - "description": "This magical pebble has an insignia of nature and trees on it. It is necessary for Druids to channel magic into their crafts.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - }, - { - "id": "rune_animist", - "type": "TOOL", - "symbol": "=", - "color": "light_red", - "name": { "str": "Animist rune" }, - "description": "This magical pebble has an insignia of summoners on it. It is necessary for Animists to channel magic into their crafts.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - }, - { - "id": "rune_alchemist", - "type": "TOOL", - "symbol": "=", - "color": "black", - "name": { "str": "alchemist rune" }, - "description": "This magical pebble has an insignia of alchemy and potions on it. While versatile in use, the lack of attunement to any school prevents creation of more advanced recipes.", - "volume": "5ml", - "weight": "1 g", - "material": "stone", - "flags": [ "TRADER_AVOID" ] - } -] diff --git a/data/mods/Magiclysm/items/materials.json b/data/mods/Magiclysm/items/materials.json deleted file mode 100644 index 81466a97b9f3..000000000000 --- a/data/mods/Magiclysm/items/materials.json +++ /dev/null @@ -1,70 +0,0 @@ -[ - { - "type": "COMESTIBLE", - "id": "raw_owlbear_fur", - "category": "spare_parts", - "name": "raw owlbear pelt", - "weight": "114 g", - "volume": "170 ml", - "color": "brown", - "spoils_in": "1 day 12 hours", - "comestible_type": "FOOD", - "symbol": ",", - "quench": -20, - "healthy": -10, - "calories": 550, - "description": "A carefully folded raw skin harvested from an owlbear. It still has the fur attached. You can cure it for storage and tanning, or eat it if you're desperate enough.", - "price": "330 cent", - "price_postapoc": "1 USD", - "material": [ "fur", "flesh" ], - "flags": [ "NO_SALVAGE", "TRADER_AVOID" ], - "stack_size": 1, - "fun": -24, - "vitamins": [ [ "meat_allergen", 1 ] ] - }, - { - "type": "GENERIC", - "id": "cured_owlbear_pelt", - "symbol": ",", - "color": "brown", - "name": { "str": "cured owlbear pelt" }, - "description": "A rolled up owlbear hide which has been scraped of extraneous hair and flesh and treated to prevent decay. It could be tanned and transformed into usable fur pelts.", - "price": "2 USD", - "price_postapoc": "0 cent", - "material": [ "fur", "flesh" ], - "flags": [ "NO_SALVAGE" ], - "weight": "114 g", - "volume": "170 ml", - "category": "spare_parts", - "to_hit": -1 - }, - { - "type": "GENERIC", - "id": "owlbear_fur", - "symbol": ",", - "color": "brown", - "name": { "str": "owlbear fur pelt" }, - "description": "A small bolt of fur from an owlbear. Can be used for VERY warm clothing.", - "price": "10 USD", - "price_postapoc": "10 cent", - "material": [ "fur", "leather" ], - "flags": [ "NO_SALVAGE" ], - "weight": "114 g", - "volume": "250 ml", - "category": "spare_parts" - }, - { - "type": "GENERIC", - "id": "dragon_bone", - "category": "spare_parts", - "name": { "str": "dragon bone" }, - "weight": "500 g", - "color": "white", - "symbol": "%", - "description": "A bone from a dragon! Even on its own, these bones make an excellent material for weapons. However, something tells you that the bones hide more secrets than just that.", - "price": "0 cent", - "price_postapoc": "50 cent", - "material": [ "bone" ], - "volume": "500 ml" - } -] diff --git a/data/mods/Magiclysm/items/metals.json b/data/mods/Magiclysm/items/metals.json deleted file mode 100644 index 9b55d45b541c..000000000000 --- a/data/mods/Magiclysm/items/metals.json +++ /dev/null @@ -1,70 +0,0 @@ -[ - { - "id": "orichalcum_lump", - "type": "AMMO", - "category": "spare_parts", - "name": { "str": "lump of orichalcum", "str_pl": "lumps of orichalcum" }, - "description": "A lump of raw orichalcum. Needs to be reformed into an ingot to be useful.", - "weight": "1000 g", - "volume": "250 ml", - "price": "25 USD", - "bashing": 12, - "to_hit": -4, - "stack_size": 2, - "//": "Density 7.60g/cm³ ~ 1.9kg/250ml @ 1000g/unit ~ stack 2 and formed as a solid ingot so 100% of this", - "material": "orichalcum_metal", - "symbol": ",", - "color": "light_green", - "ammo_type": "components", - "qualities": [ [ "HAMMER", 1 ] ] - }, - { - "id": "orichalcum_sliver", - "type": "AMMO", - "category": "spare_parts", - "name": { "str": "sliver of orichalcum", "str_pl": "slivers of orichalcum" }, - "description": "A sliver of orichalcum broken from a larger piece. Needs to be reformed into an ingot to be useful.", - "weight": "250 g", - "volume": "250 ml", - "price": "10 USD", - "bashing": 8, - "to_hit": -2, - "stack_size": 4, - "//": "Density 7.60g/cm³ ~ 1.9kg/250ml @ 250g/unit ~ stack 8 but mishapen so only 50% of this", - "material": "orichalcum_metal", - "symbol": ",", - "color": "light_green", - "ammo_type": "components", - "qualities": [ [ "CUT", 1 ] ] - }, - { - "id": "orichalcum_ingot", - "type": "GENERIC", - "category": "spare_parts", - "name": "orichalcum ingot", - "description": "An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be used for various blacksmithing tasks.", - "//": "Density the same as steel.", - "weight": "2 kg", - "volume": "253 ml", - "price": "6399 cent", - "bashing": 6, - "to_hit": -3, - "material": "orichalcum_metal", - "symbol": "=", - "color": "light_green" - }, - { - "id": "mercury", - "type": "AMMO", - "category": "spare_parts", - "name": { "str_sp": "liquid mercury" }, - "ammo_type": "mercury", - "description": "Elemental liquid mercury. Known for its use in thermometers.", - "volume": "1 ml", - "phase": "liquid", - "container": "flask_glass", - "color": "light_gray", - "symbol": "~", - "weight": "1356 mg" - } -] diff --git a/data/mods/Magiclysm/lore.md b/data/mods/Magiclysm/lore.md deleted file mode 100644 index afe097a0d3f0..000000000000 --- a/data/mods/Magiclysm/lore.md +++ /dev/null @@ -1,35 +0,0 @@ -# History -Magic is a rather spiritually draining experience. -It's just not very comfortable using your mana pool. -It doesn't really affect you in a way that would affect doing things in real life. - -The industrial revolution was the downturn of magic. -At the time of WWI, about 80% of the population of the world could cast 1 spell, and about 40% of those could cast more than one -At the time of the cataclysm, 20-30% of the population could cast 1 spell and about 10% of those could cast more than one. -High-powered combat spells are either family or military secrets - -That being said, it's common knowledge that magic is a thing. People who are a powerful mage are often well-known in their communities, and carry high-profile jobs. - -# Classes - -Magic has been around for longer than written human history. On the surface, Magic defies the laws of thermodynamics, which have stumped physicists ever since they were proposed. - - There are two different ways to tap into magic: you can exert your will on the universe (Control), or you can be a conduit for the universe to exert its will (Harmony). These two ways are polar opposites of each other, and when they are used for the first time (during the studying process, as you of course have to try to cast the spell to learn it) change the mage's body irrevocably. This is fundamental to why each mage class has an opposing class. - -The 8 mage classes are: Magus and Animist, Kelvinist and Stormshaper, Technomancer and Earthshaper, Biomancer and Druid. The first class in the pair is Control and the second is Harmony. The interesting thing here is you can choose between Control and Harmony for each pair, instead of having to stick to one for all classes, which is a subject of study on its own. - -In the case of "how is a spell part of a class?" the spell's characteristics determine the class; the class does not determine the spells. The classes were established in ancient Greece, when it was noted that certain spells were incompatible with knowing other spells. So whenever a spell was invented, the universe would "decide" what class it is. - -### Class Characteristics - -- Magus: Force and Waves. This can be described as Time, Light, Gravity, and Force. Magus spells are the most versatile of the classes, and it also usually has the more difficult to learn spells. It is the class that has the most impact on the fundamental laws of the universe. -- Animist: Spirits. As Magus is the physical universe, animist is the metaphysical. Usually misunderstood and as such has a bit of a stigma throughout history as necromancers. This class also features blood magic, which is another reason it has a stigma. -- Kelvinist: Heat and Cold spells. Can also produce light to a lesser degree. -- Stormshaper: Wind, weather, and electricity. Most of these spells are really loud. -- Technomancer: Invention. This usually manifests as spells that summon arms and armor, holograms, tools, and buffs that focus on the human condition. The Technomancer rune is also uniquely versatile, allowing for much wider ability for magic to work with mundane inventions. Technomancer became a lot more popular with the invention of electricity, even while magic as a whole declined, as it has a finer control of electricity than stormshaper, though it does not have the power. -- Earthshaper: Stone, dirt, geography, things to do with the earth. The spells often focus on melee and defense. Lava is a high-tier earthshaper thing as well. This class features spells that use stamina as their energy source. -- Biomancer: Flesh mage. Manipulating the caster's flesh is easier but higher tier spells can manipulate others' flesh. Features Acid. -- Druid: Plant mage. Communes with nature. The typical "druid" of old is usually a combination of this class and Earthshaper. Has a slight secondary affinity with water. - - -With the classes above listed, you might notice that there is some overlap. This overlap actually results in spells that are "classless," due to sharing one more traits with multiple classes that do not tip the scales in one direction or another. These spells are overwhelmingly weak spells, as stronger spells inevitably have characteristics that will tip the scales, whether they are obvious or not. diff --git a/data/mods/Magiclysm/mod_tileset.json b/data/mods/Magiclysm/mod_tileset.json deleted file mode 100644 index db5247e7ccd5..000000000000 --- a/data/mods/Magiclysm/mod_tileset.json +++ /dev/null @@ -1,1418 +0,0 @@ -[ - { - "type": "mod_tileset", - "compatibility": [ "UNDEAD_PEOPLE_BASE", "UNDEAD_PEOPLE", "MshockRealXotto", "MSX++DEAD_PEOPLE" ], - "tiles-new": [ - { - "file": "Magiclysm_normal.png", - "tiles": [ - { "id": "bg_shadow_frog", "fg": 1, "rotates": false }, - { "id": "bg_shadow_goblin", "fg": 2, "rotates": false }, - { "id": "bg_shadow_item", "fg": 3, "rotates": false }, - { "id": "bg_shadow_normal", "fg": 4, "rotates": false }, - { "id": "cestus", "fg": 5, "bg": 3, "rotates": false }, - { - "id": "t_dirtfloor", - "fg": [ - { "weight": 1, "sprite": 7 }, - { "weight": 1, "sprite": 8 }, - { "weight": 1, "sprite": 9 }, - { "weight": 1, "sprite": 10 }, - { "weight": 1, "sprite": 11 } - ], - "rotates": false - }, - { "id": "bio_fuel_cell_blood", "fg": 12, "bg": 3, "rotates": false }, - { "id": "overlay_wielded_bio_fuel_cell_blood", "fg": 12, "rotates": false }, - { "id": "bio_sneeze_beam", "fg": 13, "bg": 3, "rotates": false }, - { "id": "overlay_mutation_bio_sneeze_beam", "fg": 14, "rotates": false }, - { "id": "overlay_wielded_bio_sneeze_beam", "fg": 13, "rotates": false }, - { "id": "fd_clairvoyant", "fg": 591, "rotates": false }, - { "id": "fd_darkness", "fg": 591, "rotates": false }, - { "id": "fd_fright", "fg": 591, "rotates": false }, - { "id": "fd_vault_atmosphere", "fg": 591, "rotates": false }, - { "id": "soul_burn_item", "fg": 591, "rotates": false }, - { "id": "f_altar", "fg": 15, "rotates": false }, - { "id": "f_attunement_altar", "fg": 16, "rotates": false }, - { "id": "f_demon_forge", "fg": 17 }, - { "id": "f_magiclysm_translocator_gate", "fg": 18 }, - { - "id": "f_magic_bench", - "fg": 19, - "rotates": true, - "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 20 }, - { "id": "corner", "fg": [ 21, 22, 23, 24 ] }, - { "id": "t_connection", "fg": [ 31, 32, 33, 34 ] }, - { "id": "edge", "fg": [ 25, 26 ] }, - { "id": "end_piece", "fg": [ 27, 28, 29, 30 ] }, - { "id": "unconnected", "fg": [ 35, 35, 35, 35 ] } - ] - }, - { "id": "f_magic_circle", "fg": 36, "rotates": false }, - { "id": "adrenal_gland_large", "fg": 37, "rotates": false }, - { "id": "overlay_wielded_adrenal_gland_large", "fg": 37, "rotates": false }, - { "id": "alumentum", "fg": 38, "rotates": false }, - { "id": "overlay_wielded_alumentum", "fg": 38, "rotates": false }, - { "id": "bulette_pearl", "fg": 39, "rotates": false }, - { "id": "overlay_wielded_bulette_pearl", "fg": 39, "rotates": false }, - { "id": "bulette_plate", "fg": 40, "rotates": false }, - { "id": "overlay_wielded_bulette_plate", "fg": 40, "rotates": false }, - { "id": "vp_bulette_plate", "fg": 41, "rotates": false }, - { "id": "copper_circlet", "fg": 42, "rotates": false }, - { "id": "overlay_wielded_copper_circlet", "fg": 42, "rotates": false }, - { "id": "overlay_worn_copper_circlet", "fg": 43, "rotates": false }, - { "id": "copper_infuser", "fg": 44, "rotates": false }, - { "id": "overlay_wielded_copper_infuser", "fg": 44, "rotates": false }, - { "id": "overlay_worn_copper_infuser", "fg": 45, "rotates": false }, - { "id": "demon_chitin_piece", "fg": 46, "rotates": false }, - { "id": "overlay_wielded_demon_chitin_piece", "fg": 46, "rotates": false }, - { "id": "demon_chitin_plate", "fg": 47, "rotates": false }, - { "id": "overlay_wielded_demon_chitin_plate", "fg": 47, "rotates": false }, - { "id": "demon_spider_fang", "fg": 48, "rotates": false }, - { "id": "overlay_wielded_demon_spider_fang", "fg": 48, "rotates": false }, - { "id": "dragon_essence", "fg": 49, "rotates": false }, - { "id": "overlay_wielded_dragon_essence", "fg": 49, "rotates": false }, - { "id": "glow_dust", "fg": 50 }, - { "id": "overlay_wielded_glow_dust", "fg": 50 }, - { "id": "glow_light", "fg": 51, "rotates": false }, - { "id": "overlay_wielded_glow_light", "fg": 51, "rotates": false }, - { "id": "glow_light_off", "fg": 52, "rotates": false }, - { "id": "overlay_wielded_glow_light_off", "fg": 52, "rotates": false }, - { "id": "overlay_wielded_owlbear_stone", "fg": 53 }, - { "id": "owlbear_stone", "fg": 53 }, - { "id": "overlay_wielded_potion_starter", "fg": 54 }, - { "id": "potion_starter", "fg": 54 }, - { "id": "overlay_wielded_silver_infuser", "fg": 55, "rotates": false }, - { "id": "silver_infuser", "fg": 55, "rotates": false }, - { "id": "overlay_worn_silver_infuser", "fg": 56, "rotates": false }, - { "id": "overlay_wielded_stirge_proboscis", "fg": 57, "rotates": false }, - { "id": "stirge_proboscis", "fg": 57, "rotates": false }, - { "id": "overlay_wielded_stone_shell", "fg": 58 }, - { "id": "stone_shell", "fg": 58 }, - { "id": "blood", "fg": 59, "rotates": false }, - { "id": "overlay_wielded_blood", "fg": 59, "rotates": false }, - { "id": "dragon_blood", "fg": 60, "rotates": false }, - { "id": "overlay_wielded_dragon_blood", "fg": 60, "rotates": false }, - { "id": "overlay_wielded_tainted_blood", "fg": 61, "rotates": false }, - { "id": "tainted_blood", "fg": 61, "rotates": false }, - { "id": "arrow_odin", "fg": 62, "rotates": false }, - { "id": "overlay_wielded_arrow_odin", "fg": 62, "rotates": false }, - { "id": "ichaival", "fg": 63, "rotates": false }, - { "id": "overlay_wielded_ichaival", "fg": 64, "rotates": false }, - { "id": "overlay_wielded_quiver", "fg": 65, "rotates": false }, - { "id": "quiver", "fg": 65, "bg": 3, "rotates": false }, - { "id": "overlay_worn_quiver", "fg": 66, "rotates": false }, - { "id": "overlay_wielded_quiver_birchbark", "fg": 67, "rotates": false }, - { "id": "quiver_birchbark", "fg": 67, "bg": 3, "rotates": false }, - { "id": "overlay_worn_quiver_birchbark", "fg": 68, "rotates": false }, - { "id": "overlay_wielded_quiver_large_birchbark", "fg": 69, "rotates": false }, - { "id": "quiver_large_birchbark", "fg": 69, "bg": 3, "rotates": false }, - { "id": "overlay_worn_quiver_large_birchbark", "fg": 70, "rotates": false }, - { "id": "black_dragon_hide_raw", "fg": 71, "rotates": false }, - { "id": "overlay_wielded_black_dragon_hide_raw", "fg": 71, "rotates": false }, - { "id": "black_dragon_tanned_hide", "fg": 72, "rotates": false }, - { "id": "overlay_wielded_black_dragon_tanned_hide", "fg": 72, "rotates": false }, - { "id": "black_dragon_tanning_hide", "fg": 73, "rotates": false }, - { "id": "overlay_wielded_black_dragon_tanning_hide", "fg": 73, "rotates": false }, - { "id": "boots_black_dragon_hide", "fg": 74, "rotates": false }, - { "id": "overlay_wielded_boots_black_dragon_hide", "fg": 74, "rotates": false }, - { "id": "overlay_worn_boots_black_dragon_hide", "fg": 75, "rotates": false }, - { "id": "boots_black_dragon_scale", "fg": 76, "rotates": false }, - { "id": "overlay_wielded_boots_black_dragon_scale", "fg": 76, "rotates": false }, - { "id": "overlay_worn_boots_black_dragon_scale", "fg": 77, "rotates": false }, - { "id": "boots_xlblack_dragon_hide", "fg": 78, "rotates": false }, - { "id": "overlay_wielded_boots_xlblack_dragon_hide", "fg": 78, "rotates": false }, - { "id": "boots_xlblack_dragon_scale", "fg": 79, "rotates": false }, - { "id": "overlay_wielded_boots_xlblack_dragon_scale", "fg": 79, "rotates": false }, - { "id": "dragon_black_scale", "fg": 80, "rotates": false }, - { "id": "overlay_wielded_dragon_black_scale", "fg": 80, "rotates": false }, - { "id": "gauntlets_black_dragon_scale", "fg": 81, "rotates": false }, - { "id": "overlay_wielded_gauntlets_black_dragon_scale", "fg": 81, "rotates": false }, - { "id": "overlay_worn_gauntlets_black_dragon_scale", "fg": 82, "rotates": false }, - { "id": "gauntlets_xlblack_dragon_scale", "fg": 83, "rotates": false }, - { "id": "overlay_wielded_gauntlets_xlblack_dragon_scale", "fg": 83, "rotates": false }, - { "id": "gloves_black_dragon_hide", "fg": 84, "rotates": false }, - { "id": "overlay_wielded_gloves_black_dragon_hide", "fg": 84, "rotates": false }, - { "id": "overlay_worn_gloves_black_dragon_hide", "fg": 85, "rotates": false }, - { "id": "gloves_xlblack_dragon_hide", "fg": 86, "rotates": false }, - { "id": "overlay_wielded_gloves_xlblack_dragon_hide", "fg": 86, "rotates": false }, - { "id": "helmet_black_dragon_hide", "fg": 87, "rotates": false }, - { "id": "overlay_wielded_helmet_black_dragon_hide", "fg": 87, "rotates": false }, - { "id": "overlay_worn_helmet_black_dragon_hide", "fg": 88, "rotates": false }, - { "id": "helmet_black_dragon_scale", "fg": 89, "rotates": false }, - { "id": "overlay_wielded_helmet_black_dragon_scale", "fg": 89, "rotates": false }, - { "id": "overlay_worn_helmet_black_dragon_scale", "fg": 90, "rotates": false }, - { "id": "helmet_xlblack_dragon_hide", "fg": 91, "rotates": false }, - { "id": "overlay_wielded_helmet_xlblack_dragon_hide", "fg": 91, "rotates": false }, - { "id": "helmet_xlblack_dragon_scale", "fg": 92, "rotates": false }, - { "id": "overlay_wielded_helmet_xlblack_dragon_scale", "fg": 92, "rotates": false }, - { "id": "overlay_wielded_suit_black_dragon_hide", "fg": 93, "rotates": false }, - { "id": "suit_black_dragon_hide", "fg": 93, "rotates": false }, - { "id": "overlay_worn_suit_black_dragon_hide", "fg": 94, "rotates": false }, - { "id": "overlay_wielded_suit_black_dragon_scale", "fg": 95, "rotates": false }, - { "id": "suit_black_dragon_scale", "fg": 95, "rotates": false }, - { "id": "overlay_worn_suit_black_dragon_scale", "fg": 96, "rotates": false }, - { "id": "overlay_wielded_suit_xlblack_dragon_hide", "fg": 97, "rotates": false }, - { "id": "suit_xlblack_dragon_hide", "fg": 97, "rotates": false }, - { "id": "overlay_wielded_suit_xlblack_dragon_scale", "fg": 98, "rotates": false }, - { "id": "suit_xlblack_dragon_scale", "fg": 98, "rotates": false }, - { "id": "lair_map", "fg": 99, "rotates": false }, - { "id": "overlay_wielded_lair_map", "fg": 99, "rotates": false }, - { "id": "overlay_wielded_retreat_map", "fg": 100, "rotates": false }, - { "id": "retreat_map", "fg": 100, "rotates": false }, - { "id": "overlay_wielded_wizard_photo", "fg": 101, "rotates": false }, - { "id": "wizard_photo", "fg": 101, "rotates": false }, - { "id": "animist_doll_decayed_pouncer", "fg": 102, "rotates": false }, - { "id": "overlay_wielded_animist_doll_decayed_pouncer", "fg": 103, "rotates": false }, - { "id": "animist_doll_skeleton", "fg": 104, "rotates": false }, - { "id": "overlay_wielded_animist_doll_skeleton", "fg": 105, "rotates": false }, - { "id": "animist_doll_zombie", "fg": 106, "rotates": false }, - { "id": "overlay_wielded_animist_doll_zombie", "fg": 107, "rotates": false }, - { "id": "cats_grace_potion", "fg": 108 }, - { "id": "overlay_wielded_cats_grace_potion", "fg": 108 }, - { "id": "eagles_sight_potion", "fg": 109 }, - { "id": "overlay_wielded_eagles_sight_potion", "fg": 109 }, - { "id": "foxs_cunning_potion", "fg": 110 }, - { "id": "overlay_wielded_foxs_cunning_potion", "fg": 110 }, - { "id": "mana_potion", "fg": 111, "rotates": false }, - { "id": "overlay_wielded_mana_potion", "fg": 111, "rotates": false }, - { "id": "mana_potion_greater", "fg": 112, "rotates": false }, - { "id": "overlay_wielded_mana_potion_greater", "fg": 112, "rotates": false }, - { "id": "mana_potion_lesser", "fg": 113, "rotates": false }, - { "id": "overlay_wielded_mana_potion_lesser", "fg": 113, "rotates": false }, - { "id": "ogres_strength_potion", "fg": 114 }, - { "id": "overlay_wielded_ogres_strength_potion", "fg": 114 }, - { "id": "overlay_wielded_twisted_restore_potion", "fg": 115, "rotates": false }, - { "id": "twisted_restore_potion", "fg": 115, "rotates": false }, - { "id": "overlay_wielded_twisted_restore_potion_improved", "fg": 116, "rotates": false }, - { "id": "twisted_restore_potion_improved", "fg": 116, "rotates": false }, - { "id": "overlay_wielded_rune_alchemist", "fg": 117 }, - { "id": "rune_alchemist", "fg": 117 }, - { "id": "overlay_wielded_rune_animist", "fg": 118 }, - { "id": "rune_animist", "fg": 118 }, - { "id": "overlay_wielded_rune_biomancer", "fg": 119 }, - { "id": "rune_biomancer", "fg": 119 }, - { "id": "overlay_wielded_rune_druid", "fg": 120 }, - { "id": "rune_druid", "fg": 120 }, - { "id": "overlay_wielded_rune_earthshaper", "fg": 121 }, - { "id": "rune_earthshaper", "fg": 121 }, - { "id": "overlay_wielded_rune_kelvinist", "fg": 122 }, - { "id": "rune_kelvinist", "fg": 122 }, - { "id": "overlay_wielded_rune_magus", "fg": 123 }, - { "id": "rune_magus", "fg": 123 }, - { "id": "overlay_wielded_rune_stormshaper", "fg": 124 }, - { "id": "rune_stormshaper", "fg": 124 }, - { "id": "overlay_wielded_rune_technomancer", "fg": 125 }, - { "id": "rune_technomancer", "fg": 125 }, - { "id": "egg_owlbear", "fg": 126 }, - { "id": "overlay_wielded_egg_owlbear", "fg": 126 }, - { "id": "egg_owlbear_rock", "fg": 127 }, - { "id": "overlay_wielded_egg_owlbear_rock", "fg": 127 }, - { "id": "hairball", "fg": 128, "rotates": false }, - { "id": "overlay_wielded_hairball", "fg": 128, "rotates": false }, - { "id": "impure_meat", "fg": 129, "rotates": false }, - { "id": "overlay_wielded_impure_meat", "fg": 129, "rotates": false }, - { "id": "meat_dragon", "fg": 130, "rotates": false }, - { "id": "overlay_wielded_meat_dragon", "fg": 130, "rotates": false }, - { "id": "overlay_wielded_purified_meat", "fg": 131, "rotates": false }, - { "id": "purified_meat", "fg": 131, "rotates": false }, - { "id": "overlay_wielded_scream_mush", "fg": 132, "rotates": false }, - { "id": "scream_mush", "fg": 132, "rotates": false }, - { "id": "broken_claygolem", "fg": 133, "rotates": false }, - { "id": "overlay_wielded_broken_claygolem", "fg": 133, "rotates": false }, - { "id": "broken_irongolem", "fg": 134, "rotates": false }, - { "id": "overlay_wielded_broken_irongolem", "fg": 134, "rotates": false }, - { "id": "broken_plasticgolem", "fg": 135, "rotates": false }, - { "id": "overlay_wielded_broken_plasticgolem", "fg": 135, "rotates": false }, - { "id": "broken_stonegolem", "fg": 136, "rotates": false }, - { "id": "overlay_wielded_broken_stonegolem", "fg": 136, "rotates": false }, - { "id": "bag_holding_1", "fg": 137, "rotates": false }, - { "id": "overlay_wielded_bag_holding_1", "fg": 138, "rotates": false }, - { "id": "overlay_female_worn_bag_holding_1", "fg": 139, "rotates": false }, - { "id": "overlay_male_worn_bag_holding_1", "fg": 140, "rotates": false }, - { "id": "bag_holding_2", "fg": 141, "rotates": false }, - { "id": "overlay_wielded_bag_holding_2", "fg": 142, "rotates": false }, - { "id": "overlay_female_worn_bag_holding_2", "fg": 143, "rotates": false }, - { "id": "overlay_male_worn_bag_holding_2", "fg": 144, "rotates": false }, - { "id": "bag_holding_3", "fg": 145, "rotates": false }, - { "id": "overlay_wielded_bag_holding_3", "fg": 146, "rotates": false }, - { "id": "overlay_female_worn_bag_holding_3", "fg": 147, "rotates": false }, - { "id": "overlay_male_worn_bag_holding_3", "fg": 148, "rotates": false }, - { "id": "belt_haste", "fg": 149, "rotates": false }, - { "id": "overlay_wielded_belt_haste", "fg": 149, "rotates": false }, - { "id": "overlay_worn_belt_haste", "fg": 150, "rotates": false }, - { "id": "belt_str", "fg": 151, "rotates": false }, - { "id": "overlay_wielded_belt_str", "fg": 151, "rotates": false }, - { "id": "overlay_worn_belt_str", "fg": 152, "rotates": false }, - { "id": "debug_fireball_hammer", "fg": 153, "rotates": false }, - { "id": "overlay_wielded_debug_fireball_hammer", "fg": 154, "rotates": false }, - { "id": "magi_staff_minor", "fg": 155, "rotates": false }, - { "id": "overlay_wielded_magi_staff_minor", "fg": 156, "rotates": false }, - { "id": "overlay_wielded_wizard_hat", "fg": 157, "rotates": false }, - { "id": "wizard_hat", "fg": 157, "rotates": false }, - { "id": "mbelt_haste", "fg": 158, "rotates": false }, - { "id": "overlay_wielded_mbelt_haste", "fg": 158, "rotates": false }, - { "id": "overlay_worn_mbelt_haste", "fg": 159, "rotates": false }, - { "id": "mbelt_iron_whip", "fg": 160, "rotates": false }, - { "id": "overlay_wielded_mbelt_iron_whip", "fg": 160, "rotates": false }, - { "id": "overlay_worn_mbelt_iron_whip", "fg": 161, "rotates": false }, - { "id": "mbelt_pockets_greater", "fg": 162, "rotates": false }, - { "id": "overlay_wielded_mbelt_pockets_greater", "fg": 162, "rotates": false }, - { "id": "overlay_worn_mbelt_pockets_greater", "fg": 163, "rotates": false }, - { "id": "mbelt_pockets_lesser", "fg": 164, "rotates": false }, - { "id": "overlay_wielded_mbelt_pockets_lesser", "fg": 164, "rotates": false }, - { "id": "overlay_worn_mbelt_pockets_lesser", "fg": 165, "rotates": false }, - { "id": "mbelt_technomancer_toolbelt", "fg": 166, "rotates": false }, - { "id": "overlay_wielded_mbelt_technomancer_toolbelt", "fg": 166, "rotates": false }, - { "id": "overlay_worn_mbelt_technomancer_toolbelt", "fg": 167, "rotates": false }, - { "id": "mbelt_thor", "fg": 168, "rotates": false }, - { "id": "overlay_wielded_mbelt_thor", "fg": 168, "rotates": false }, - { "id": "overlay_worn_mbelt_thor", "fg": 169, "rotates": false }, - { "id": "mbelt_weaponry", "fg": 170, "rotates": false }, - { "id": "overlay_wielded_mbelt_weaponry", "fg": 170, "rotates": false }, - { "id": "overlay_worn_mbelt_weaponry", "fg": 171, "rotates": false }, - { "id": "mwhip_iron", "fg": 172, "rotates": false }, - { "id": "overlay_wielded_mwhip_iron", "fg": 173, "rotates": false }, - { "id": "mboots_escape", "fg": 174, "rotates": false }, - { "id": "overlay_wielded_mboots_escape", "fg": 174, "rotates": false }, - { "id": "overlay_worn_mboots_escape", "fg": 175, "rotates": false }, - { "id": "mboots_grounding", "fg": 176, "rotates": false }, - { "id": "overlay_wielded_mboots_grounding", "fg": 176, "rotates": false }, - { "id": "overlay_worn_mboots_grounding", "fg": 177, "rotates": false }, - { "id": "mboots_haste", "fg": 178, "rotates": false }, - { "id": "overlay_wielded_mboots_haste", "fg": 178, "rotates": false }, - { "id": "overlay_worn_mboots_haste", "fg": 179, "rotates": false }, - { "id": "mboots_sevenleague", "fg": 180, "rotates": false }, - { "id": "overlay_wielded_mboots_sevenleague", "fg": 180, "rotates": false }, - { "id": "overlay_worn_mboots_sevenleague", "fg": 181, "rotates": false }, - { "id": "mbracer_defense_greater", "fg": 182, "rotates": false }, - { "id": "overlay_wielded_mbracer_defense_greater", "fg": 182, "rotates": false }, - { "id": "overlay_worn_mbracer_defense_greater", "fg": 183, "rotates": false }, - { "id": "mbracer_defense_lesser", "fg": 184, "rotates": false }, - { "id": "overlay_wielded_mbracer_defense_lesser", "fg": 184, "rotates": false }, - { "id": "overlay_worn_mbracer_defense_lesser", "fg": 185, "rotates": false }, - { "id": "mbracer_lightning_greater", "fg": 186, "rotates": false }, - { "id": "overlay_wielded_mbracer_lightning_greater", "fg": 186, "rotates": false }, - { "id": "overlay_worn_mbracer_lightning_greater", "fg": 187, "rotates": false }, - { "id": "mbracer_lightning_lesser", "fg": 188, "rotates": false }, - { "id": "overlay_wielded_mbracer_lightning_lesser", "fg": 188, "rotates": false }, - { "id": "overlay_worn_mbracer_lightning_lesser", "fg": 189, "rotates": false }, - { "id": "mbracer_steel_pair", "fg": 190, "rotates": false }, - { "id": "overlay_wielded_mbracer_steel_pair", "fg": 190, "rotates": false }, - { "id": "overlay_worn_mbracer_steel_pair", "fg": 191, "rotates": false }, - { "id": "mbracer_steel_single", "fg": 192, "rotates": false }, - { "id": "overlay_wielded_mbracer_steel_single", "fg": 192, "rotates": false }, - { "id": "overlay_worn_mbracer_steel_single", "fg": 193, "rotates": false }, - { "id": "magic_suppressor", "fg": 194, "rotates": false }, - { "id": "overlay_wielded_magic_suppressor", "fg": 194, "rotates": false }, - { "id": "mana_dot_sight", "fg": 195, "rotates": false }, - { "id": "overlay_wielded_mana_dot_sight", "fg": 195, "rotates": false }, - { "id": "mana_laser_rail", "fg": 196, "rotates": false }, - { "id": "overlay_wielded_mana_laser_rail", "fg": 196, "rotates": false }, - { "id": "mana_laser_under", "fg": 197, "rotates": false }, - { "id": "overlay_wielded_mana_laser_under", "fg": 197, "rotates": false }, - { "id": "mmask_disappearance", "fg": 198, "rotates": false }, - { "id": "overlay_wielded_mmask_disappearance", "fg": 198, "rotates": false }, - { "id": "overlay_female_worn_mmask_disappearance", "fg": 199, "rotates": false }, - { "id": "overlay_male_worn_mmask_disappearance", "fg": 200, "rotates": false }, - { "id": "mmask_vision", "fg": 201, "rotates": false }, - { "id": "overlay_wielded_mmask_vision", "fg": 201, "rotates": false }, - { "id": "overlay_female_worn_mmask_vision", "fg": 202, "rotates": false }, - { "id": "overlay_male_worn_mmask_vision", "fg": 203, "rotates": false }, - { "id": "rune_animist_weapon", "fg": 204, "rotates": false }, - { "id": "overlay_wielded_rune_animist_weapon", "fg": 205, "rotates": false }, - { "id": "rune_biomancer_weapon", "fg": 206, "rotates": false }, - { "id": "overlay_wielded_rune_biomancer_weapon", "fg": 207, "rotates": false }, - { "id": "rune_kelvinist_weapon", "fg": 208, "rotates": false }, - { "id": "overlay_wielded_rune_kelvinist_weapon", "fg": 209, "rotates": false }, - { "id": "rune_magus_weapon", "fg": 210, "rotates": false }, - { "id": "overlay_wielded_rune_magus_weapon", "fg": 211, "rotates": false }, - { "id": "rune_stormshaper_weapon", "fg": 212, "rotates": false }, - { "id": "overlay_wielded_rune_stormshaper_weapon", "fg": 213, "rotates": false }, - { "id": "rune_technomancer_weapon", "fg": 214, "rotates": false }, - { "id": "overlay_wielded_rune_technomancer_weapon", "fg": 215, "rotates": false }, - { "id": "springstaff-extended", "fg": 216, "rotates": false }, - { "id": "overlay_wielded_springstaff-extended", "fg": 217, "rotates": false }, - { "id": "springstaff-retracted", "fg": 218, "rotates": false }, - { "id": "overlay_wielded_springstaff-retracted", "fg": 219, "rotates": false }, - { "id": "heat_cube", "fg": 220, "rotates": false }, - { "id": "overlay_wielded_heat_cube", "fg": 220, "rotates": false }, - { "id": "heat_cube_torch_on", "fg": 221, "rotates": false }, - { "id": "overlay_wielded_heat_cube_torch_on", "fg": 221, "rotates": false }, - { "id": "mflask_hip_whiskey", "fg": 222, "rotates": false }, - { "id": "overlay_wielded_mflask_hip_whiskey", "fg": 223, "rotates": false }, - { "id": "overlay_worn_mflask_hip_whiskey", "fg": 224, "rotates": false }, - { "id": "mkey_opening", "fg": 225, "rotates": false }, - { "id": "overlay_wielded_mkey_opening", "fg": 225, "rotates": false }, - { "id": "mspider_box", "fg": 226, "rotates": false }, - { "id": "overlay_wielded_mspider_box", "fg": 226, "rotates": false }, - { "id": "mtailors_kit", "fg": 227, "rotates": false }, - { "id": "overlay_wielded_mtailors_kit", "fg": 227, "rotates": false }, - { "id": "mtorch_everburning", "fg": 228, "rotates": false }, - { "id": "overlay_wielded_mtorch_everburning", "fg": 229, "rotates": false }, - { "id": "mtorch_everburning_lit", "fg": 230, "rotates": false }, - { "id": "overlay_wielded_mtorch_everburning_lit", "fg": 231, "rotates": false }, - { "id": "gunblade", "fg": 232, "rotates": false }, - { "id": "overlay_wielded_gunblade", "fg": 233, "rotates": false }, - { "id": "m47a1", "fg": 234, "rotates": false }, - { "id": "overlay_wielded_m47a1", "fg": 235, "rotates": false }, - { "id": "rune_druid_weapon", "fg": 236, "rotates": false }, - { "id": "overlay_wielded_rune_druid_weapon", "fg": 237, "rotates": false }, - { "id": "mring_blades_lesser", "fg": 238, "rotates": false }, - { "id": "overlay_wielded_mring_blades_lesser", "fg": 238, "rotates": false }, - { "id": "mring_copper", "fg": 239, "rotates": false }, - { "id": "overlay_wielded_mring_copper", "fg": 239, "rotates": false }, - { "id": "mring_dexterity_1", "fg": 240, "rotates": false }, - { "id": "overlay_wielded_mring_dexterity_1", "fg": 240, "rotates": false }, - { "id": "mring_dexterity_2", "fg": 241, "rotates": false }, - { "id": "overlay_wielded_mring_dexterity_2", "fg": 241, "rotates": false }, - { "id": "mring_dexterity_3", "fg": 242, "rotates": false }, - { "id": "overlay_wielded_mring_dexterity_3", "fg": 242, "rotates": false }, - { "id": "mring_dexterity_4", "fg": 243, "rotates": false }, - { "id": "overlay_wielded_mring_dexterity_4", "fg": 243, "rotates": false }, - { "id": "mring_dodge_bonus_1", "fg": 244, "rotates": false }, - { "id": "overlay_wielded_mring_dodge_bonus_1", "fg": 244, "rotates": false }, - { "id": "mring_dodge_bonus_2", "fg": 245, "rotates": false }, - { "id": "overlay_wielded_mring_dodge_bonus_2", "fg": 245, "rotates": false }, - { "id": "mring_gold", "fg": 246, "rotates": false }, - { "id": "overlay_wielded_mring_gold", "fg": 246, "rotates": false }, - { "id": "mring_intelligence_1", "fg": 247, "rotates": false }, - { "id": "overlay_wielded_mring_intelligence_1", "fg": 247, "rotates": false }, - { "id": "mring_intelligence_2", "fg": 248, "rotates": false }, - { "id": "overlay_wielded_mring_intelligence_2", "fg": 248, "rotates": false }, - { "id": "mring_intelligence_3", "fg": 249, "rotates": false }, - { "id": "overlay_wielded_mring_intelligence_3", "fg": 249, "rotates": false }, - { "id": "mring_intelligence_4", "fg": 250, "rotates": false }, - { "id": "overlay_wielded_mring_intelligence_4", "fg": 250, "rotates": false }, - { "id": "mring_perception_1", "fg": 251, "rotates": false }, - { "id": "overlay_wielded_mring_perception_1", "fg": 251, "rotates": false }, - { "id": "mring_perception_2", "fg": 252, "rotates": false }, - { "id": "overlay_wielded_mring_perception_2", "fg": 252, "rotates": false }, - { "id": "mring_perception_3", "fg": 253, "rotates": false }, - { "id": "overlay_wielded_mring_perception_3", "fg": 253, "rotates": false }, - { "id": "mring_perception_4", "fg": 254, "rotates": false }, - { "id": "overlay_wielded_mring_perception_4", "fg": 254, "rotates": false }, - { "id": "mring_platinum", "fg": 255, "rotates": false }, - { "id": "overlay_wielded_mring_platinum", "fg": 255, "rotates": false }, - { "id": "mring_protection_2", "fg": 256, "rotates": false }, - { "id": "overlay_wielded_mring_protection_2", "fg": 256, "rotates": false }, - { "id": "mring_protection_4", "fg": 257, "rotates": false }, - { "id": "overlay_wielded_mring_protection_4", "fg": 257, "rotates": false }, - { "id": "mring_protection_6", "fg": 258, "rotates": false }, - { "id": "overlay_wielded_mring_protection_6", "fg": 258, "rotates": false }, - { "id": "mring_protection_8", "fg": 259, "rotates": false }, - { "id": "overlay_wielded_mring_protection_8", "fg": 259, "rotates": false }, - { "id": "mring_silver", "fg": 260, "rotates": false }, - { "id": "overlay_wielded_mring_silver", "fg": 260, "rotates": false }, - { "id": "mring_speed_10", "fg": 261, "rotates": false }, - { "id": "overlay_wielded_mring_speed_10", "fg": 261, "rotates": false }, - { "id": "mring_speed_3", "fg": 262, "rotates": false }, - { "id": "overlay_wielded_mring_speed_3", "fg": 262, "rotates": false }, - { "id": "mring_speed_5", "fg": 263, "rotates": false }, - { "id": "overlay_wielded_mring_speed_5", "fg": 263, "rotates": false }, - { "id": "mring_speed_7", "fg": 264, "rotates": false }, - { "id": "overlay_wielded_mring_speed_7", "fg": 264, "rotates": false }, - { "id": "mring_strength_1", "fg": 265, "rotates": false }, - { "id": "overlay_wielded_mring_strength_1", "fg": 265, "rotates": false }, - { "id": "mring_strength_2", "fg": 266, "rotates": false }, - { "id": "overlay_wielded_mring_strength_2", "fg": 266, "rotates": false }, - { "id": "mring_strength_3", "fg": 267, "rotates": false }, - { "id": "overlay_wielded_mring_strength_3", "fg": 267, "rotates": false }, - { "id": "mring_strength_4", "fg": 268, "rotates": false }, - { "id": "overlay_wielded_mring_strength_4", "fg": 268, "rotates": false }, - { "id": "mtoken_arming_sword", "fg": 269, "rotates": false }, - { "id": "overlay_wielded_mtoken_arming_sword", "fg": 269, "rotates": false }, - { "id": "mtoken_battleaxe", "fg": 270, "rotates": false }, - { "id": "overlay_wielded_mtoken_battleaxe", "fg": 270, "rotates": false }, - { "id": "mtoken_broadsword", "fg": 271, "rotates": false }, - { "id": "overlay_wielded_mtoken_broadsword", "fg": 271, "rotates": false }, - { "id": "mtoken_crowbar", "fg": 272, "rotates": false }, - { "id": "overlay_wielded_mtoken_crowbar", "fg": 272, "rotates": false }, - { "id": "mtoken_hammer", "fg": 273, "rotates": false }, - { "id": "overlay_wielded_mtoken_hammer", "fg": 273, "rotates": false }, - { "id": "mtoken_longsword", "fg": 274, "rotates": false }, - { "id": "overlay_wielded_mtoken_longsword", "fg": 274, "rotates": false }, - { "id": "mtoken_mace", "fg": 275, "rotates": false }, - { "id": "overlay_wielded_mtoken_mace", "fg": 275, "rotates": false }, - { "id": "mtoken_pike", "fg": 276, "rotates": false }, - { "id": "overlay_wielded_mtoken_pike", "fg": 276, "rotates": false }, - { "id": "mtoken_q_staff", "fg": 277, "rotates": false }, - { "id": "overlay_wielded_mtoken_q_staff", "fg": 277, "rotates": false }, - { "id": "mtoken_screwdriver_set", "fg": 278, "rotates": false }, - { "id": "overlay_wielded_mtoken_screwdriver_set", "fg": 278, "rotates": false }, - { "id": "mtoken_toolbox", "fg": 279, "rotates": false }, - { "id": "overlay_wielded_mtoken_toolbox", "fg": 279, "rotates": false }, - { "id": "cestus_plus_one", "fg": 280, "bg": 5 }, - { "id": "overlay_wielded_cestus_plus_one", "fg": 280 }, - { "id": "cestus_plus_two", "fg": 281, "bg": 5 }, - { "id": "overlay_wielded_cestus_plus_two", "fg": 281 }, - { "id": "flaming_fist", "fg": 282, "rotates": false }, - { "id": "overlay_wielded_flaming_fist", "fg": 283, "rotates": false }, - { "id": "flaming_fist_plus_one", "fg": 284, "bg": 282 }, - { "id": "overlay_wielded_flaming_fist_plus_one", "fg": 283, "rotates": false }, - { "id": "flaming_fist_plus_two", "fg": 285, "bg": 282 }, - { "id": "overlay_wielded_flaming_fist_plus_two", "fg": 285 }, - { "id": "gauntlet_pounding", "fg": 286, "rotates": false }, - { "id": "overlay_wielded_gauntlet_pounding", "fg": 287, "rotates": false }, - { "id": "rune_earthshaper_weapon", "fg": 288, "rotates": false }, - { "id": "overlay_wielded_rune_earthshaper_weapon", "fg": 289, "rotates": false }, - { "id": "shotcestus", "fg": 290, "rotates": false }, - { "id": "overlay_wielded_shotcestus", "fg": 291, "rotates": false }, - { "id": "disp_wand", "fg": 292, "rotates": false }, - { "id": "overlay_wielded_disp_wand", "fg": 293, "rotates": false }, - { "id": "spell_wand", "fg": 294, "rotates": false }, - { "id": "overlay_wielded_spell_wand", "fg": 295, "rotates": false }, - { "id": "wand_cone_cold_greater", "fg": 296, "rotates": false }, - { "id": "overlay_wielded_wand_cone_cold_greater", "fg": 297, "rotates": false }, - { "id": "wand_cone_cold_lesser", "fg": 298, "rotates": false }, - { "id": "overlay_wielded_wand_cone_cold_lesser", "fg": 299, "rotates": false }, - { "id": "wand_cone_cold_minor", "fg": 300, "rotates": false }, - { "id": "overlay_wielded_wand_cone_cold_minor", "fg": 301, "rotates": false }, - { "id": "overlay_wielded_wand_disp_cone_cold_greater", "fg": 302, "rotates": false }, - { "id": "wand_disp_cone_cold_greater", "fg": 302, "rotates": false }, - { "id": "overlay_wielded_wand_disp_cone_cold_lesser", "fg": 303, "rotates": false }, - { "id": "wand_disp_cone_cold_lesser", "fg": 303, "rotates": false }, - { "id": "overlay_wielded_wand_disp_cone_cold_minor", "fg": 304, "rotates": false }, - { "id": "wand_disp_cone_cold_minor", "fg": 304, "rotates": false }, - { "id": "overlay_wielded_wand_disp_fireball_greater", "fg": 305, "rotates": false }, - { "id": "wand_disp_fireball_greater", "fg": 305, "rotates": false }, - { "id": "overlay_wielded_wand_disp_fireball_lesser", "fg": 306, "rotates": false }, - { "id": "wand_disp_fireball_lesser", "fg": 306, "rotates": false }, - { "id": "overlay_wielded_wand_disp_fireball_minor", "fg": 307, "rotates": false }, - { "id": "wand_disp_fireball_minor", "fg": 307, "rotates": false }, - { "id": "wand_disp_hoaryblast_greater", "fg": 308, "rotates": false }, - { "id": "overlay_wielded_wand_disp_hoaryblast_greater", "fg": 309, "rotates": false }, - { "id": "wand_disp_hoaryblast_lesser", "fg": 310, "rotates": false }, - { "id": "overlay_wielded_wand_disp_hoaryblast_lesser", "fg": 311, "rotates": false }, - { "id": "wand_disp_hoaryblast_minor", "fg": 312, "rotates": false }, - { "id": "overlay_wielded_wand_disp_hoaryblast_minor", "fg": 313, "rotates": false }, - { "id": "wand_disp_magic_missile_greater", "fg": 314, "rotates": false }, - { "id": "overlay_wielded_wand_disp_magic_missile_greater", "fg": 315, "rotates": false }, - { "id": "wand_disp_magic_missile_lesser", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_wand_disp_magic_missile_lesser", "fg": 317, "rotates": false }, - { "id": "wand_disp_magic_missile_minor", "fg": 318, "rotates": false }, - { "id": "overlay_wielded_wand_disp_magic_missile_minor", "fg": 319, "rotates": false }, - { "id": "wand_disp_mana_beam_greater", "fg": 320, "rotates": false }, - { "id": "overlay_wielded_wand_disp_mana_beam_greater", "fg": 321, "rotates": false }, - { "id": "wand_disp_mana_beam_lesser", "fg": 322, "rotates": false }, - { "id": "overlay_wielded_wand_disp_mana_beam_lesser", "fg": 323, "rotates": false }, - { "id": "wand_disp_mana_beam_minor", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_wand_disp_mana_beam_minor", "fg": 325, "rotates": false }, - { "id": "wand_disp_point_flare_greater", "fg": 326, "rotates": false }, - { "id": "overlay_wielded_wand_disp_point_flare_greater", "fg": 327, "rotates": false }, - { "id": "wand_disp_point_flare_lesser", "fg": 328, "rotates": false }, - { "id": "overlay_wielded_wand_disp_point_flare_lesser", "fg": 329, "rotates": false }, - { "id": "wand_disp_point_flare_minor", "fg": 330, "rotates": false }, - { "id": "overlay_wielded_wand_disp_point_flare_minor", "fg": 331, "rotates": false }, - { "id": "wand_fireball_greater", "fg": 332, "rotates": false }, - { "id": "overlay_wielded_wand_fireball_greater", "fg": 333, "rotates": false }, - { "id": "wand_fireball_lesser", "fg": 334, "rotates": false }, - { "id": "overlay_wielded_wand_fireball_lesser", "fg": 335, "rotates": false }, - { "id": "wand_fireball_minor", "fg": 336, "rotates": false }, - { "id": "overlay_wielded_wand_fireball_minor", "fg": 337, "rotates": false }, - { "id": "wand_hoaryblast_greater", "fg": 338, "rotates": false }, - { "id": "overlay_wielded_wand_hoaryblast_greater", "fg": 339, "rotates": false }, - { "id": "wand_hoaryblast_lesser", "fg": 340, "rotates": false }, - { "id": "overlay_wielded_wand_hoaryblast_lesser", "fg": 341, "rotates": false }, - { "id": "wand_hoaryblast_minor", "fg": 342, "rotates": false }, - { "id": "overlay_wielded_wand_hoaryblast_minor", "fg": 343, "rotates": false }, - { "id": "wand_magic_missile_greater", "fg": 344, "rotates": false }, - { "id": "overlay_wielded_wand_magic_missile_greater", "fg": 345, "rotates": false }, - { "id": "wand_magic_missile_lesser", "fg": 346, "rotates": false }, - { "id": "overlay_wielded_wand_magic_missile_lesser", "fg": 347, "rotates": false }, - { "id": "wand_magic_missile_minor", "fg": 348, "rotates": false }, - { "id": "overlay_wielded_wand_magic_missile_minor", "fg": 349, "rotates": false }, - { "id": "wand_mana_beam_greater", "fg": 350, "rotates": false }, - { "id": "overlay_wielded_wand_mana_beam_greater", "fg": 351, "rotates": false }, - { "id": "wand_mana_beam_lesser", "fg": 352, "rotates": false }, - { "id": "overlay_wielded_wand_mana_beam_lesser", "fg": 353, "rotates": false }, - { "id": "wand_mana_beam_minor", "fg": 354, "rotates": false }, - { "id": "overlay_wielded_wand_mana_beam_minor", "fg": 355, "rotates": false }, - { "id": "wand_point_flare_greater", "fg": 356, "rotates": false }, - { "id": "overlay_wielded_wand_point_flare_greater", "fg": 357, "rotates": false }, - { "id": "wand_point_flare_lesser", "fg": 358, "rotates": false }, - { "id": "overlay_wielded_wand_point_flare_lesser", "fg": 359, "rotates": false }, - { "id": "wand_point_flare_minor", "fg": 360, "rotates": false }, - { "id": "overlay_wielded_wand_point_flare_minor", "fg": 361, "rotates": false }, - { "id": "acid_res_aura", "fg": 591, "rotates": false }, - { "id": "overlay_wielded_acid_res_aura", "fg": 591, "rotates": false }, - { "id": "acid_res_aura_greater", "fg": 591, "rotates": false }, - { "id": "overlay_wielded_acid_res_aura_greater", "fg": 591, "rotates": false }, - { "id": "armor_stonefist", "fg": 362, "rotates": false }, - { "id": "overlay_wielded_armor_stonefist", "fg": 362, "rotates": false }, - { "id": "overlay_worn_armor_stonefist", "fg": 363, "rotates": false }, - { "id": "aura_stoneskin", "fg": 364, "rotates": false }, - { "id": "overlay_wielded_aura_stoneskin", "fg": 364, "rotates": false }, - { "id": "overlay_female_worn_aura_stoneskin", "fg": 365, "rotates": false }, - { "id": "overlay_male_worn_aura_stoneskin", "fg": 366, "rotates": false }, - { "id": "bonespear", "fg": 367, "rotates": true }, - { "id": "overlay_wielded_bonespear", "fg": 368, "rotates": true }, - { "id": "dragon_shell_black", "fg": 369, "rotates": false }, - { "id": "overlay_wielded_dragon_shell_black", "fg": 369, "rotates": false }, - { - "id": "overlay_worn_dragon_shell_black", - "fg": [ - { "weight": 30, "sprite": 370 }, - { "weight": 30, "sprite": 371 }, - { "weight": 30, "sprite": 372 }, - { "weight": 30, "sprite": 373 } - ], - "animated": true, - "rotates": false - }, - { "id": "druid_dust", "fg": 374, "rotates": false }, - { "id": "overlay_wielded_druid_dust", "fg": 374, "rotates": false }, - { "id": "druid_recurve", "fg": 375, "rotates": true }, - { "id": "overlay_wielded_druid_recurve", "fg": 376, "rotates": true }, - { "id": "druid_seed", "fg": 377, "rotates": false }, - { "id": "overlay_wielded_druid_seed", "fg": 377, "rotates": false }, - { "id": "finger_firelighter", "fg": 378 }, - { "id": "overlay_wielded_finger_firelighter", "fg": 379 }, - { "id": "fleshpouch", "fg": 380, "rotates": true }, - { "id": "overlay_wielded_fleshpouch", "fg": 380, "rotates": true }, - { "id": "overlay_worn_fleshpouch", "fg": 381, "rotates": true }, - { "id": "ice_gliders", "fg": 382, "rotates": false }, - { "id": "overlay_wielded_ice_gliders", "fg": 382, "rotates": false }, - { "id": "overlay_worn_ice_gliders", "fg": 383, "rotates": false }, - { "id": "magic_lamp", "fg": 384, "rotates": false }, - { "id": "magic_light", "fg": 385, "rotates": false }, - { "id": "obfuscating_aura", "fg": 386, "rotates": false }, - { "id": "overlay_wielded_obfuscating_aura", "fg": 386, "rotates": false }, - { "id": "overlay_wielded_shield_ice", "fg": 387, "rotates": false }, - { "id": "shield_ice", "fg": 387, "rotates": false }, - { "id": "overlay_worn_shield_ice", "fg": 388, "rotates": false }, - { "id": "stonefist", "fg": 389, "rotates": false }, - { "id": "overlay_wielded_stonefist", "fg": 390, "rotates": false }, - { "id": "stormglove", "fg": 391, "rotates": false }, - { "id": "overlay_wielded_stormglove", "fg": 392, "rotates": false }, - { "id": "stormhammer", "fg": 393, "rotates": false }, - { "id": "overlay_wielded_stormhammer", "fg": 394, "rotates": false }, - { "id": "tentacle_whip", "fg": 395, "rotates": true }, - { "id": "overlay_wielded_tentacle_whip", "fg": 396, "rotates": true }, - { "id": "crystallized_mana", "fg": 397, "rotates": false }, - { "id": "overlay_wielded_crystallized_mana", "fg": 397, "rotates": false }, - { "id": "overlay_wielded_small_mana_crystal", "fg": 398, "rotates": false }, - { "id": "small_mana_crystal", "fg": 398, "rotates": false }, - { "id": "gram", "fg": 399, "rotates": false }, - { "id": "overlay_wielded_gram", "fg": 400, "rotates": false }, - { "id": "gungnir", "fg": 401, "rotates": false }, - { "id": "laevateinn", "fg": 402, "rotates": false }, - { "id": "overlay_wielded_laevateinn", "fg": 403, "rotates": false }, - { "id": "mjolnir", "fg": 404, "bg": 3, "rotates": false }, - { "id": "overlay_wielded_mjolnir", "fg": 405, "rotates": false }, - { "id": "mithril_ingot", "fg": 406, "rotates": false }, - { "id": "overlay_wielded_mithril_ingot", "fg": 406, "rotates": false }, - { "id": "mithril_lump", "fg": 407, "rotates": false }, - { "id": "overlay_wielded_mithril_lump", "fg": 407, "rotates": false }, - { "id": "orichalcum_ingot", "fg": 408, "rotates": false }, - { "id": "overlay_wielded_orichalcum_ingot", "fg": 408, "rotates": false }, - { "id": "orichalcum_lump", "fg": 409, "rotates": false }, - { "id": "overlay_wielded_orichalcum_lump", "fg": 409, "rotates": false }, - { "id": "orichalcum_sliver", "fg": 410, "rotates": false }, - { "id": "overlay_wielded_orichalcum_sliver", "fg": 410, "rotates": false }, - { "id": "iv_black_dragon", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_iv_black_dragon", "fg": 412, "rotates": false }, - { "id": "manatouched_serum", "fg": 411, "rotates": false }, - { "id": "overlay_wielded_manatouched_serum", "fg": 411, "rotates": false }, - { "id": "mutagen_black_dragon", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_mutagen_black_dragon", "fg": 412, "rotates": false }, - { "id": "wand_fireball", "fg": 413, "rotates": false }, - { "id": "overlay_wielded_wand_fireball", "fg": 414, "rotates": false }, - { "id": "wand_magic_missile", "fg": 415, "rotates": false }, - { "id": "overlay_wielded_wand_magic_missile", "fg": 416, "rotates": false }, - { "id": "alchemy_basic", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_alchemy_basic", "fg": 417, "rotates": false }, - { "id": "black_dragons", "fg": 418, "rotates": false }, - { "id": "overlay_wielded_black_dragons", "fg": 418, "rotates": false }, - { "id": "black_dragons_historical", "fg": 419, "rotates": false }, - { "id": "overlay_wielded_black_dragons_historical", "fg": 419, "rotates": false }, - { "id": "book_mythological", "fg": 420, "rotates": false }, - { "id": "overlay_wielded_book_mythological", "fg": 420, "rotates": false }, - { "id": "cooking_poison", "fg": 421, "rotates": false }, - { "id": "overlay_wielded_cooking_poison", "fg": 421, "rotates": false }, - { "id": "enchantment_basic", "fg": 422, "rotates": false }, - { "id": "overlay_wielded_enchantment_basic", "fg": 422, "rotates": false }, - { "id": "magic_armormaking", "fg": 423, "rotates": false }, - { "id": "overlay_wielded_magic_armormaking", "fg": 423, "rotates": false }, - { "id": "metal_legends", "fg": 424, "rotates": false }, - { "id": "overlay_wielded_metal_legends", "fg": 424, "rotates": false }, - { "id": "necro_basic", "fg": 425, "rotates": false }, - { "id": "overlay_wielded_necro_basic", "fg": 425, "rotates": false }, - { "id": "overlay_wielded_techno_basic", "fg": 426, "rotates": false }, - { "id": "techno_basic", "fg": 426, "rotates": false }, - { "id": "biomancer_spellbook", "fg": 427, "rotates": true }, - { "id": "overlay_wielded_biomancer_spellbook", "fg": 427, "rotates": true }, - { "id": "DEBUG_spellbook", "fg": 428, "rotates": false }, - { "id": "overlay_wielded_DEBUG_spellbook", "fg": 428, "rotates": false }, - { "id": "druid_spellbook", "fg": 429, "rotates": true }, - { "id": "overlay_wielded_druid_spellbook", "fg": 429, "rotates": true }, - { "id": "eshaper_spellbook", "fg": 430 }, - { "id": "overlay_wielded_eshaper_spellbook", "fg": 430 }, - { "id": "generic_spellbook", "fg": 431, "rotates": false }, - { "id": "overlay_wielded_generic_spellbook", "fg": 431, "rotates": false }, - { "id": "light_manipulation_spellbook", "fg": 432, "rotates": false }, - { "id": "overlay_wielded_light_manipulation_spellbook", "fg": 432, "rotates": false }, - { "id": "magus_spellbook", "fg": 433 }, - { "id": "overlay_wielded_magus_spellbook", "fg": 433 }, - { "id": "magus_spellbook_move", "fg": 434 }, - { "id": "overlay_wielded_magus_spellbook_move", "fg": 434 }, - { "id": "novice_stormshaper_book", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_novice_stormshaper_book", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_priest_advanced", "fg": 436, "rotates": false }, - { "id": "priest_advanced", "fg": 436, "rotates": false }, - { "id": "overlay_wielded_priest_beginner", "fg": 437, "rotates": false }, - { "id": "priest_beginner", "fg": 437, "rotates": false }, - { "id": "overlay_wielded_pyro", "fg": 438, "rotates": false }, - { "id": "pyro", "fg": 438, "rotates": false }, - { "id": "overlay_wielded_recovery_spellbook", "fg": 439, "rotates": false }, - { "id": "recovery_spellbook", "fg": 439, "rotates": false }, - { "id": "overlay_wielded_stat_up_spellbook", "fg": 440 }, - { "id": "stat_up_spellbook", "fg": 440 }, - { "id": "overlay_wielded_summon_scroll_smudged", "fg": 441 }, - { "id": "summon_scroll_smudged", "fg": 441 }, - { "id": "overlay_wielded_summon_undead_spellbook", "fg": 442 }, - { "id": "summon_undead_spellbook", "fg": 442 }, - { "id": "overlay_wielded_techno_em", "fg": 443 }, - { "id": "techno_em", "fg": 443 }, - { "id": "overlay_wielded_techno_fundamentals", "fg": 444 }, - { "id": "techno_fundamentals", "fg": 444 }, - { "id": "overlay_wielded_techno_idiots", "fg": 445 }, - { "id": "techno_idiots", "fg": 445 }, - { "id": "overlay_wielded_tome_of_storms", "fg": 446, "rotates": false }, - { "id": "tome_of_storms", "fg": 446, "rotates": false }, - { "id": "overlay_wielded_translocate_spellbook", "fg": 447 }, - { "id": "translocate_spellbook", "fg": 447 }, - { "id": "overlay_wielded_winter_grasp", "fg": 448, "rotates": true }, - { "id": "winter_grasp", "fg": 448, "rotates": true }, - { "id": "overlay_wielded_wizard_advanced", "fg": 449, "rotates": true }, - { "id": "wizard_advanced", "fg": 449, "rotates": true }, - { "id": "overlay_wielded_wizard_beginner", "fg": 450, "rotates": true }, - { "id": "wizard_beginner", "fg": 450, "rotates": true }, - { "id": "overlay_wielded_wizard_utility", "fg": 451, "rotates": true }, - { "id": "wizard_utility", "fg": 451, "rotates": true }, - { "id": "lightning_storm_scroll", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_lightning_storm_scroll", "fg": 452, "rotates": false }, - { - "id": [ - "overlay_wielded_spell_scroll", - "overlay_wielded_spell_scroll_baleful_polymorph", - "overlay_wielded_spell_scroll_boneclub", - "overlay_wielded_spell_scroll_caustic_aura", - "overlay_wielded_spell_scroll_feralform", - "overlay_wielded_spell_scroll_flamebreath", - "overlay_wielded_spell_scroll_flamesword", - "overlay_wielded_spell_scroll_impactsling", - "overlay_wielded_spell_scroll_improved_knock", - "overlay_wielded_spell_scroll_knifeshot", - "overlay_wielded_spell_scroll_knock", - "overlay_wielded_spell_scroll_overcharge_eyes", - "overlay_wielded_spell_scroll_repelling_arc", - "overlay_wielded_spell_scroll_summon_floating_disk", - "overlay_wielded_spell_scroll_tornskin" - ], - "fg": 452, - "rotates": false - }, - { - "id": [ - "spell_scroll", - "spell_scroll_baleful_polymorph", - "spell_scroll_boneclub", - "spell_scroll_caustic_aura", - "spell_scroll_feralform", - "spell_scroll_flamebreath", - "spell_scroll_flamesword", - "spell_scroll_impactsling", - "spell_scroll_improved_knock", - "spell_scroll_knifeshot", - "spell_scroll_knock", - "spell_scroll_overcharge_eyes", - "spell_scroll_repelling_arc", - "spell_scroll_summon_floating_disk", - "spell_scroll_tornskin" - ], - "fg": 452, - "rotates": false - }, - { "id": "overlay_wielded_spell_scroll_acid_resistance", "fg": 452, "rotates": false }, - { "id": "spell_scroll_acid_resistance", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_animated_blade", "fg": 452, "rotates": false }, - { "id": "spell_scroll_animated_blade", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_biomancer_coagulant_weave", "fg": 452, "rotates": false }, - { "id": "spell_scroll_biomancer_coagulant_weave", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_biomancer_paralytic_dart", "fg": 452, "rotates": false }, - { "id": "spell_scroll_biomancer_paralytic_dart", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_biomancer_visceral_projection", "fg": 452, "rotates": false }, - { "id": "spell_scroll_biomancer_visceral_projection", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_bio_acidicspray", "fg": 452, "rotates": false }, - { "id": "spell_scroll_bio_acidicspray", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_bio_bonespear", "fg": 452, "rotates": false }, - { "id": "spell_scroll_bio_bonespear", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_bio_fleshpouch", "fg": 452, "rotates": false }, - { "id": "spell_scroll_bio_fleshpouch", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_bio_grotesque", "fg": 452, "rotates": false }, - { "id": "spell_scroll_bio_grotesque", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_bless", "fg": 452, "rotates": false }, - { "id": "spell_scroll_bless", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_blinding_flash", "fg": 452, "rotates": false }, - { "id": "spell_scroll_blinding_flash", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_burning_hands", "fg": 452, "rotates": false }, - { "id": "spell_scroll_burning_hands", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_cats_grace", "fg": 452, "rotates": false }, - { "id": "spell_scroll_cats_grace", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_chilling_touch", "fg": 452, "rotates": false }, - { "id": "spell_scroll_chilling_touch", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_clairvoyance", "fg": 452, "rotates": false }, - { "id": "spell_scroll_clairvoyance", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_cone_cold", "fg": 452, "rotates": false }, - { "id": "spell_scroll_cone_cold", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_create_atomic_lamp", "fg": 452, "rotates": false }, - { "id": "spell_scroll_create_atomic_lamp", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_create_atomic_light", "fg": 452, "rotates": false }, - { "id": "spell_scroll_create_atomic_light", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_create_lighter", "fg": 452, "rotates": false }, - { "id": "spell_scroll_create_lighter", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_crystallize_mana", "fg": 452, "rotates": false }, - { "id": "spell_scroll_crystallize_mana", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_dark_sight", "fg": 452, "rotates": false }, - { "id": "spell_scroll_dark_sight", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_druidic_healing", "fg": 452, "rotates": false }, - { "id": "spell_scroll_druidic_healing", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_druidic_regrowth", "fg": 452, "rotates": false }, - { "id": "spell_scroll_druidic_regrowth", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_druid_naturebow1", "fg": 452, "rotates": false }, - { "id": "spell_scroll_druid_naturebow1", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_druid_rootstrike", "fg": 452, "rotates": false }, - { "id": "spell_scroll_druid_rootstrike", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_druid_veggrasp", "fg": 452, "rotates": false }, - { "id": "spell_scroll_druid_veggrasp", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_druid_woodshaft", "fg": 452, "rotates": false }, - { "id": "spell_scroll_druid_woodshaft", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_eagles_sight", "fg": 452, "rotates": false }, - { "id": "spell_scroll_eagles_sight", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_earthshaper_pillar", "fg": 452, "rotates": false }, - { "id": "spell_scroll_earthshaper_pillar", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_earthshaper_stoneskin", "fg": 452, "rotates": false }, - { "id": "spell_scroll_earthshaper_stoneskin", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_eshaper_piercing_bolt", "fg": 452, "rotates": false }, - { "id": "spell_scroll_eshaper_piercing_bolt", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_eshaper_rockbolt", "fg": 452, "rotates": false }, - { "id": "spell_scroll_eshaper_rockbolt", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_eshaper_shardspray", "fg": 452, "rotates": false }, - { "id": "spell_scroll_eshaper_shardspray", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_eshaper_shardstorm", "fg": 452, "rotates": false }, - { "id": "spell_scroll_eshaper_shardstorm", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_ethereal_grasp", "fg": 452, "rotates": false }, - { "id": "spell_scroll_ethereal_grasp", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_fireball", "fg": 452, "rotates": false }, - { "id": "spell_scroll_fireball", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_foxs_cunning", "fg": 452, "rotates": false }, - { "id": "spell_scroll_foxs_cunning", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_freezing_touch", "fg": 452, "rotates": false }, - { "id": "spell_scroll_freezing_touch", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_frost_armor", "fg": 452, "rotates": false }, - { "id": "spell_scroll_frost_armor", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_frost_spray", "fg": 452, "rotates": false }, - { "id": "spell_scroll_frost_spray", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_glide_ice", "fg": 452, "rotates": false }, - { "id": "spell_scroll_glide_ice", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_gravity_well", "fg": 452, "rotates": false }, - { "id": "spell_scroll_gravity_well", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_hoary_blast", "fg": 452, "rotates": false }, - { "id": "spell_scroll_hoary_blast", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_holographic_transposition", "fg": 452, "rotates": false }, - { "id": "spell_scroll_holographic_transposition", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_holy_blade", "fg": 452, "rotates": false }, - { "id": "spell_scroll_holy_blade", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_ice_shield", "fg": 452, "rotates": false }, - { "id": "spell_scroll_ice_shield", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_ice_spike", "fg": 452, "rotates": false }, - { "id": "spell_scroll_ice_spike", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_invisibility", "fg": 452, "rotates": false }, - { "id": "spell_scroll_invisibility", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_jolt", "fg": 452, "rotates": false }, - { "id": "spell_scroll_jolt", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_lava_bomb", "fg": 452, "rotates": false }, - { "id": "spell_scroll_lava_bomb", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_laze", "fg": 452, "rotates": false }, - { "id": "spell_scroll_laze", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_lightning_blast", "fg": 452, "rotates": false }, - { "id": "spell_scroll_lightning_blast", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_lightning_bolt", "fg": 452, "rotates": false }, - { "id": "spell_scroll_lightning_bolt", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_light_healing", "fg": 452, "rotates": false }, - { "id": "spell_scroll_light_healing", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_magic_missile", "fg": 452, "rotates": false }, - { "id": "spell_scroll_magic_missile", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_magus_escape", "fg": 452, "rotates": false }, - { "id": "spell_scroll_magus_escape", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_magus_haste", "fg": 452, "rotates": false }, - { "id": "spell_scroll_magus_haste", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_magus_mana_beam", "fg": 452, "rotates": false }, - { "id": "spell_scroll_magus_mana_beam", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_magus_mana_blast", "fg": 452, "rotates": false }, - { "id": "spell_scroll_magus_mana_blast", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_magus_mana_bolt", "fg": 452, "rotates": false }, - { "id": "spell_scroll_magus_mana_bolt", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_megablast", "fg": 452, "rotates": false }, - { "id": "spell_scroll_megablast", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_mirror_image", "fg": 452, "rotates": false }, - { "id": "spell_scroll_mirror_image", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_necrotic_gaze", "fg": 452, "rotates": false }, - { "id": "spell_scroll_necrotic_gaze", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_nova_flare", "fg": 452, "rotates": false }, - { "id": "spell_scroll_nova_flare", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_obfuscated_body", "fg": 452, "rotates": false }, - { "id": "spell_scroll_obfuscated_body", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_ogres_strength", "fg": 452, "rotates": false }, - { "id": "spell_scroll_ogres_strength", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_pain_split", "fg": 452, "rotates": false }, - { "id": "spell_scroll_pain_split", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_phase_door", "fg": 452, "rotates": false }, - { "id": "spell_scroll_phase_door", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_point_flare", "fg": 452, "rotates": false }, - { "id": "spell_scroll_point_flare", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_protection_aura", "fg": 452, "rotates": false }, - { "id": "spell_scroll_protection_aura", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_purification_seed", "fg": 452, "rotates": false }, - { "id": "spell_scroll_purification_seed", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_quantum_tunnel_lesser", "fg": 452, "rotates": false }, - { "id": "spell_scroll_quantum_tunnel_lesser", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_recover_bionic_power", "fg": 452, "rotates": false }, - { "id": "spell_scroll_recover_bionic_power", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_recover_fatigue", "fg": 452, "rotates": false }, - { "id": "spell_scroll_recover_fatigue", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_recover_mana", "fg": 452, "rotates": false }, - { "id": "spell_scroll_recover_mana", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_recover_pain", "fg": 452, "rotates": false }, - { "id": "spell_scroll_recover_pain", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_recover_stamina", "fg": 452, "rotates": false }, - { "id": "spell_scroll_recover_stamina", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_seismic_stomp", "fg": 452, "rotates": false }, - { "id": "spell_scroll_seismic_stomp", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_animated_blade", "fg": 452, "rotates": false }, - { "id": "spell_scroll_animated_blade", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_summon_magic_motorcycle", "fg": 452, "rotates": false }, - { "id": "spell_scroll_summon_magic_motorcycle", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_smite", "fg": 452, "rotates": false }, - { "id": "spell_scroll_smite", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_spirit_armor", "fg": 452, "rotates": false }, - { "id": "spell_scroll_spirit_armor", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_stonefist", "fg": 452, "rotates": false }, - { "id": "spell_scroll_stonefist", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_stormshaper_ionization", "fg": 452, "rotates": false }, - { "id": "spell_scroll_stormshaper_ionization", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_stormshaper_wall_of_fog", "fg": 452, "rotates": false }, - { "id": "spell_scroll_stormshaper_wall_of_fog", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_storm_hammer", "fg": 452, "rotates": false }, - { "id": "spell_scroll_storm_hammer", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_summon_cats", "fg": 452, "rotates": false }, - { "id": "spell_scroll_summon_cats", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_summon_decayed_pouncer", "fg": 452, "rotates": false }, - { "id": "spell_scroll_summon_decayed_pouncer", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_bio_bonespear", "fg": 452, "rotates": false }, - { "id": "spell_scroll_bio_bonespear", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_summon_skeleton", "fg": 452, "rotates": false }, - { "id": "spell_scroll_summon_skeleton", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_summon_wisps", "fg": 452, "rotates": false }, - { "id": "spell_scroll_summon_wisps", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_summon_wolf", "fg": 452, "rotates": false }, - { "id": "spell_scroll_summon_wolf", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_summon_zombie", "fg": 452, "rotates": false }, - { "id": "spell_scroll_summon_zombie", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_synaptic_stimulation", "fg": 452, "rotates": false }, - { "id": "spell_scroll_synaptic_stimulation", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_taze", "fg": 452, "rotates": false }, - { "id": "spell_scroll_taze", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_vicious_tentacle", "fg": 452, "rotates": false }, - { "id": "spell_scroll_vicious_tentacle", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_windrun", "fg": 452, "rotates": false }, - { "id": "spell_scroll_windrun", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_windstrike", "fg": 452, "rotates": false }, - { "id": "spell_scroll_windstrike", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_spell_scroll_x-ray", "fg": 452, "rotates": false }, - { "id": "spell_scroll_x-ray", "fg": 452, "rotates": false }, - { "id": "cauldron_demon_chitin", "fg": 453, "rotates": false }, - { "id": "overlay_wielded_cauldron_demon_chitin", "fg": 454, "rotates": false }, - { "id": "cauldron_orichalcum", "fg": 455, "rotates": false }, - { "id": "overlay_wielded_cauldron_orichalcum", "fg": 456, "rotates": false }, - { "id": "demon_forge", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_demon_forge", "fg": 458, "rotates": false }, - { "id": "overlay_wielded_sewing_kit", "fg": 459, "rotates": false }, - { "id": "sewing_kit", "fg": 459, "rotates": false }, - { "id": "overlay_wielded_tailors_kit", "fg": 460 }, - { "id": "tailors_kit", "fg": 460 }, - { "id": "fold_orichalcum_frame", "fg": 461, "rotates": false }, - { "id": "overlay_wielded_fold_orichalcum_frame", "fg": 462, "rotates": false }, - { "id": "orichalcum_frame", "fg": 463, "rotates": false }, - { "id": "overlay_wielded_orichalcum_frame", "fg": 464, "rotates": false }, - { "id": "lizardfolk_club", "fg": 465, "rotates": false }, - { "id": "overlay_wielded_lizardfolk_club", "fg": 466, "rotates": false }, - { "id": "lizardfolk_javelin", "fg": 467, "rotates": false }, - { "id": "overlay_wielded_lizardfolk_javelin", "fg": 468, "rotates": false }, - { "id": "lizardfolk_javelin_gun", "fg": 469, "rotates": false }, - { "id": "overlay_wielded_lizardfolk_javelin_gun", "fg": 469, "rotates": false }, - { "id": "lizardfolk_trident", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_lizardfolk_trident", "fg": 471, "rotates": false }, - { - "id": [ - "attunement_altar_NW", - "attunement_altar_NE", - "attunement_altar_SW", - "attunement_altar_SE", - "attunement_altar_NW_roof", - "attunement_altar_NE_roof", - "attunement_altar_SW_roof", - "attunement_altar_SE_roof" - ], - "fg": 472, - "rotates": false - }, - { - "id": [ "black_dragon_lair_z-0_NW", "black_dragon_lair_z-0_NE", "black_dragon_lair_z-0_SW", "black_dragon_lair_z-0_SE" ], - "fg": 473, - "rotates": false - }, - { - "id": [ - "black_dragon_lair_z-1_NW", - "black_dragon_lair_z-1_NE", - "black_dragon_lair_z-1_SW", - "black_dragon_lair_z-1_SE", - "black_dragon_lair_z-2_NW", - "black_dragon_lair_z-2_NE", - "black_dragon_lair_z-2_SW", - "black_dragon_lair_z-2_SE", - "black_dragon_lair_z-3_NW", - "black_dragon_lair_z-3_NE", - "black_dragon_lair_z-3_SW", - "black_dragon_lair_z-3_SE", - "black_dragon_lair_z-4_NW", - "black_dragon_lair_z-4_NE", - "black_dragon_lair_z-4_SW", - "black_dragon_lair_z-4_SE" - ], - "fg": 474, - "rotates": false - }, - { "id": [ "demon_spider_lair" ], "fg": 475, "rotates": false }, - { "id": [ "forest_tomb", "forest_tomb_roof" ], "fg": 476, "rotates": false }, - { "id": [ "forest_tomb_bottom" ], "fg": 477, "rotates": false }, - { - "id": [ - "forge_1A", - "forge_2A", - "forge_3A", - "forge_4A", - "forge_5A", - "forge_1B", - "forge_2B", - "forge_3B", - "forge_4B", - "forge_5B" - ], - "fg": 478, - "rotates": false - }, - { "id": [ "goblin_camp" ], "fg": 479, "rotates": false }, - { "id": [ "magic_cabin" ], "fg": 480, "rotates": false }, - { "id": [ "magic_shop", "magic_shop_2ndfloor", "magic_shop_roof" ], "fg": 481, "rotates": false }, - { "id": [ "orc_village" ], "fg": 482, "rotates": false }, - { "id": "mana", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_mana", "fg": 483, "rotates": false }, - { "id": "mon_demon_spider", "fg": 484, "bg": 4, "rotates": false }, - { "id": "corpse_mon_demon_spider", "fg": 485, "rotates": false }, - { "id": "mon_demon_spiderling", "fg": 486, "bg": 4, "rotates": false }, - { "id": "corpse_mon_demon_spiderling", "fg": 487, "rotates": false }, - { "id": "mon_dragon_black_wyrmling", "fg": 488, "bg": 4, "rotates": false }, - { "id": "corpse_mon_dragon_black_wyrmling", "fg": 489, "rotates": false }, - { "id": "mon_forgedemons", "fg": 490, "bg": 4, "rotates": false }, - { "id": "corpse_mon_forgedemons", "fg": 491, "rotates": false }, - { - "id": "mon_forgedwarves", - "fg": [ - { "weight": 3, "sprite": 492 }, - { "weight": 3, "sprite": 493 }, - { "weight": 3, "sprite": 494 }, - { "weight": 3, "sprite": 495 }, - { "weight": 3, "sprite": 496 }, - { "weight": 3, "sprite": 497 }, - { "weight": 3, "sprite": 498 }, - { "weight": 3, "sprite": 499 } - ], - "bg": 2, - "rotates": false - }, - { "id": "corpse_mon_forgedwarves", "fg": 500, "rotates": false }, - { "id": "mon_forgemaster1", "fg": 501, "bg": 2, "rotates": false }, - { "id": "corpse_mon_forgemaster1", "fg": 502, "rotates": false }, - { - "id": "mon_goblin_chieftain", - "fg": [ - { "weight": 3, "sprite": 503 }, - { "weight": 3, "sprite": 504 }, - { "weight": 3, "sprite": 505 }, - { "weight": 3, "sprite": 506 }, - { "weight": 3, "sprite": 507 }, - { "weight": 3, "sprite": 508 } - ], - "bg": 2, - "rotates": false - }, - { "id": "corpse_mon_goblin_chieftain", "fg": 509, "rotates": false }, - { - "id": "mon_goblin_slinger", - "fg": [ - { "weight": 3, "sprite": 510 }, - { "weight": 3, "sprite": 511 }, - { "weight": 3, "sprite": 512 }, - { "weight": 3, "sprite": 513 }, - { "weight": 3, "sprite": 514 }, - { "weight": 3, "sprite": 515 } - ], - "bg": 2, - "rotates": false - }, - { "id": "corpse_mon_goblin_slinger", "fg": 516, "rotates": false }, - { - "id": "mon_goblin_warrior", - "fg": [ - { "weight": 3, "sprite": 517 }, - { "weight": 3, "sprite": 518 }, - { "weight": 3, "sprite": 519 }, - { "weight": 3, "sprite": 520 }, - { "weight": 3, "sprite": 521 }, - { "weight": 3, "sprite": 522 } - ], - "bg": 2, - "rotates": false - }, - { "id": "corpse_mon_goblin_warrior", "fg": 523, "rotates": false }, - { "id": "mon_leprechaun", "fg": 524, "bg": 4, "rotates": false }, - { "id": "corpse_mon_leprechaun", "fg": 525, "rotates": false }, - { "id": "mon_workshop_elf", "fg": 526, "bg": 4, "rotates": false }, - { "id": "corpse_mon_workshop_elf", "fg": 527, "rotates": false }, - { "id": "mon_yulecat_cub", "fg": 528, "bg": 4, "rotates": false }, - { "id": "corpse_mon_yulecat_cub", "fg": 529, "rotates": false }, - { "id": "mon_crocodile", "fg": 530, "rotates": false }, - { "id": "corpse_mon_crocodile", "fg": 531, "rotates": false }, - { "id": "mon_baleful_polymorph_frog", "fg": 532, "bg": 1, "rotates": false }, - { "id": "corpse_mon_baleful_polymorph_frog", "fg": 533, "rotates": false }, - { "id": "mon_black_pudding", "fg": 534, "rotates": false }, - { "id": "mon_krabgek", "fg": 535, "bg": 4, "rotates": false }, - { "id": "corpse_mon_krabgek", "fg": 536, "rotates": false }, - { "id": "mon_lemure", "fg": 537, "bg": 4, "rotates": false }, - { "id": "corpse_mon_lemure", "fg": 538, "rotates": false }, - { "id": "mon_loup_garou", "fg": 539, "bg": 4 }, - { "id": "mon_owlbear", "fg": 540 }, - { "id": "corpse_mon_owlbear", "fg": 541 }, - { "id": "mon_owlbear_cub", "fg": 542 }, - { "id": "corpse_mon_owlbear_cub", "fg": 543 }, - { "id": "mon_shrieker", "fg": 544, "bg": 4, "rotates": false }, - { "id": "corpse_mon_shrieker", "fg": 545, "rotates": false }, - { "id": "mon_stirge", "fg": 546, "rotates": false }, - { "id": "corpse_mon_stirge", "fg": 547, "rotates": false }, - { "id": "mon_winter_wolf", "fg": 548, "bg": 4, "rotates": false }, - { "id": "corpse_mon_winter_wolf", "fg": 549, "rotates": false }, - { - "id": "mon_wisp", - "fg": [ - { "weight": 3, "sprite": 550 }, - { "weight": 3, "sprite": 551 }, - { "weight": 3, "sprite": 552 }, - { "weight": 3, "sprite": 553 } - ] - }, - { "id": "mon_animated_blade", "fg": 554 }, - { "id": "mon_mirror_image", "fg": 555 }, - { - "id": "mon_orc_archer", - "fg": [ - { "weight": 3, "sprite": 556 }, - { "weight": 3, "sprite": 557 }, - { "weight": 3, "sprite": 558 }, - { "weight": 3, "sprite": 559 }, - { "weight": 3, "sprite": 560 }, - { "weight": 3, "sprite": 561 } - ], - "bg": 4, - "rotates": false - }, - { "id": "corpse_mon_orc_archer", "fg": 562, "rotates": false }, - { - "id": "mon_orc_blood_warrior", - "fg": [ - { "weight": 3, "sprite": 563 }, - { "weight": 3, "sprite": 564 }, - { "weight": 3, "sprite": 565 }, - { "weight": 3, "sprite": 566 }, - { "weight": 3, "sprite": 567 }, - { "weight": 3, "sprite": 568 } - ], - "bg": 4, - "rotates": false - }, - { "id": "corpse_mon_orc_blood_warrior", "fg": 569, "rotates": false }, - { - "id": "mon_orc_warrior", - "fg": [ - { "weight": 3, "sprite": 570 }, - { "weight": 3, "sprite": 571 }, - { "weight": 3, "sprite": 572 }, - { "weight": 3, "sprite": 573 }, - { "weight": 3, "sprite": 574 }, - { "weight": 3, "sprite": 575 } - ], - "bg": 4, - "rotates": false - }, - { "id": "corpse_mon_orc_warrior", "fg": 576, "rotates": false }, - { "id": "mon_were_zolf", "fg": 577, "bg": 4 }, - { "id": "mon_zorc", "fg": 578, "bg": 4 }, - { "id": "corpse_mon_zorc", "fg": 579, "rotates": false }, - { "id": "overlay_wielded_skewer", "fg": 580, "rotates": false }, - { "id": "skewer", "fg": 580, "bg": 3, "rotates": false }, - { "id": "overlay_mutation_DRAGON_FEET", "fg": 581 }, - { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 582 }, - { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 583 }, - { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 584 }, - { "id": "overlay_mutation_DRAGON_TAIL", "fg": 585 }, - { "id": "overlay_mutation_DRAGON_TAIL_SCALED", "fg": 586 }, - { "id": "overlay_mutation_DRAGON_TALONS_BLACK", "fg": 587, "rotates": false }, - { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 588 }, - { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 589 }, - { "id": "overlay_mutation_SCALED_HANDS", "fg": 590, "rotates": false }, - { "id": "f_null", "fg": 591, "rotates": false }, - { "id": "mon_null", "fg": 591, "rotates": false }, - { "id": "null", "fg": 591, "rotates": false }, - { "id": "t_null", "fg": 591, "rotates": false }, - { "id": "vp_null", "fg": 591, "rotates": false }, - { "id": "fungicide", "fg": 592, "bg": 3, "rotates": false }, - { "id": "overlay_wielded_fungicide", "fg": 592, "rotates": false }, - { - "id": "t_demon_web_wall", - "fg": 593, - "bg": 6, - "rotates": true, - "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 594, "bg": 6 }, - { "id": "corner", "fg": [ 595, 596, 597, 598 ], "bg": 6 }, - { "id": "t_connection", "fg": [ 605, 606, 607, 608 ], "bg": 6 }, - { "id": "edge", "fg": [ 599, 600 ], "bg": 6 }, - { "id": "end_piece", "fg": [ 601, 602, 603, 604 ], "bg": 6 }, - { "id": "unconnected", "fg": 609, "bg": 6 } - ] - }, - { - "id": "t_dirt_barren", - "fg": [ - { "weight": 40, "sprite": 610 }, - { "weight": 40, "sprite": 611 }, - { "weight": 40, "sprite": 612 }, - { "weight": 40, "sprite": 613 }, - { "weight": 1, "sprite": 614 } - ], - "rotates": false - }, - { "id": "t_magiconc_floor", "fg": 615, "rotates": false }, - { "id": "t_webbed_corpse", "fg": 616, "rotates": false }, - { "id": "tr_bear", "fg": 617, "rotates": false }, - { "id": "tr_forge_vault", "fg": 618, "rotates": false }, - { "id": "tr_magic_door", "fg": 619, "rotates": false }, - { - "id": "vp_folding_orichalcum_frame", - "fg": 620, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 621 } ] - }, - { - "id": "vp_frame_orichalcum_cover", - "fg": 622, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 623 } ] - }, - { - "id": "vp_frame_orichalcum_cross", - "fg": 624, - "rotates": true, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 625 } ] - }, - { - "id": "vp_frame_orichalcum_horizontal", - "fg": 626, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 627 } ] - }, - { - "id": "vp_frame_orichalcum_horizontal_2", - "fg": 628, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 629 } ] - }, - { - "id": "vp_frame_orichalcum_ne", - "fg": 630, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 631 } ] - }, - { - "id": "vp_frame_orichalcum_nw", - "fg": 632, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 633 } ] - }, - { - "id": "vp_frame_orichalcum_se", - "fg": 634, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 635 } ] - }, - { - "id": "vp_frame_orichalcum_sw", - "fg": 636, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 637 } ] - }, - { - "id": "vp_frame_orichalcum_vertical", - "fg": 638, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 639 } ] - }, - { - "id": "vp_frame_orichalcum_vertical_2", - "fg": 640, - "rotates": false, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 641 } ] - }, - { "id": "wizardtower1_ground", "fg": 642, "rotates": false } - ], - "//": "range 1 to 656", - "sprite_width": 32, - "sprite_height": 32, - "sprite_offset_x": 0, - "sprite_offset_y": 0 - }, - { - "file": "Magiclysm_normal_offset.png", - "tiles": [ { "id": "overlay_worn_wizard_hat", "fg": 657, "rotates": false } ], - "//": "range 657 to 672", - "sprite_width": 32, - "sprite_height": 32, - "sprite_offset_x": 0, - "sprite_offset_y": -16 - }, - { - "file": "Magiclysm_large.png", - "tiles": [ - { "id": "bg_big_dirt", "fg": 673, "rotates": false }, - { "id": "bg_big_golem_shadow", "fg": 674, "rotates": false }, - { "id": "bg_big_large_shadow", "fg": 676, "rotates": false }, - { "id": "bg_big_normal_shadow", "fg": 676, "rotates": false }, - { "id": "bg_big_snow", "fg": 677, "rotates": false }, - { "id": "bg_big_tall_shadow", "fg": 678, "rotates": false }, - { "id": "f_alembic", "fg": 679, "rotates": false }, - { - "id": "f_everburning_candelabra", - "fg": [ { "weight": 11, "sprite": 680 }, { "weight": 11, "sprite": 681 }, { "weight": 11, "sprite": 682 } ], - "rotates": false, - "animated": true - }, - { "id": "f_glow_boulder", "fg": 683, "rotates": false }, - { "id": "f_glow_boulder_season_autumn", "fg": 684, "rotates": false }, - { "id": "f_glow_boulder_season_spring", "fg": 685, "rotates": false }, - { "id": "f_glow_boulder_season_summer", "fg": 686, "rotates": false }, - { "id": "f_glow_boulder_season_winter", "fg": 687, "rotates": false }, - { "id": "f_huge_mana_crystal", "fg": 688, "rotates": false }, - { "id": "overlay_worn_magic_lamp", "fg": 689, "rotates": false }, - { "id": "overlay_worn_magic_light", "fg": 690, "rotates": false }, - { "id": "overlay_wielded_gungnir", "fg": 691, "rotates": false }, - { - "id": [ - "magic_academy_ground", - "magic_academy_2nd", - "magic_academy_3rd", - "magic_academy_4th", - "magic_academy_5th", - "magic_academy_6th", - "magic_academy_7th", - "magic_academy_8th" - ], - "fg": 692, - "rotates": false - }, - { "id": "mon_demon_spider_queen", "fg": 693, "rotates": false }, - { "id": "corpse_mon_demon_spider_queen", "fg": 694, "rotates": false }, - { "id": "mon_dragon_black_young", "fg": 695, "rotates": false }, - { "id": "corpse_mon_dragon_black_young", "fg": 696, "rotates": false }, - { "id": "mon_forgeborn", "fg": 697, "bg": 678, "rotates": false }, - { "id": "corpse_mon_forgeborn", "fg": 698, "rotates": false }, - { "id": "mon_claygolem", "fg": 699, "bg": 674, "rotates": false }, - { "id": "mon_irongolem", "fg": 700, "bg": 674, "rotates": false }, - { "id": "mon_plasticgolem", "fg": 701, "bg": 674, "rotates": false }, - { "id": "mon_stonegolem", "fg": 702, "bg": 674, "rotates": false }, - { "id": "mon_yulecat", "fg": 703, "bg": 675, "rotates": false }, - { "id": "corpse_mon_yulecat", "fg": 704, "rotates": false }, - { "id": "mon_lizardfolk_chieftan", "fg": 705, "rotates": false }, - { "id": "corpse_mon_lizardfolk_chieftan", "fg": 706, "rotates": false }, - { "id": "mon_lizardfolk_hunter", "fg": 707, "rotates": false }, - { "id": "corpse_mon_lizardfolk_hunter", "fg": 708, "rotates": false }, - { "id": "mon_lizardfolk_shaman", "fg": 709, "rotates": false }, - { "id": "corpse_mon_lizardfolk_shaman", "fg": 710, "rotates": false }, - { "id": "mon_lizardfolk_warrior", "fg": 711, "rotates": false }, - { "id": "corpse_mon_lizardfolk_warrior", "fg": 712, "rotates": false }, - { "id": "mon_bulette", "fg": 713, "rotates": false }, - { "id": "corpse_mon_bulette", "fg": 714, "rotates": false }, - { "id": "mon_ogre", "fg": 715, "rotates": false }, - { "id": "corpse_mon_ogre", "fg": 716, "rotates": false }, - { "id": "mon_troll", "fg": 717, "rotates": false }, - { "id": "corpse_mon_troll", "fg": 718, "rotates": false }, - { - "id": "t_thconc_floor_echandelier", - "fg": [ { "weight": 11, "sprite": 719 }, { "weight": 11, "sprite": 720 }, { "weight": 11, "sprite": 721 } ], - "bg": 722, - "rotates": false, - "animated": true - }, - { "id": "t_tree_burnt", "fg": 723, "bg": 673, "rotates": false }, - { "id": "t_tree_burnt_season_autumn", "fg": 724, "bg": 673, "rotates": false }, - { "id": "t_tree_burnt_season_spring", "fg": 725, "bg": 673, "rotates": false }, - { "id": "t_tree_burnt_season_summer", "fg": 726, "bg": 673, "rotates": false }, - { "id": "t_tree_burnt_season_winter", "fg": 727, "bg": 677, "rotates": false } - ], - "//": "range 673 to 736", - "sprite_width": 64, - "sprite_height": 80, - "sprite_offset_x": -16, - "sprite_offset_y": -48 - }, - { - "file": "Magiclysm_huge.png", - "tiles": [ - { "id": "f_orrery", "fg": 737, "rotates": false }, - { "id": "mon_dragon_black_adult", "fg": 738, "rotates": false }, - { "id": "corpse_mon_dragon_black_adult", "fg": 739, "rotates": false } - ], - "//": "range 737 to 752", - "sprite_width": 160, - "sprite_height": 128, - "sprite_offset_x": -48, - "sprite_offset_y": -48 - } - ] - } -] diff --git a/data/mods/Magiclysm/monsters/golems.json b/data/mods/Magiclysm/monsters/golems.json deleted file mode 100644 index 6701b7705778..000000000000 --- a/data/mods/Magiclysm/monsters/golems.json +++ /dev/null @@ -1,131 +0,0 @@ -[ - { - "id": "mon_claygolem", - "type": "MONSTER", - "name": "clay golem", - "description": "A large, humanoid golem made from clay. Its proportions are off and it seems fragile.", - "default_faction": "robot", - "bodytype": "human", - "species": [ "ROBOT" ], - "diff": 2, - "volume": "120 L", - "weight": "122 kg", - "hp": 100, - "speed": 80, - "material": [ "clay" ], - "symbol": "X", - "color": "brown", - "aggression": 8, - "morale": 100, - "melee_skill": 6, - "melee_dice": 2, - "melee_dice_sides": 10, - "melee_cut": 5, - "armor_bash": 10, - "armor_cut": 10, - "armor_bullet": 10, - "armor_fire": 4, - "dodge": 0, - "vision_day": 40, - "vision_night": 40, - "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], - "death_function": [ "BROKEN" ], - "flags": [ "SEES", "NO_BREATHE", "ACIDPROOF", "LOUDMOVES" ] - }, - { - "id": "mon_plasticgolem", - "type": "MONSTER", - "name": { "str": "plastic golem" }, - "description": "Traditionally, making a golem is a months-long process involving hand tools and precision craftsmanship. A stone golem is as much a work of art as it is a magical device. The advent of 3D printing made it easy to get into the golem-making hobby, and plastic golems have soared in popularity.", - "default_faction": "factionless", - "volume": "150 L", - "weight": "70 kg", - "hp": 120, - "speed": 90, - "material": [ "plastic" ], - "symbol": "G", - "color": "light_gray", - "aggression": 30, - "morale": 100, - "armor_bash": 18, - "armor_cut": 6, - "armor_bullet": 5, - "melee_skill": 5, - "melee_dice": 3, - "melee_dice_sides": 6, - "melee_cut": 3, - "vision_day": 30, - "vision_night": 30, - "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], - "death_function": [ "BROKEN" ], - "flags": [ "SEES", "HEARS", "NO_BREATHE", "LOUDMOVES" ] - }, - { - "id": "mon_stonegolem", - "type": "MONSTER", - "name": "stone golem", - "description": "A large, humanoid golem made from stone. Its fists look similar to rockets.", - "default_faction": "robot", - "bodytype": "human", - "species": [ "ROBOT" ], - "diff": 2, - "volume": "120 L", - "weight": "162 kg", - "hp": 250, - "speed": 60, - "material": [ "stone" ], - "symbol": "X", - "color": "light_gray", - "aggression": 8, - "morale": 100, - "melee_skill": 6, - "melee_dice": 3, - "melee_dice_sides": 8, - "melee_cut": 6, - "armor_bash": 20, - "armor_cut": 20, - "armor_bullet": 16, - "armor_fire": 20, - "dodge": 0, - "vision_day": 40, - "vision_night": 40, - "special_attacks": [ { "type": "spell", "spell_data": { "id": "rocket_punch", "min_level": 5 }, "cooldown": 10 } ], - "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], - "death_function": [ "BROKEN" ], - "flags": [ "SEES", "NO_BREATHE", "ACIDPROOF", "LOUDMOVES" ] - }, - { - "id": "mon_irongolem", - "type": "MONSTER", - "name": "iron golem", - "description": "A large, humanoid golem made from iron. Some sort of noxious gas seems to be seeping from its mouth.", - "default_faction": "robot", - "bodytype": "human", - "species": [ "ROBOT" ], - "diff": 2, - "volume": "120 L", - "weight": "945 kg", - "hp": 400, - "speed": 50, - "material": [ "iron" ], - "symbol": "X", - "color": "dark_gray", - "aggression": 9, - "morale": 100, - "melee_skill": 6, - "melee_dice": 3, - "melee_dice_sides": 10, - "melee_cut": 7, - "armor_bash": 32, - "armor_cut": 32, - "armor_bullet": 26, - "armor_fire": 32, - "dodge": 0, - "vision_day": 40, - "vision_night": 40, - "special_attacks": [ { "type": "spell", "spell_data": { "id": "gas_attack", "min_level": 5 }, "cooldown": 60 } ], - "anger_triggers": [ "PLAYER_CLOSE", "HURT" ], - "death_function": [ "BROKEN" ], - "flags": [ "SEES", "NO_BREATHE", "ACIDPROOF", "LOUDMOVES" ] - } -] diff --git a/data/mods/Magiclysm/obsolete.json b/data/mods/Magiclysm/obsolete.json deleted file mode 100644 index 0fd668b91ca0..000000000000 --- a/data/mods/Magiclysm/obsolete.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "type": "recipe", - "result": "flu_shot", - "obsolete": true - } -] diff --git a/data/mods/Magiclysm/recipes/deconstruction.json b/data/mods/Magiclysm/recipes/deconstruction.json deleted file mode 100644 index 5fe9ad10e4cd..000000000000 --- a/data/mods/Magiclysm/recipes/deconstruction.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "result": "broken_claygolem", - "type": "uncraft", - "skill_used": "spellcraft", - "difficulty": 2, - "time": "4 h", - "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "clay_lump", 231 ] ] ] - }, - { - "result": "broken_stonegolem", - "type": "uncraft", - "skill_used": "spellcraft", - "difficulty": 4, - "time": "4 h", - "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "rock", 222 ] ], [ [ "sharp_rock", 33 ] ] ] - }, - { - "result": "broken_irongolem", - "type": "uncraft", - "skill_used": "spellcraft", - "difficulty": 6, - "time": "6 h", - "qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "SAW_M", "level": 1 } ], - "components": [ [ [ "scrap", 800 ] ], [ [ "steel_lump", 200 ] ] ] - } -] diff --git a/data/mods/Magiclysm/vehicle_groups.json b/data/mods/Magiclysm/vehicle_groups.json deleted file mode 100644 index f74515536a6c..000000000000 --- a/data/mods/Magiclysm/vehicle_groups.json +++ /dev/null @@ -1,42 +0,0 @@ -[ - { - "type": "vehicle_group", - "id": "city_vehicles", - "vehicles": [ [ "bicycle_orichalcum", 300 ] ] - }, - { - "type": "vehicle_group", - "id": "suburban_home", - "vehicles": [ [ "bicycle_orichalcum", 100 ] ] - }, - { - "type": "vehicle_group", - "id": "dirtlot", - "vehicles": [ [ "bicycle_orichalcum", 50 ] ] - }, - { - "type": "vehicle_group", - "id": "parkinglot", - "vehicles": [ [ "bicycle_orichalcum", 350 ] ] - }, - { - "type": "vehicle_group", - "id": "campground_vehicles", - "vehicles": [ [ "bicycle_orichalcum", 75 ] ] - }, - { - "type": "vehicle_group", - "id": "bikeshop", - "vehicles": [ [ "bicycle_orichalcum", 600 ] ] - }, - { - "type": "vehicle_group", - "id": "back_alley", - "vehicles": [ [ "bicycle_orichalcum", 450 ] ] - }, - { - "type": "vehicle_group", - "id": "showroom_small_vehicles", - "vehicles": [ [ "bicycle_orichalcum", 100 ] ] - } -] diff --git a/data/mods/Magiclysm/vehicles/bikes.json b/data/mods/Magiclysm/vehicles/bikes.json deleted file mode 100644 index 4da67b14167e..000000000000 --- a/data/mods/Magiclysm/vehicles/bikes.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "id": "bicycle_orichalcum", - "type": "vehicle", - "name": "Bicycle", - "blueprint": [ "o#o" ], - "parts": [ - { "x": 0, "y": 0, "parts": [ "folding_orichalcum_frame", "saddle", "horn_bicycle", "foot_pedals" ] }, - { "x": 1, "y": 0, "parts": [ "folding_orichalcum_frame", "wheel_mount_light_steerable", "wheel_bicycle" ] }, - { "x": -1, "y": 0, "parts": [ "folding_orichalcum_frame", "wheel_mount_light", "wheel_bicycle", "basketsm" ] } - ] - } -] diff --git a/data/mods/Magiclysm/vehicles/vans_busses.json b/data/mods/Magiclysm/vehicles/vans_busses.json deleted file mode 100644 index 05725b301946..000000000000 --- a/data/mods/Magiclysm/vehicles/vans_busses.json +++ /dev/null @@ -1,178 +0,0 @@ -[ - { - "id": "security_van", - "type": "vehicle", - "name": "Security Van", - "blueprint": [ - [ " o " ], - [ "O----+-O" ], - [ "|===|#'|" ], - [ "+===|o'>" ], - [ "|===|#'|" ], - [ "O--+-+-O" ], - [ " o " ] - ], - "parts": [ - { "x": 0, "y": 1, "part": "frame_orichalcum_vertical" }, - { "x": 0, "y": 1, "part": "box" }, - { "x": 0, "y": 1, "part": "hdroof" }, - { "x": 0, "y": 0, "part": "frame_orichalcum_vertical_2" }, - { "x": 0, "y": 0, "part": "seat" }, - { "x": 0, "y": 0, "part": "seatbelt" }, - { "x": 0, "y": 0, "part": "controls" }, - { "x": 0, "y": 0, "part": "dashboard" }, - { "x": 0, "y": 0, "part": "vehicle_alarm" }, - { "x": 0, "y": 0, "part": "horn_car" }, - { "x": 0, "y": 0, "part": "hdroof" }, - { "x": 0, "y": 2, "part": "frame_orichalcum_vertical_2" }, - { "x": 0, "y": 2, "part": "seat" }, - { "x": 0, "y": 2, "part": "seatbelt" }, - { "x": 0, "y": 2, "part": "hdroof" }, - { "x": 0, "y": -1, "part": "frame_orichalcum_vertical" }, - { "x": 0, "y": -1, "part": "hddoor" }, - { "x": 0, "y": -1, "part": "plating_steel" }, - { "x": 0, "y": 3, "part": "frame_orichalcum_vertical" }, - { "x": 0, "y": 3, "part": "hddoor" }, - { "x": 0, "y": 3, "part": "plating_steel" }, - { "x": 1, "y": 1, "part": "frame_orichalcum_horizontal" }, - { "x": 1, "y": 1, "part": "reinforced_windshield" }, - { "x": 1, "y": 1, "part": "plating_steel" }, - { "x": 1, "y": 1, "part": "diesel_engine_v6" }, - { "x": 1, "y": 1, "part": "alternator_truck" }, - { "x": 1, "y": 1, "part": "battery_car" }, - { "x": 1, "y": 0, "part": "frame_orichalcum_horizontal" }, - { "x": 1, "y": 0, "part": "reinforced_windshield" }, - { "x": 1, "y": 0, "part": "plating_steel" }, - { "x": 1, "y": 2, "part": "frame_orichalcum_horizontal" }, - { "x": 1, "y": 2, "part": "reinforced_windshield" }, - { "x": 1, "y": 2, "part": "plating_steel" }, - { "x": 1, "y": -1, "part": "frame_orichalcum_vertical" }, - { "x": 1, "y": -1, "part": "reinforced_windshield" }, - { "x": 1, "y": -1, "part": "plating_steel" }, - { "x": 1, "y": -2, "part": "wing_mirror" }, - { "x": 1, "y": 3, "part": "frame_orichalcum_vertical" }, - { "x": 1, "y": 3, "part": "reinforced_windshield" }, - { "x": 1, "y": 3, "part": "plating_steel" }, - { "x": 1, "y": 4, "part": "wing_mirror" }, - { "x": 2, "y": 0, "part": "frame_orichalcum_horizontal" }, - { "x": 2, "y": 0, "part": "hdhalfboard_horizontal_2" }, - { "x": 2, "y": 0, "part": "plating_steel" }, - { "x": 2, "y": 1, "part": "hdframe_cover" }, - { "x": 2, "y": 1, "part": "hdhalfboard_horizontal_2" }, - { "x": 2, "y": 1, "part": "plating_steel" }, - { "x": 2, "y": 2, "part": "frame_orichalcum_horizontal" }, - { "x": 2, "y": 2, "part": "hdhalfboard_horizontal_2" }, - { "x": 2, "y": 2, "part": "plating_steel" }, - { "x": 2, "y": -1, "part": "frame_orichalcum_nw" }, - { "x": 2, "y": -1, "part": "hdhalfboard_nw" }, - { "x": 2, "y": -1, "part": "headlight_reinforced" }, - { "x": 2, "y": -1, "parts": [ "wheel_mount_medium_steerable", "wheel_wide" ] }, - { "x": 2, "y": -1, "part": "plating_steel" }, - { "x": 2, "y": 3, "part": "frame_orichalcum_ne" }, - { "x": 2, "y": 3, "part": "hdhalfboard_ne" }, - { "x": 2, "y": 3, "part": "headlight_reinforced" }, - { "x": 2, "y": 3, "parts": [ "wheel_mount_medium_steerable", "wheel_wide" ] }, - { "x": 2, "y": 3, "part": "plating_steel" }, - { "x": -1, "y": 0, "part": "frame_orichalcum_horizontal" }, - { "x": -1, "y": 0, "part": "hdboard_horizontal" }, - { "x": -1, "y": 0, "part": "plating_steel" }, - { "x": -1, "y": 1, "part": "frame_orichalcum_horizontal" }, - { "x": -1, "y": 1, "part": "hdboard_horizontal" }, - { "x": -1, "y": 1, "part": "plating_steel" }, - { "x": -1, "y": 2, "part": "frame_orichalcum_horizontal" }, - { "x": -1, "y": 2, "part": "hdboard_horizontal" }, - { "x": -1, "y": 2, "part": "plating_steel" }, - { "x": -1, "y": -1, "part": "frame_orichalcum_sw" }, - { "x": -1, "y": -1, "part": "hdboard_sw" }, - { "x": -1, "y": -1, "part": "plating_steel" }, - { "x": -1, "y": -1, "part": "tank", "fuel": "diesel" }, - { "x": -1, "y": 3, "part": "frame_orichalcum_se" }, - { "x": -1, "y": 3, "part": "hdboard_se" }, - { "x": -1, "y": 3, "part": "tank", "fuel": "diesel" }, - { "x": -1, "y": 3, "part": "plating_steel" }, - { "x": -2, "y": 0, "part": "frame_orichalcum_vertical" }, - { "x": -2, "y": 0, "part": "trunk" }, - { "x": -2, "y": 0, "part": "hdroof" }, - { "x": -2, "y": 1, "part": "frame_orichalcum_vertical" }, - { "x": -2, "y": 1, "part": "aisle_horizontal" }, - { "x": -2, "y": 1, "part": "hdroof" }, - { "x": -2, "y": 2, "part": "frame_orichalcum_vertical" }, - { "x": -2, "y": 2, "part": "aisle_horizontal" }, - { "x": -2, "y": 2, "part": "hdroof" }, - { "x": -2, "y": -1, "part": "frame_orichalcum_vertical" }, - { "x": -2, "y": -1, "part": "hdboard_vertical" }, - { "x": -2, "y": -1, "part": "hdroof" }, - { "x": -2, "y": -1, "part": "plating_steel" }, - { "x": -2, "y": 3, "part": "frame_orichalcum_vertical" }, - { "x": -2, "y": 3, "part": "hddoor_opaque" }, - { "x": -2, "y": 3, "part": "hdroof" }, - { "x": -2, "y": 3, "part": "plating_steel" }, - { "x": -3, "y": 0, "part": "frame_orichalcum_horizontal" }, - { "x": -3, "y": 0, "part": "trunk" }, - { "x": -3, "y": 0, "part": "hdroof" }, - { "x": -3, "y": 1, "part": "frame_orichalcum_horizontal" }, - { "x": -3, "y": 1, "part": "aisle_horizontal" }, - { "x": -3, "y": 1, "part": "hdroof" }, - { "x": -3, "y": 2, "part": "frame_orichalcum_horizontal" }, - { "x": -3, "y": 2, "part": "seat" }, - { "x": -3, "y": 2, "part": "seatbelt" }, - { "x": -3, "y": 2, "part": "hdroof" }, - { "x": -3, "y": -1, "part": "frame_orichalcum_vertical" }, - { "x": -3, "y": -1, "part": "hdboard_vertical" }, - { "x": -3, "y": -1, "part": "hdroof" }, - { "x": -3, "y": -1, "part": "plating_steel" }, - { "x": -3, "y": 3, "part": "frame_orichalcum_vertical" }, - { "x": -3, "y": 3, "part": "hdboard_vertical" }, - { "x": -3, "y": 3, "part": "hdroof" }, - { "x": -3, "y": 3, "part": "plating_steel" }, - { "x": -4, "y": 0, "part": "frame_orichalcum_horizontal" }, - { "x": -4, "y": 0, "part": "trunk" }, - { "x": -4, "y": 0, "part": "hdroof" }, - { "x": -4, "y": 1, "part": "frame_orichalcum_horizontal" }, - { "x": -4, "y": 1, "part": "aisle_horizontal" }, - { "x": -4, "y": 1, "part": "hdroof" }, - { "x": -4, "y": 2, "part": "frame_orichalcum_horizontal" }, - { "x": -4, "y": 2, "part": "trunk" }, - { "x": -4, "y": 2, "part": "hdroof" }, - { "x": -4, "y": -1, "part": "frame_orichalcum_vertical" }, - { "x": -4, "y": -1, "part": "hdboard_vertical" }, - { "x": -4, "y": -1, "part": "hdroof" }, - { "x": -4, "y": -1, "part": "plating_steel" }, - { "x": -4, "y": 3, "part": "frame_orichalcum_vertical" }, - { "x": -4, "y": 3, "part": "hdboard_vertical" }, - { "x": -4, "y": 3, "part": "hdroof" }, - { "x": -4, "y": 3, "part": "plating_steel" }, - { "x": -5, "y": 0, "part": "frame_orichalcum_horizontal" }, - { "x": -5, "y": 0, "part": "hdboard_horizontal" }, - { "x": -5, "y": 0, "part": "hdroof" }, - { "x": -5, "y": 0, "part": "plating_steel" }, - { "x": -5, "y": 1, "part": "frame_orichalcum_horizontal" }, - { "x": -5, "y": 1, "part": "hddoor_opaque" }, - { "x": -5, "y": 1, "part": "hdroof" }, - { "x": -5, "y": 1, "part": "plating_steel" }, - { "x": -5, "y": 2, "part": "frame_orichalcum_horizontal" }, - { "x": -5, "y": 2, "part": "hdboard_horizontal" }, - { "x": -5, "y": 2, "part": "beeper" }, - { "x": -5, "y": 2, "part": "hdroof" }, - { "x": -5, "y": 2, "part": "plating_steel" }, - { "x": -5, "y": -1, "part": "frame_orichalcum_sw" }, - { "x": -5, "y": -1, "part": "hdboard_sw" }, - { "x": -5, "y": -1, "parts": [ "wheel_mount_medium", "wheel_wide" ] }, - { "x": -5, "y": -1, "part": "hdroof" }, - { "x": -5, "y": -1, "part": "plating_steel" }, - { "x": -5, "y": 3, "part": "frame_orichalcum_se" }, - { "x": -5, "y": 3, "part": "hdboard_se" }, - { "x": -5, "y": 3, "parts": [ "wheel_mount_medium", "wheel_wide" ] }, - { "x": -5, "y": 3, "part": "hdroof" }, - { "x": -5, "y": 3, "part": "plating_steel" } - ], - "items": [ - { "x": 0, "y": 1, "chance": 70, "magazine": 100, "ammo": 50, "item_groups": [ "guns_cop" ] }, - { "x": -2, "y": 0, "chance": 50, "item_groups": [ "supplies_metal_precious", "supplies_metal_precious" ] }, - { "x": -2, "y": 0, "chance": 50, "item_groups": [ "supplies_metal_precious", "supplies_metal_precious" ] }, - { "x": -3, "y": 0, "chance": 20, "item_groups": [ "supplies_metal_precious", "supplies_metal_precious" ] }, - { "x": -4, "y": 0, "chance": 20, "item_groups": [ "supplies_metal_precious", "supplies_metal_precious" ] }, - { "x": -4, "y": 0, "chance": 20, "items": [ "diamond", "diamond", "diamond", "diamond", "diamond" ] } - ] - } -] diff --git a/data/mods/Magiclysm/worldgen/regional_overlay.json b/data/mods/Magiclysm/worldgen/regional_overlay.json deleted file mode 100644 index a5dde4787867..000000000000 --- a/data/mods/Magiclysm/worldgen/regional_overlay.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "type": "region_overlay", - "regions": [ "all" ], - "city": { - "houses": { "wizard_tower_1": 10, "wizard_tower_2": 20 }, - "shops": { "magic_shop": 100, "used_bookstore": 225, "magic_academy": 150 } - }, - "field_coverage": { "other": { "f_boulder_large": 0.98, "f_glow_boulder": 0.02 } } - } -] diff --git a/data/mods/TEST_DATA/items.json b/data/mods/TEST_DATA/items.json index 5d41c47417b4..ceef134177cc 100644 --- a/data/mods/TEST_DATA/items.json +++ b/data/mods/TEST_DATA/items.json @@ -785,5 +785,35 @@ "name": { "str": "damageable anti-bullet armor" }, "description": "This armor protects from bullets, but can be damaged to protect a bit less.", "material_thickness": 10 + }, + { + "id": "test_override_armor_copyfrom_encumbrance", + "repairs_like": "survivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "copyable armor with encumbrance" }, + "description": "This armor has some encumbrance.", + "weight": "100 g", + "volume": "1 L", + "price": 1, + "price_postapoc": 1, + "symbol": "[", + "looks_like": "touring_suit", + "color": "dark_gray", + "material": [ "cotton" ], + "warmth": 0, + "material_thickness": 1, + "encumbrance": 10, + "coverage": 100, + "covers": [ "torso", "arm_l", "arm_r", "head", "leg_l", "leg_r" ] + }, + { + "id": "test_override_armor_copyfrom_proportional_encumbrance", + "copy-from": "test_override_armor_copyfrom_encumbrance", + "type": "ARMOR", + "category": "armor", + "name": { "str": "proportionally encumbering armor" }, + "description": "This armor has half the encumbrance of some other armor.", + "proportional": { "weight": 0.5, "encumbrance": 0.5, "price": 10, "warmth": 2 } } ] diff --git a/data/mods/TEST_DATA/magic.json b/data/mods/TEST_DATA/magic.json index c0f307f88b4f..f062049eafd9 100644 --- a/data/mods/TEST_DATA/magic.json +++ b/data/mods/TEST_DATA/magic.json @@ -5,7 +5,7 @@ "name": "Pew, Pew", "description": "You aim your finger at your opponent and make 'Pew, pew' sounds.", "effect": "target_attack", - "damage_type": "none", + "damage_type": "true", "valid_targets": [ "hostile" ], "flags": [ "VERBAL", "SOMATIC", "NO_LEGS" ], "max_level": 10, diff --git a/data/mods/UDP_Redux/terrain.json b/data/mods/UDP_Redux/terrain.json index 9d5e7fb45b5a..87e40bbaca6d 100644 --- a/data/mods/UDP_Redux/terrain.json +++ b/data/mods/UDP_Redux/terrain.json @@ -177,7 +177,21 @@ { "id": "t_floor_waxed", "fg": 161 }, { "id": "t_floor_waxed_y", "fg": 162 }, { "id": "t_thconc_floor", "fg": 163 }, - { "id": "t_thconc_floor_olight", "fg": 164 } + { "id": "t_thconc_floor_olight", "fg": 164 }, + { + "id": "t_shingle_flat_roof", + "fg": 165, + "rotates": false, + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 166 }, + { "id": "corner", "fg": [ 167, 168, 169, 170 ] }, + { "id": "t_connection", "fg": [ 177, 178, 179, 180 ] }, + { "id": "edge", "fg": [ 171, 172 ] }, + { "id": "end_piece", "fg": [ 173, 174, 175, 176 ] }, + { "id": "unconnected", "fg": 181 } + ] + } ], "sprite_width": 32, "sprite_height": 32 diff --git a/data/mods/UDP_Redux/terrain.png b/data/mods/UDP_Redux/terrain.png index ad1a31d6db85..edbadccbeb3f 100644 Binary files a/data/mods/UDP_Redux/terrain.png and b/data/mods/UDP_Redux/terrain.png differ diff --git a/data/mods/default.json b/data/mods/default.json index a2a7acb97e84..68d8dad18237 100644 --- a/data/mods/default.json +++ b/data/mods/default.json @@ -5,6 +5,5 @@ "No_Rail_Stations", "no_reviving_zombies", "limit_fungal_growth", - "Item_Category_Overhaul", "udp_redux" ] diff --git a/data/mods/replacements.json b/data/mods/replacements.json index d844e1aec4d5..2e74d48d7f91 100644 --- a/data/mods/replacements.json +++ b/data/mods/replacements.json @@ -127,5 +127,9 @@ ], [ "sleepdeprivation" + ], + [ + "magiclysm", + "MagicalNights" ] ] diff --git a/data/raw/keybindings/keybindings.json b/data/raw/keybindings/keybindings.json index ea2a1c246a98..11a25fdf7ae2 100644 --- a/data/raw/keybindings/keybindings.json +++ b/data/raw/keybindings/keybindings.json @@ -744,6 +744,13 @@ "name": "Pick random world name", "bindings": [ { "input_method": "keyboard", "key": "*" } ] }, + { + "type": "keybinding", + "id": "TOGGLE_V2_SAVE_FORMAT", + "category": "WORLDGEN_CONFIRM_DIALOG", + "name": "Toggle new world save format", + "bindings": [ { "input_method": "keyboard", "key": "=" } ] + }, { "type": "keybinding", "id": "QUIT", @@ -1539,6 +1546,13 @@ "name": "Toggle safe fuel mod", "bindings": [ { "input_method": "keyboard", "key": "S" } ] }, + { + "type": "keybinding", + "id": "TOGGLE_SPRITE", + "category": "BIONICS", + "name": "Toggle sprite", + "bindings": [ { "input_method": "keyboard", "key": "H" } ] + }, { "type": "keybinding", "id": "TOGGLE_AUTO_START", diff --git a/deno.lock b/deno.lock index 047049e1187a..da4092bb9460 100644 --- a/deno.lock +++ b/deno.lock @@ -199,6 +199,21 @@ "integrity": "sha512-3IMSWgP7C5KSQqmo1wjhKrwsvXAtF33jO3QY+Uy++ia7hqvgSK6iXbbg5PbDBc1P2ZbNEDgejOrN4YooXvhwCw==" } }, + "redirects": { + "https://esm.sh/@octokit/auth-token@^5.0.0?target=denonext": "https://esm.sh/@octokit/auth-token@5.1.1?target=denonext", + "https://esm.sh/@octokit/core@^6.1.2?target=denonext": "https://esm.sh/@octokit/core@6.1.3?target=denonext", + "https://esm.sh/@octokit/endpoint@^10.0.0?target=denonext": "https://esm.sh/@octokit/endpoint@10.1.2?target=denonext", + "https://esm.sh/@octokit/graphql@^8.1.2?target=denonext": "https://esm.sh/@octokit/graphql@8.1.2?target=denonext", + "https://esm.sh/@octokit/plugin-paginate-rest@^11.0.0?target=denonext": "https://esm.sh/@octokit/plugin-paginate-rest@11.4.0?target=denonext", + "https://esm.sh/@octokit/plugin-request-log@^5.3.1?target=denonext": "https://esm.sh/@octokit/plugin-request-log@5.3.1?target=denonext", + "https://esm.sh/@octokit/plugin-rest-endpoint-methods@^13.0.0?target=denonext": "https://esm.sh/@octokit/plugin-rest-endpoint-methods@13.3.0?target=denonext", + "https://esm.sh/@octokit/request-error@^6.0.1?target=denonext": "https://esm.sh/@octokit/request-error@6.1.6?target=denonext", + "https://esm.sh/@octokit/request@^9.1.4?target=denonext": "https://esm.sh/@octokit/request@9.2.0?target=denonext", + "https://esm.sh/before-after-hook@^3.0.2?target=denonext": "https://esm.sh/before-after-hook@3.0.2?target=denonext", + "https://esm.sh/fast-content-type-parse@^2.0.0?target=denonext": "https://esm.sh/fast-content-type-parse@2.0.1?target=denonext", + "https://esm.sh/universal-user-agent@^7.0.0?target=denonext": "https://esm.sh/universal-user-agent@7.0.2?target=denonext", + "https://esm.sh/universal-user-agent@^7.0.2?target=denonext": "https://esm.sh/universal-user-agent@7.0.2?target=denonext" + }, "remote": { "https://deno.land/std@0.208.0/assert/_constants.ts": "8a9da298c26750b28b326b297316cdde860bc237533b07e1337c021379e6b2a9", "https://deno.land/std@0.208.0/assert/_diff.ts": "58e1461cc61d8eb1eacbf2a010932bf6a05b79344b02ca38095f9b805795dc48", @@ -433,7 +448,32 @@ "https://deno.land/x/zod@v3.22.4/locales/en.ts": "a7a25cd23563ccb5e0eed214d9b31846305ddbcdb9c5c8f508b108943366ab4c", "https://deno.land/x/zod@v3.22.4/mod.ts": "64e55237cb4410e17d968cd08975566059f27638ebb0b86048031b987ba251c4", "https://deno.land/x/zod@v3.22.4/types.ts": "724185522fafe43ee56a52333958764c8c8cd6ad4effa27b42651df873fc151e", - "https://esm.sh/@octokit/rest@21.0.2": "85c8a62f889aafa1c1f457ee72494c6f7380f18f17324213e454b68a5346f998", + "https://esm.sh/@octokit/auth-token@5.1.1/denonext/auth-token.mjs": "6de786cae8a6f04dbc25bd101630161afeba78ef79547bc422901549785e44de", + "https://esm.sh/@octokit/auth-token@5.1.1?target=denonext": "f91f2a94f34c49532f5dfba244c33f57983ea74d5fdb61de892b9de86c49eec8", + "https://esm.sh/@octokit/core@6.1.3/denonext/core.mjs": "27711bac5522d962bca6513035a3ab2e55c001f49e050175bb67bbedd4049535", + "https://esm.sh/@octokit/core@6.1.3?target=denonext": "48e4022a4e8ae6df3eec7b9028bfc452b113f1746c81737861b06d44c6791f03", + "https://esm.sh/@octokit/endpoint@10.1.2/denonext/endpoint.mjs": "10aa9cb55330d89ef4392f710c7f1132b30d3018d1a548af90d50837ad8d8640", + "https://esm.sh/@octokit/endpoint@10.1.2?target=denonext": "e44433015f71eb9ebf694f7e66880a96505b503e0d6f172c63267259cf7810e7", + "https://esm.sh/@octokit/graphql@8.1.2/denonext/graphql.mjs": "b49f9a77cbb6b5f46584b35e2b4a6bd8120760b7b1977c3c8a8fd36d6e3303d3", + "https://esm.sh/@octokit/graphql@8.1.2?target=denonext": "d123708beaf70d1ae37823ab97ec590c318efbb0270e42d4ba4b4268f55accd4", + "https://esm.sh/@octokit/plugin-paginate-rest@11.4.0/denonext/plugin-paginate-rest.mjs": "3bb02e7f514dee857103ceb9d922621bed80115bfe0fb1d7197a7a7cd44cfa6f", + "https://esm.sh/@octokit/plugin-paginate-rest@11.4.0?target=denonext": "b4e0d949bdd6a34257cddde0262ca67e82a158aba5bbfeb00f54e6939770c17b", + "https://esm.sh/@octokit/plugin-request-log@5.3.1/denonext/plugin-request-log.mjs": "b6437e52e0ad2bbe7d7711b81f453e4db59f73403dc34cc469b1a79da8e6cc87", + "https://esm.sh/@octokit/plugin-request-log@5.3.1?target=denonext": "1c5a95390f40dc455109c2426336d65f57a486e0368b3a75b12e94aedd0ee572", + "https://esm.sh/@octokit/plugin-rest-endpoint-methods@13.3.0/denonext/plugin-rest-endpoint-methods.mjs": "8254da50e1460596143fb2d49314f97fc0b9bae60d0259594c3a6b98bca5c266", + "https://esm.sh/@octokit/plugin-rest-endpoint-methods@13.3.0?target=denonext": "b54fb93130dea1a56de1d434e6c900793ab05281c0086129cbd60411a07039bd", + "https://esm.sh/@octokit/request-error@6.1.6/denonext/request-error.mjs": "a3bb74761fbdc7b1fbc406f0a2ace10f82f64706ffc9596a90badef765414c5e", + "https://esm.sh/@octokit/request-error@6.1.6?target=denonext": "bfebd513aea83d3df72e2f0b70f9e2dcd7aafed463c095f7388ca3dd10621e7d", + "https://esm.sh/@octokit/request@9.2.0/denonext/request.mjs": "662411deed3a6c54a960c802b24795bc8ce65649e0a941ba848fa6f68e7d0070", + "https://esm.sh/@octokit/request@9.2.0?target=denonext": "550f4054c2e0eba7174dd21aa9117e6934f3bb3d3b3c43f6d4a1471cef3a04d9", + "https://esm.sh/@octokit/rest@21.0.2": "1f10f261a877b914bf44f1860dce8a3893a817d054a9c4b8c4ac98247ff9d01e", + "https://esm.sh/@octokit/rest@21.0.2/denonext/rest.mjs": "f3bc8c213a6b4649aa12b5d608bd18f18f63fe87eeea862db7690219ed05b22b", + "https://esm.sh/before-after-hook@3.0.2/denonext/before-after-hook.mjs": "1a862839e15e4816de946c11023cbec3cb1d276e3a86073adfaac9dca6871aca", + "https://esm.sh/before-after-hook@3.0.2?target=denonext": "923592fc40b4609eac335800f88c890d81c5f5f12e0b22fd8fd0646313c634f7", + "https://esm.sh/fast-content-type-parse@2.0.1/denonext/fast-content-type-parse.mjs": "436d0ff6ce4508efcb9023892d25cc9d7eb321e9321a0d3aaf870300dc2e8578", + "https://esm.sh/fast-content-type-parse@2.0.1?target=denonext": "7170ebd0186887d73afc67050a28e5350171e5e842e82a10309e829eabdf138a", + "https://esm.sh/universal-user-agent@7.0.2/denonext/universal-user-agent.mjs": "c5370728870841e1061776d12f5776929bb04945b0f8d5e4251207eab57d35ea", + "https://esm.sh/universal-user-agent@7.0.2?target=denonext": "1c7589a3ed835be8bf13e6c78c7d507af65b7945b92edbf3ad25428e60e072f4", "https://esm.sh/v135/@octokit/auth-token@5.1.0/denonext/auth-token.mjs": "24c22015e586d621821b0acb1b5b82d32c95d1813d264ce8fa3f769ba8806e8c", "https://esm.sh/v135/@octokit/core@6.1.2/denonext/core.mjs": "2629f0f304f0a8313644ed4ddedbf1c7fbce06e80aadc6f718f6a4b4f401f9d7", "https://esm.sh/v135/@octokit/endpoint@10.0.0/denonext/endpoint.mjs": "8d6f16f0b272fc7a20582637a3ffbd29c14f4bf629fafda05c33cf214b0dd716", diff --git a/doc/src/assets/semantic.json b/doc/src/assets/semantic.json index 43969c00904f..02d44959fe46 100644 --- a/doc/src/assets/semantic.json +++ b/doc/src/assets/semantic.json @@ -56,7 +56,7 @@ "mods/generic_guns", "mods/innawoods", "mods/limit_fungal_growth", - "mods/magiclysm", + "mods/Magical_Nights", "mods/manualbionicinstall", "mods/modular_turrets", "mods/more_classes_scenarios", diff --git a/doc/src/content/docs/en/contribute/changelog_guidelines.mdx b/doc/src/content/docs/en/contribute/changelog_guidelines.mdx index 484a7bd25cbf..f276b2e496e6 100644 --- a/doc/src/content/docs/en/contribute/changelog_guidelines.mdx +++ b/doc/src/content/docs/en/contribute/changelog_guidelines.mdx @@ -137,7 +137,7 @@ fix(UI, i18n): recipe names not translated unless learned Example PR title: ``` -feat(mods/magiclysm, content): add missing owlbear pelts recipe +feat(mods/Magical_Nights, content): add missing owlbear pelts recipe fix(mods/no_hope): No Hope doesn't make the world freezing ``` diff --git a/doc/src/content/docs/en/dev/guides/building/atomic_cmake.md b/doc/src/content/docs/en/dev/guides/building/atomic_cmake.md index 3452927a232f..a63bcdf76f1f 100644 --- a/doc/src/content/docs/en/dev/guides/building/atomic_cmake.md +++ b/doc/src/content/docs/en/dev/guides/building/atomic_cmake.md @@ -59,7 +59,8 @@ installation script. For Bazzite, that script looks like: ```sh $ sudo dnf install git cmake clang ninja-build mold ccache \ SDL2-devel SDL2_image-devel SDL2_ttf-devel SDL2_mixer-devel \ - freetype glibc bzip2 zlib-ng libvorbis ncurses gettext flac-devel + freetype glibc bzip2 zlib-ng libvorbis ncurses gettext flac-devel \ + sqlite-devel zlib-devel ``` After this, your container is set up for all your building needs in the future! Now, onto the steps diff --git a/doc/src/content/docs/en/dev/guides/building/cmake.md b/doc/src/content/docs/en/dev/guides/building/cmake.md index 154e89a385ba..c7b039324fb7 100644 --- a/doc/src/content/docs/en/dev/guides/building/cmake.md +++ b/doc/src/content/docs/en/dev/guides/building/cmake.md @@ -21,6 +21,7 @@ CataclysmBN: - `glibc` - `zlib` - `bzip2` + - `sqlite3` - Curses - `ncurses` - Tiles @@ -50,7 +51,8 @@ Obtain packages specified above with your system package manager. ```sh $ sudo apt install git cmake ninja-build mold clang ccache \ libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libsdl2-mixer-dev \ - freetype glibc bzip2 zlib libvorbis ncurses gettext libflac++-dev + freetype glibc bzip2 zlib libvorbis ncurses gettext libflac++-dev \ + libsqlite3-dev zlib1g-dev ``` - For Fedora-based distros: @@ -58,7 +60,8 @@ $ sudo apt install git cmake ninja-build mold clang ccache \ ```sh $ sudo dnf install git cmake ninja-build mold clang ccache \ SDL2-devel SDL2_image-devel SDL2_ttf-devel SDL2_mixer-devel \ - freetype glibc bzip2 zlib-ng libvorbis ncurses gettext flac-devel + freetype glibc bzip2 zlib-ng libvorbis ncurses gettext flac-devel \ + sqlite-devel zlib-devel ``` ### Windows Environment (MSYS2) diff --git a/doc/src/content/docs/en/dev/guides/building/makefile.md b/doc/src/content/docs/en/dev/guides/building/makefile.md index a2014888e025..e1cef695202c 100644 --- a/doc/src/content/docs/en/dev/guides/building/makefile.md +++ b/doc/src/content/docs/en/dev/guides/building/makefile.md @@ -58,7 +58,7 @@ your distro packages libraries and their development files separately (e.g. Debi Rough list based on building on Arch: -- General: `gcc-libs`, `glibc`, `zlib`, `bzip2` +- General: `gcc-libs`, `glibc`, `zlib`, `bzip2`, `sqlite3` - Optional: `intltool` - Curses: `ncurses` - Tiles: `sdl2`, `sdl2_image`, `sdl2_ttf`, `sdl2_mixer`, `freetype2` @@ -137,7 +137,7 @@ Dependencies: Install: ```sh -sudo apt-get install libncurses5-dev libncursesw5-dev build-essential astyle +sudo apt-get install libncurses5-dev libncursesw5-dev build-essential astyle libsqlite3-dev zlib1g-dev ``` ### Building @@ -459,6 +459,33 @@ To build a debug APK and immediately deploy to your connected device over adb ru To build a signed release APK (ie. one that can be installed on a device), [build an unsigned release APK and sign it manually](https://developer.android.com/studio/publish/app-signing#signing-manually). +### Triggering a Nightly Build in a Github Fork + +To successfully build an Android APK using a nightly build in your own Github fork, you will need to +initialize a set of dummy Android signing keys. This is necessary because the Github Actions +workflow requires a set of keys to sign the APKs with. + +1. Make up a >6 character password. Remember it and save it into github secrets as + `KEYSTORE_PASSWORD` +2. Create a key via + `keytool -genkey -v -keystore release.keystore -keyalg RSA -keysize 2048 -validity 10000 -alias dummy-key`. + When asked for a password, use the password from above. +3. Create a file called `keystore.properties.asc` with the following contents: + +```text +storeFile=release.keystore +storePassword= +keyAlias=dummy-key +keyPassword= +``` + +4. Encrypt `release.keystore` using the password from step 1 using + `gpg --symmetric --cipher-algo AES256 --armor release.keystore`. Save the result into github + secrets as `KEYSTORE` +5. Encrypt `keystore.properties` using the password from step 1 using + `gpg --symmetric --cipher-algo AES256 --armor keystore.properties`. Save the result into github + secrets as `KEYSTORE_PROPERTIES` + ### Additional notes The app stores data files on the device in diff --git a/doc/src/content/docs/en/dev/reference/tooling.md b/doc/src/content/docs/en/dev/reference/tooling.md index 2a8129cc6246..fcc01a86e4b5 100644 --- a/doc/src/content/docs/en/dev/reference/tooling.md +++ b/doc/src/content/docs/en/dev/reference/tooling.md @@ -144,8 +144,8 @@ command-line. ## Custom clang-tidy plugin We have written our own clang-tidy checks in a custom plugin. refer to -[clang-tidy.yml](/.github/workflows/clang-tidy.yml) for the exact steps to build the plugin on -ubuntu 24.04. +[clang-tidy.yml](https://github.com/cataclysmbnteam/Cataclysm-BN/blob/main/.github/workflows/clang-tidy.yml) +for the exact steps to build the plugin on ubuntu 24.04. ### Build plugin on Ubuntu 24.04 diff --git a/doc/src/content/docs/en/mod/json/reference/creatures/magic.md b/doc/src/content/docs/en/mod/json/reference/creatures/magic.md index 051aea5406c8..7dd30d728edf 100644 --- a/doc/src/content/docs/en/mod/json/reference/creatures/magic.md +++ b/doc/src/content/docs/en/mod/json/reference/creatures/magic.md @@ -225,17 +225,19 @@ experience you need to get to a level is below: valid target within range instead of the caster choosing the target. This also affects extra_effects. -##### For Spells that have an attack type, these are the available damage types: +##### For Spells that have an attack type, these are the available damage types (case-insensitive): - `fire` - `acid` - `bash` +- `bullet` - `bio` - internal damage such as poison - `cold` - `cut` - `electric` - `stab` -- `none` - this damage type goes through armor altogether. it is the default. +- `true` - this damage type goes through armor altogether, and thus is very powerful. It is the + default damage type when unspecified. #### Spells that level up @@ -370,7 +372,12 @@ Values: - `ALWAYS` (default) - Always active - `UNDERGROUND` - When the owner of the item is below Z-level 0 +- `ABOVEGROUND` - When the owner of the item is at or above Z-level 0 - `UNDERWATER` - When the owner is in swimmable terrain +- `NIGHT` - When it is night time +- `DUSK` - When it is dusk +- `DAY` - When it is day time +- `DAWN` - When it is dawn - `ACTIVE` - whenever the item, mutation, bionic, or whatever the enchantment is attached to is active. diff --git a/doc/src/content/docs/en/mod/json/reference/creatures/monsters.md b/doc/src/content/docs/en/mod/json/reference/creatures/monsters.md index fa32a2afc808..184acc03f23f 100644 --- a/doc/src/content/docs/en/mod/json/reference/creatures/monsters.md +++ b/doc/src/content/docs/en/mod/json/reference/creatures/monsters.md @@ -218,6 +218,14 @@ hostility on detection) Monster morale. Defines how low monster HP can get before it retreats. This number is treated as % of their max HP. +## "aggro_character" + +(bool, optional, default true) + +If the monster will differentiate between monsters and characters (NPC, Player) when deciding on +targets - if false the monster will ignore characters regardless of current anger/morale until a +character trips and anger trigger. Resets randomly when the monster is at its base anger level. + ## "speed" (integer) diff --git a/doc/src/content/docs/en/mod/json/reference/json_flags.md b/doc/src/content/docs/en/mod/json/reference/json_flags.md index c423df3c07da..f3ff937630d1 100644 --- a/doc/src/content/docs/en/mod/json/reference/json_flags.md +++ b/doc/src/content/docs/en/mod/json/reference/json_flags.md @@ -518,6 +518,9 @@ List of known flags, used in both `terrain.json` and `furniture.json`. | O ``` +- `ADV_DECONSTRUCT` This cannot be deconstructed using normal deconstruction; a specially-defined + construction action is necessary. Most of these fall under the "`advanced_object_deconstruction`" + group. - `BARRICADABLE_DOOR_DAMAGED` - `BARRICADABLE_DOOR_REINFORCED_DAMAGED` - `BARRICADABLE_DOOR_REINFORCED` @@ -937,12 +940,13 @@ Flags used to describe monsters and define their properties and abilities. ### Anger, Fear and Placation Triggers - `FIRE` There's a fire nearby. -- `FRIEND_ATTACKED` A monster of the same type was attacked. -- `FRIEND_DIED` A monster of the same type died. -- `HURT` The monster is hurt. +- `FRIEND_ATTACKED` A monster of the same type was attacked. Always triggers character aggro. +- `FRIEND_DIED` A monster of the same type died. Always triggers character aggro. +- `HURT` The monster is hurt. Always triggers character aggro. - `MEAT` Meat or a corpse is nearby. - `NULL` Source use only? -- `PLAYER_CLOSE` The player gets within a few tiles distance. +- `PLAYER_CLOSE` The player gets within a few tiles distance. Triggers character aggro `%` of + the time. - `PLAYER_WEAK` The player is hurt. - `SOUND` Heard a sound. - `STALK` Increases when following the player. @@ -1654,6 +1658,8 @@ Those flags are added by the game code to specific items (that specific welder, - `SEAT` A seat where the player can sit or sleep. - `SEATBELT` Helps prevent the player from being ejected from the vehicle during an accident. Can only be installed on a part with `BELTABLE` flag. +- `SEAT_REQUIRES_BALANCE` The player may fall off once they run into something determined by a + strength roll. TRAIT_DEFT and TRAIT_PROF_SKATER makes it harder to be thrown from vehicle. - `SECURITY` - `SHARP` Striking a monster with this part does cutting damage instead of bashing damage, and prevents stunning the monster. diff --git a/doc/src/content/docs/en/mod/json/reference/json_info.md b/doc/src/content/docs/en/mod/json/reference/json_info.md index 1e9b027986a7..3ef26bb758c7 100644 --- a/doc/src/content/docs/en/mod/json/reference/json_info.md +++ b/doc/src/content/docs/en/mod/json/reference/json_info.md @@ -1982,7 +1982,7 @@ Gun mods can be defined like this: "install_time": "30 s", // Optional time installation takes. Installation is instantaneous if unspecified. An integer will be read as moves or a time string can be used. "ammo_modifier": [ "57" ], // Optional field which if specified modifies parent gun to use these ammo types "magazine_adaptor": [ [ "223", [ "stanag30" ] ] ], // Optional field which changes the types of magazines the parent gun accepts -"burst_modifier": 3, // Optional field increasing or decreasing base gun burst size +"mode_modifier": [ [ "AUTO", "auto", 5 ] ] // Optional field which adds new firing modes to a weapon "damage_modifier": -1, // Optional field increasing or decreasing base gun damage "dispersion_modifier": 15, // Optional field increasing or decreasing base gun dispersion "loudness_modifier": 4, // Optional field increasing or decreasing base guns loudness @@ -3422,9 +3422,9 @@ The following actions are available as defined in trapfunc.cpp: processed as the mapgen update could just as easily remove the trap, change it to something else, or do any number of things that would otherwise disrupt the trap cleanup function. - `drain` - Deals a tiny amount of damage to the target, ignores armor and immunities. -- `cast_spell` - Casts the spell specified by the trap's `spell_data`, centered on whatever set it - off. Note that the spell used generally requires a `min_aoe` defined to work successfully, and not - all spell effects can be expected to work properly with this. +- `spell` - Casts the spell specified by the trap's `spell_data`, centered on whatever set it off. + Note that the spell used generally requires a `min_aoe` defined to work successfully, and not all + spell effects can be expected to work properly with this. - `snake` - Similar to `shadow` trap effect, summons shadow snakes nearby. Main difference is NPCs and monsters are capable of setting it off. diff --git a/lang/po/ar.po b/lang/po/ar.po index 0d30bc2980c1..dc2752b1799f 100644 --- a/lang/po/ar.po +++ b/lang/po/ar.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2023\n" "Language-Team: Arabic (https://app.transifex.com/bn-team/teams/113585/ar/)\n" "MIME-Version: 1.0\n" @@ -7623,6 +7623,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10942,7 +10953,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11390,75 +11401,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11472,51 +11499,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12259,12 +12324,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12306,6 +12371,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12763,7 +12999,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12798,7 +13034,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12835,7 +13071,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -13008,7 +13244,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13126,7 +13362,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13201,7 +13437,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13383,7 +13619,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14568,7 +14804,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14577,22 +14813,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14605,7 +14841,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14617,7 +14853,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14630,7 +14866,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14648,7 +14884,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14657,12 +14893,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14722,7 +14958,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15149,7 +15385,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19488,12 +19724,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19518,18 +19754,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19538,7 +19774,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19546,12 +19782,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19576,18 +19812,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19595,19 +19831,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19630,12 +19866,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20392,15 +20628,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20408,7 +20644,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20416,6 +20652,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27741,7 +28005,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27862,7 +28125,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27936,7 +28198,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27961,7 +28222,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27973,7 +28233,6 @@ msgstr[5] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27985,7 +28244,6 @@ msgstr[5] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -28008,8 +28266,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -28046,7 +28303,6 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -28057,7 +28313,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -28108,7 +28363,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -28130,7 +28384,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -28179,7 +28432,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -28195,7 +28447,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -28207,7 +28458,6 @@ msgstr[5] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -28223,7 +28473,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28592,7 +28841,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28638,6 +28888,23 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28723,7 +28990,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28753,7 +29021,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -29107,7 +29376,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -29224,8 +29492,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29494,7 +29763,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29522,7 +29791,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29665,7 +29934,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29729,7 +29997,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -30068,7 +30335,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -30155,7 +30422,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -30182,7 +30449,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -30351,7 +30618,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30688,7 +30955,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30705,7 +30972,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30722,7 +30988,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30741,7 +31006,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30767,7 +31031,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30937,7 +31200,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31830,7 +32092,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -32254,7 +32515,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -32404,7 +32664,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -32433,7 +32692,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32994,9 +33252,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -33034,7 +33304,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -33054,7 +33323,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -33556,7 +33824,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -33575,7 +33842,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33595,7 +33861,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33669,7 +33934,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33711,7 +33975,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -35214,7 +35477,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -35616,7 +35879,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35876,7 +36138,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -37533,7 +37794,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -38174,7 +38434,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -39211,7 +39470,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "" @@ -40133,7 +40391,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -40314,6 +40571,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -40393,7 +40686,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "إذا كنت ترى هذا فإنه خلل." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -40409,7 +40701,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -40425,7 +40716,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -40441,7 +40731,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -40472,7 +40761,6 @@ msgid "A cleansing agent made into bars." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -40488,7 +40776,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -40504,7 +40791,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -40567,7 +40853,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40896,7 +41181,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40957,7 +41241,6 @@ msgid "" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -41243,7 +41526,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "" @@ -41289,7 +41571,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -41674,7 +41955,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -44257,7 +44537,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "" @@ -44275,7 +44554,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -44294,7 +44572,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -44313,7 +44590,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -44340,7 +44616,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "" @@ -44375,7 +44650,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -44391,7 +44665,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -44409,7 +44682,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -44892,7 +45164,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -44910,7 +45181,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -45381,7 +45651,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -45446,7 +45715,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -47540,7 +47808,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -47557,7 +47824,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -47757,7 +48023,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -47773,7 +48038,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -47789,7 +48053,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -47805,7 +48068,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -47821,7 +48083,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -47837,7 +48098,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -47853,7 +48113,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -47896,7 +48155,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "" @@ -47914,7 +48172,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -47930,7 +48187,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -47969,7 +48225,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -47988,7 +48243,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -48006,7 +48260,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -48025,7 +48278,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -48126,7 +48378,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -48142,7 +48393,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -48160,7 +48410,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -48179,7 +48428,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -48246,7 +48494,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -48265,7 +48512,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -48283,7 +48529,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -48299,7 +48544,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -48318,7 +48562,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -48395,7 +48638,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -48463,7 +48705,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -48479,7 +48720,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -48496,7 +48736,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -48512,7 +48751,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -48564,7 +48802,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -48580,7 +48817,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -48598,7 +48834,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -48613,9 +48848,7 @@ msgstr[5] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -48633,9 +48866,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -48653,7 +48884,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -48671,7 +48901,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -48689,7 +48918,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -48707,7 +48935,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -48732,7 +48959,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -48750,7 +48976,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -48768,7 +48993,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -48785,9 +49009,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -48806,7 +49028,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -48824,7 +49045,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" @@ -48835,7 +49055,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" @@ -48846,7 +49065,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -48865,7 +49083,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -48884,9 +49101,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -48905,9 +49120,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -48925,9 +49138,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -48945,9 +49156,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -48965,9 +49174,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -48985,9 +49192,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -49005,9 +49210,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -49061,7 +49264,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -49077,7 +49279,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -49093,7 +49294,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -49109,7 +49309,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -49127,7 +49326,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -49145,7 +49343,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -49163,7 +49360,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -49181,7 +49377,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -49199,7 +49394,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -49218,7 +49412,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -49237,7 +49430,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -49255,7 +49447,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -49312,7 +49503,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -49328,7 +49518,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -49346,7 +49535,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -49364,7 +49552,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -49398,7 +49585,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -49414,7 +49600,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -49449,7 +49634,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -49490,7 +49674,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -49509,7 +49692,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -49541,7 +49723,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -49557,7 +49738,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -49576,7 +49756,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -49595,7 +49774,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -49635,7 +49813,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -49653,7 +49830,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -49695,7 +49871,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -49712,7 +49887,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" @@ -49723,7 +49897,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -49741,7 +49914,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -49757,7 +49929,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -49773,7 +49944,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -49789,7 +49959,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -49817,7 +49986,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -49835,7 +50003,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -49853,7 +50020,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -49869,7 +50035,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -49885,7 +50050,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -49903,7 +50067,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -49919,7 +50082,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -49935,7 +50097,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -49951,7 +50112,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -49967,7 +50127,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -49983,7 +50142,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -49999,7 +50157,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -50015,7 +50172,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -50031,7 +50187,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -50047,7 +50202,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -50063,7 +50217,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -50079,7 +50232,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -50095,7 +50247,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -50111,7 +50262,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -50127,7 +50277,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -50146,7 +50295,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -50197,7 +50345,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -50213,7 +50360,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -50231,7 +50377,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -50247,7 +50392,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -50271,7 +50415,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -50334,7 +50477,7 @@ msgstr[5] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -50478,7 +50621,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -50514,7 +50656,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -50530,7 +50671,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -50546,7 +50686,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -50562,7 +50701,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -50581,7 +50719,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -50600,7 +50737,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -50619,7 +50755,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -50689,7 +50824,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -50720,7 +50854,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -50736,7 +50869,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -50915,7 +51047,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -50932,9 +51063,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -50951,9 +51080,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -50970,9 +51097,8 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" @@ -50983,7 +51109,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -51001,7 +51126,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -51021,7 +51145,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -51095,7 +51218,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -51106,7 +51228,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -51117,7 +51238,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -51355,7 +51475,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -51549,7 +51668,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -51567,7 +51685,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -51585,7 +51702,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -51603,7 +51719,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -51619,7 +51734,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -51637,7 +51751,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -51655,7 +51768,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -51673,7 +51785,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -51689,7 +51800,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -51705,7 +51815,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -52324,7 +52433,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -52340,7 +52448,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -52356,7 +52463,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -52372,7 +52478,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -52388,7 +52493,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -52404,7 +52508,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -52420,7 +52523,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -52436,7 +52538,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -52455,7 +52556,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -53236,7 +53336,7 @@ msgstr[5] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -53273,7 +53373,7 @@ msgstr[5] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -57870,7 +57970,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -58635,7 +58734,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -58652,7 +58752,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -58669,7 +58770,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -58687,7 +58789,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -59330,7 +59433,7 @@ msgstr[5] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -59643,7 +59746,7 @@ msgstr[5] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -59653,14 +59756,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -63006,7 +63109,7 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -73279,7 +73382,7 @@ msgstr[5] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -83169,8 +83272,8 @@ msgstr[5] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -83375,7 +83478,7 @@ msgstr[5] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -83402,7 +83505,7 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -85794,8 +85897,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -85807,7 +85909,6 @@ msgstr[5] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -86065,8 +86166,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -100368,6 +100468,24 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -105953,7 +106071,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -105971,7 +106088,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -106025,7 +106141,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -106064,7 +106179,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -106082,7 +106196,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -106905,7 +107018,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -106921,7 +107033,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -106937,7 +107048,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -106953,7 +107063,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -107038,7 +107147,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -107054,7 +107162,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -107072,7 +107179,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -107088,7 +107194,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -107104,7 +107209,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -107122,7 +107226,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -107170,7 +107273,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -107217,7 +107319,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -107263,7 +107364,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -107279,7 +107379,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -107296,7 +107395,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -107314,7 +107412,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -107332,7 +107429,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -107350,7 +107446,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -107371,7 +107466,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -107388,7 +107482,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -107405,7 +107498,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -107423,7 +107515,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -107441,7 +107532,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -107459,7 +107549,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -107884,7 +107973,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -107900,7 +107988,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "" @@ -109536,7 +109623,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -113336,7 +113423,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -113735,7 +113822,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -113957,7 +114044,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -114111,7 +114198,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -119526,7 +119613,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -119537,7 +119623,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -119555,7 +119640,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -119573,7 +119657,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -119591,7 +119674,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -119611,7 +119693,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -119630,7 +119711,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -119649,7 +119729,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -119668,7 +119747,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -124130,7 +124208,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -124148,7 +124225,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -124173,7 +124249,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -124190,7 +124265,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -124207,7 +124281,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -124337,7 +124410,6 @@ msgid "A roll of purple carpet." msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -124355,7 +124427,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -124371,7 +124442,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -124388,7 +124458,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -124407,7 +124476,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -124425,7 +124493,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -124443,7 +124510,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -124462,7 +124528,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -124478,7 +124543,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -124497,7 +124561,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" @@ -124508,7 +124571,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -124528,7 +124590,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "" @@ -124546,7 +124607,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -124564,7 +124624,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "" @@ -124582,7 +124641,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -124598,7 +124656,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -124616,7 +124673,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -124632,7 +124688,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -124650,7 +124705,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -124666,7 +124720,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -124684,7 +124737,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -124732,7 +124784,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -124809,7 +124860,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -124898,7 +124948,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -124934,7 +124983,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -124953,8 +125001,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -124972,7 +125018,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -124990,7 +125035,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -125008,7 +125052,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -125026,7 +125069,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -125042,7 +125084,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -125058,7 +125099,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -125076,7 +125116,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -125093,8 +125132,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -125113,7 +125151,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -125132,7 +125169,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -125152,7 +125188,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -125171,7 +125206,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -125219,7 +125253,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -125240,7 +125273,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -125274,7 +125306,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -125292,7 +125323,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -125340,7 +125370,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -125360,7 +125389,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -125378,7 +125406,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -125396,7 +125423,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -125412,7 +125438,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -125428,7 +125453,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -125444,7 +125468,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -125463,7 +125486,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -125481,7 +125503,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -125511,7 +125532,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -125529,7 +125549,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -125631,7 +125650,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -125649,7 +125667,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -125684,7 +125701,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -125776,7 +125792,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -125794,7 +125809,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -125813,7 +125827,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -125832,7 +125845,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -125853,7 +125865,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -125873,7 +125884,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -125910,7 +125920,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -125928,7 +125937,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -125946,7 +125954,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -125976,7 +125983,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -125994,7 +126000,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -126013,7 +126018,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -126029,7 +126033,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -126093,7 +126096,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -126112,7 +126114,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -126128,7 +126129,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -126146,7 +126146,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -126239,7 +126238,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -126259,6 +126257,26 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -126267,7 +126285,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -126320,7 +126337,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -126357,7 +126373,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -126377,7 +126392,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -126396,7 +126410,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -126418,7 +126431,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -126450,7 +126462,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -126469,7 +126480,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -126488,7 +126498,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -126523,7 +126532,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -126541,9 +126549,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -126564,7 +126570,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -126584,7 +126589,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -126605,7 +126609,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -126645,7 +126648,6 @@ msgstr[4] "" msgstr[5] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -126684,7 +126686,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -126723,7 +126724,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -126743,7 +126743,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -126837,7 +126836,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -126855,7 +126853,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -126883,7 +126880,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -126902,7 +126898,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -126921,7 +126916,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -126942,7 +126936,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -126963,7 +126956,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -126982,7 +126974,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -127002,7 +126993,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -128207,7 +128197,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -128225,7 +128214,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -128245,7 +128233,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -128265,7 +128252,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -128284,7 +128270,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -128303,7 +128288,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -128322,7 +128306,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -128342,7 +128325,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -128385,7 +128367,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -128419,7 +128400,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -128464,7 +128444,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -128500,7 +128479,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -128518,7 +128496,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -128590,7 +128567,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -128608,7 +128584,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -128647,7 +128622,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -128663,7 +128637,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -128679,7 +128652,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -128697,7 +128669,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -128715,7 +128686,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -128733,7 +128703,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -128755,7 +128724,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -128790,7 +128758,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -128826,7 +128793,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -128844,7 +128810,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -128903,7 +128868,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -128921,7 +128885,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -128938,7 +128901,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -128956,7 +128918,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -128998,7 +128959,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -129017,7 +128977,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -129050,7 +129009,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -129069,7 +129027,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -129120,7 +129077,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -129146,7 +129102,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -129174,7 +129129,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -129187,7 +129141,7 @@ msgstr[5] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -129202,7 +129156,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -129217,7 +129170,7 @@ msgstr[5] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -129277,7 +129230,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -129328,7 +129280,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -129526,7 +129477,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -129700,7 +129650,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -129750,7 +129699,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -129815,7 +129763,7 @@ msgstr[5] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -129823,7 +129771,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -129839,7 +129787,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -129851,7 +129799,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -129936,7 +129883,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -129991,7 +129937,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -130028,7 +129973,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -130044,7 +129988,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -130078,7 +130021,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -130097,7 +130039,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -130134,7 +130075,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -130152,7 +130092,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -130171,7 +130110,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -130197,7 +130135,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -130215,7 +130152,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -130233,7 +130169,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -130251,7 +130186,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -130272,7 +130206,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -130312,7 +130245,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -130357,7 +130289,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -130375,7 +130306,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -130421,7 +130351,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -130589,7 +130518,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -130639,7 +130567,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -130663,7 +130590,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -130697,7 +130623,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -130765,7 +130690,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -130806,7 +130730,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -130925,7 +130848,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -130984,7 +130906,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -131192,7 +131113,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -131367,7 +131287,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -131386,7 +131305,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -131405,7 +131323,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -131421,7 +131338,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -131437,7 +131353,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -131455,7 +131370,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -131473,7 +131387,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -131491,7 +131404,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -131542,7 +131454,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -131561,7 +131472,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -131611,7 +131521,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -131646,7 +131555,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -131664,7 +131572,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -131744,7 +131651,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -131766,7 +131672,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -131800,7 +131705,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -131819,7 +131723,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -131838,7 +131741,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -131874,7 +131776,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -131892,7 +131793,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -131908,7 +131808,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -131926,7 +131825,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -131944,7 +131842,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -132008,7 +131905,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -132027,7 +131923,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -132048,7 +131943,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -132066,7 +131960,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -132084,7 +131977,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -132103,7 +131995,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -132123,7 +132014,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -132145,7 +132035,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -132166,7 +132055,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -132184,7 +132072,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -132219,7 +132106,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -132239,7 +132125,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -132260,7 +132145,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -132282,7 +132166,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -132304,7 +132187,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -132328,7 +132210,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -132349,7 +132230,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -132422,7 +132302,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -132440,7 +132319,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -132456,7 +132334,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -132542,7 +132419,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -132558,7 +132434,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -132574,7 +132449,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -132593,7 +132467,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -132609,7 +132482,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -132628,7 +132500,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -132646,7 +132517,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -132665,7 +132535,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -132692,7 +132561,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -132712,8 +132580,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -132751,8 +132618,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -132772,7 +132638,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -132788,7 +132653,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -132804,7 +132668,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -132857,7 +132720,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -132891,7 +132753,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -132941,7 +132802,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -132959,7 +132819,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -133001,7 +132860,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -133025,7 +132883,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -133074,7 +132931,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -133097,7 +132953,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -133154,7 +133009,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -133186,7 +133040,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -133224,7 +133077,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -133249,7 +133101,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -133284,7 +133135,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -133329,7 +133179,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -133379,7 +133228,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -133414,7 +133262,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -133545,7 +133392,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -133561,7 +133407,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -133573,7 +133418,6 @@ msgstr[5] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -133746,7 +133590,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -133764,7 +133607,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -133782,7 +133624,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -133800,7 +133641,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -133819,7 +133659,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -133835,7 +133674,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -133853,7 +133691,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -133872,7 +133709,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -133890,7 +133726,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -133907,7 +133742,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -133925,7 +133759,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -133944,7 +133777,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -133978,7 +133810,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -134015,7 +133846,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -134033,7 +133863,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -134051,7 +133880,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -134067,7 +133895,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -134085,7 +133912,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -134101,7 +133927,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -134120,7 +133945,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -134138,7 +133962,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -134158,7 +133981,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -134177,7 +133999,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -134195,7 +134016,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -134213,7 +134033,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -134231,7 +134050,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -134270,7 +134088,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -134288,7 +134105,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -134306,7 +134122,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -134327,7 +134142,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -134343,7 +134157,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -134361,7 +134174,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -134379,7 +134191,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -134398,7 +134209,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -134433,7 +134243,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -134451,7 +134260,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -134469,7 +134277,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -134488,7 +134295,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -134526,7 +134332,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -134544,7 +134349,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -134581,7 +134385,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -134599,7 +134402,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -134617,7 +134419,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -134635,7 +134436,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -134655,7 +134455,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -134673,7 +134472,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -134692,7 +134490,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -136314,6 +136111,21 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -136747,7 +136559,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -137291,6 +137102,17 @@ msgstr[5] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -137710,6 +137532,38 @@ msgstr[5] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -138604,13 +138458,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -138930,13 +138777,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -139490,7 +139330,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -139514,7 +139354,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -144481,7 +144321,7 @@ msgstr[5] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -144493,7 +144333,7 @@ msgstr[5] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -155117,9 +154957,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -155852,9 +155692,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -155870,9 +155710,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -155900,25 +155740,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -155938,9 +155778,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -162177,7 +162017,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -171844,17 +171684,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -173054,7 +172894,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -178753,9 +178593,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -189070,7 +188910,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -189438,7 +189277,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -189460,7 +189299,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -192213,7 +192051,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -192260,7 +192097,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -192385,6 +192222,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -192398,7 +192242,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -192439,7 +192283,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -202176,7 +202020,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -202255,6 +202099,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -203973,6 +203824,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -204042,7 +203911,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -204110,6 +203979,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -204255,7 +204128,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -204598,7 +204471,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -212192,7 +212064,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -212200,8 +212072,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -213325,9 +213197,9 @@ msgstr[5] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -213344,7 +213216,7 @@ msgstr[5] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -234316,74 +234188,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -234393,177 +234197,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -235816,9 +235449,10 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -235826,109 +235460,127 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -235936,38 +235588,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -235978,95 +235631,105 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -236077,24 +235740,81 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -236102,25 +235822,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -236128,25 +235848,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -236154,7 +235874,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -236162,7 +235882,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -236172,7 +235892,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -236182,7 +235902,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -236192,7 +235912,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -236202,7 +235922,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -236211,7 +235931,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -236220,7 +235940,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -236230,7 +235950,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -236239,18 +235959,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -236259,7 +235979,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -236267,18 +235987,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -236288,7 +236008,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -236297,18 +236017,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -236316,25 +236036,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -236342,59 +236062,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -236403,7 +236155,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -236412,25 +236164,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -236442,7 +236194,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -236453,25 +236205,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -236481,7 +236233,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -236491,12 +236243,12 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" @@ -236506,7 +236258,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" @@ -236516,7 +236268,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" @@ -236526,7 +236278,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" @@ -236536,559 +236288,615 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -237100,245 +236908,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -237346,487 +237127,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -237837,321 +237638,365 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -238159,20 +238004,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -238180,74 +238025,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -238255,21 +238100,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -238277,105 +238122,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -238383,16 +238252,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -238400,74 +238269,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -238475,350 +238344,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -238829,7 +238698,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -238837,7 +238706,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -238848,58 +238717,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" @@ -238910,13 +238734,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" @@ -238927,13 +238751,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" @@ -238944,13 +238768,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -238961,68 +238785,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -239033,14 +238802,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" @@ -239051,13 +238820,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -239069,49 +238838,13 @@ msgstr[5] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -239122,14 +238855,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" @@ -239140,15 +238873,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -239159,13 +238891,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" @@ -239175,8 +238907,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" @@ -239186,8 +238918,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" @@ -239197,11 +238929,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" @@ -239211,7 +238943,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -239219,14 +238951,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -239238,13 +238970,13 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" @@ -239255,13 +238987,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" @@ -239272,13 +239004,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -239290,13 +239022,13 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -239308,13 +239040,13 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -239326,13 +239058,13 @@ msgstr[5] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -239343,41 +239075,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -239388,13 +239092,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" @@ -239405,14 +239109,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -239423,24 +239127,24 @@ msgstr[4] "" msgstr[5] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -239451,13 +239155,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -239469,12 +239173,12 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -239486,12 +239190,12 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" @@ -239502,13 +239206,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" @@ -239519,13 +239223,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" @@ -239536,14 +239240,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" @@ -239554,14 +239258,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -239573,13 +239277,13 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" @@ -239589,7 +239293,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -239601,13 +239305,13 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -239619,13 +239323,13 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -239637,13 +239341,13 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -239655,14 +239359,14 @@ msgstr[5] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" @@ -239673,14 +239377,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" @@ -239691,14 +239395,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" @@ -239709,14 +239413,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" @@ -239727,14 +239431,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -239746,12 +239450,12 @@ msgstr[5] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -239759,7 +239463,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -239770,13 +239474,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -239787,52 +239491,15 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer rune" +msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239840,17 +239507,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Biomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." +"This magical pebble has an insignia of rended flesh and bones on it. It is " +"necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer rune" +msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239858,17 +239524,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Technomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." +"This magical pebble has an insignia of clockwork and gears on it. It is " +"necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus rune" +msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239876,17 +239541,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." +"This magical pebble has an insignia of crystal and mana orbs on it. It is " +"necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper rune" +msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239894,17 +239558,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Earthshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." +"This magical pebble has an insignia of steel and rocks on it. It is " +"necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist rune" +msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239912,17 +239575,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Kelvinist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of ice and flames on it. It is " +"necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper rune" +msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239930,18 +239592,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Stormshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." +"This magical pebble has an insignia of lightning and storm clouds on it. It" +" is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid rune" +msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239949,17 +239609,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Druid rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of nature and trees on it. It is " +"necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist rune" +msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239967,18 +239626,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Animist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." +"This magical pebble has an insignia of summoners on it. It is necessary for" +" Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" +#: data/mods/Magical_Nights/items/class_items.json +msgid "alchemist rune" +msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -239986,19 +239643,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'alchemist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." +"This magical pebble has an insignia of alchemy and potions on it. While " +"versatile in use, the lack of attunement to any school prevents creation of " +"more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Biomancer rune" -msgid_plural "Biomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240006,16 +239661,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of rended flesh and bones on it. It is " -"necessary for Biomancers to channel magic into their crafts." +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Technomancer rune" -msgid_plural "Technomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240023,16 +239678,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of clockwork and gears on it. It is " -"necessary for Technomancers to channel magic into their crafts." +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Magus rune" -msgid_plural "Magi runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240040,16 +239696,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of crystal and mana orbs on it. It is " -"necessary for Magi to channel magic into their crafts." +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Earthshaper rune" -msgid_plural "Earthshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240057,16 +239714,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of steel and rocks on it. It is " -"necessary for Earthshapers to channel magic into their crafts." +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Kelvinist rune" -msgid_plural "Kelvinist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240074,16 +239731,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of ice and flames on it. It is " -"necessary for Kelvinists to channel magic into their crafts." +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Stormshaper rune" -msgid_plural "Stormshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240091,16 +239748,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of lightning and storm clouds on it. It" -" is necessary for Stormshapers to channel magic into their crafts." +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Druid rune" -msgid_plural "Druid runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240108,16 +239765,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of nature and trees on it. It is " -"necessary for Druids to channel magic into their crafts." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Animist rune" -msgid_plural "Animist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240125,16 +239782,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of summoners on it. It is necessary for" -" Animists to channel magic into their crafts." +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "alchemist rune" -msgid_plural "alchemist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240142,15 +239798,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of alchemy and potions on it. While " -"versatile in use, the lack of attunement to any school prevents creation of " -"more advanced recipes." +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" @@ -240161,7 +239818,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -240170,7 +239827,7 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" @@ -240181,11 +239838,11 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" @@ -240196,12 +239853,12 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" @@ -240212,14 +239869,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" @@ -240230,12 +239887,12 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" @@ -240246,13 +239903,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" @@ -240263,14 +239920,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -240281,13 +239938,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -240298,13 +239955,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -240315,13 +239972,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -240332,15 +239989,15 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240348,9 +240005,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240358,9 +240023,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240368,17 +240040,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240386,16 +240057,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json -msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240403,14 +240073,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240418,9 +240095,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" + +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240428,9 +240117,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240438,16 +240138,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240455,20 +240159,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240476,9 +240174,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240486,18 +240189,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240505,16 +240205,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240522,25 +240222,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" -msgstr "" - -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240548,24 +240239,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." -msgstr "" - -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240573,20 +240257,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240594,9 +240274,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240604,17 +240292,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240622,18 +240307,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240641,15 +240323,30 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" + +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240657,9 +240354,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240667,18 +240369,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240686,18 +240386,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240705,19 +240402,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240725,19 +240412,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240745,15 +240427,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240761,17 +240444,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240779,17 +240459,24 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" + +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240797,15 +240484,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240813,32 +240501,29 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240846,18 +240531,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240865,9 +240548,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240875,9 +240565,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240885,9 +240583,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240895,9 +240601,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240905,9 +240617,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240915,9 +240635,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240925,9 +240650,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240935,9 +240667,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240945,9 +240685,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240955,9 +240703,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240965,9 +240720,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240975,9 +240738,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240985,9 +240755,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -240995,9 +240770,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241005,9 +240786,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241015,9 +240803,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241025,9 +240821,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241035,9 +240839,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241045,9 +240857,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241055,9 +240875,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241065,9 +240894,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241075,9 +240912,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241085,9 +240930,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241095,9 +240948,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241105,9 +240966,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241115,9 +240984,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241125,9 +241002,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241135,9 +241023,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241145,9 +241040,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241155,9 +241057,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241165,9 +241074,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241175,9 +241091,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241185,9 +241108,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241195,9 +241126,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241205,9 +241148,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241215,9 +241165,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241225,9 +241183,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241235,9 +241202,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241245,9 +241220,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241255,9 +241238,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241265,9 +241256,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241275,9 +241271,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241285,9 +241288,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241295,9 +241298,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241305,9 +241308,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241315,10 +241326,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241326,10 +241344,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241337,9 +241362,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241347,9 +241380,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241357,9 +241399,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241367,9 +241419,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241377,9 +241439,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241387,9 +241455,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241397,9 +241473,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241407,9 +241493,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241417,10 +241512,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241428,10 +241530,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241439,9 +241549,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241449,9 +241568,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241459,9 +241586,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241469,9 +241596,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241479,9 +241613,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241489,9 +241631,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241499,9 +241649,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241509,9 +241667,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241519,9 +241677,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241529,9 +241687,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241539,9 +241697,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241549,9 +241707,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241559,9 +241717,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241569,9 +241727,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241579,9 +241737,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241589,9 +241747,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241599,9 +241757,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241609,9 +241767,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241619,9 +241777,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241629,9 +241787,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241639,9 +241797,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241649,9 +241807,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241659,9 +241817,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241669,9 +241827,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241679,9 +241837,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241689,9 +241847,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241699,9 +241857,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241709,9 +241867,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241719,9 +241877,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241729,9 +241887,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241739,9 +241897,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241749,16 +241907,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241766,17 +241917,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241784,17 +241927,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241802,16 +241937,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241819,16 +241947,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241836,16 +241957,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241853,29 +241967,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" - -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" - -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241883,29 +241977,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" - -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" - -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241913,28 +241987,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" - -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241942,23 +241997,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241966,16 +242007,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -241983,17 +242017,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242001,19 +242027,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" - -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242021,19 +242037,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242041,17 +242047,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242059,15 +242057,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242075,17 +242067,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242093,16 +242077,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242110,14 +242087,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242125,24 +242097,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242150,16 +242107,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242167,16 +242117,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242184,16 +242127,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242201,15 +242137,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242217,15 +242147,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242233,15 +242157,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242249,15 +242167,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242265,15 +242177,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242281,15 +242187,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242297,15 +242197,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242313,15 +242207,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242329,16 +242217,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242346,16 +242227,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242363,16 +242237,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242380,15 +242247,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242396,16 +242257,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242413,16 +242267,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242430,16 +242277,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242447,15 +242287,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242463,15 +242297,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242479,15 +242307,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242495,15 +242317,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242511,15 +242327,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242527,17 +242337,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242545,17 +242347,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242563,17 +242357,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242581,17 +242367,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242599,9 +242377,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242609,23 +242387,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242633,23 +242397,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" - -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242657,23 +242407,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" - -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242681,23 +242417,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" - -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242705,23 +242435,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" - -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242729,23 +242453,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" - -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242753,23 +242463,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" - -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242777,23 +242479,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" - -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242801,23 +242498,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" - -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242825,23 +242508,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" - -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242849,23 +242518,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" - -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242873,9 +242528,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242883,9 +242538,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242893,9 +242548,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242903,9 +242558,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242913,9 +242568,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242923,19 +242578,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242943,9 +242598,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242953,9 +242614,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242963,9 +242630,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242973,9 +242646,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242983,9 +242664,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -242993,9 +242683,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243003,9 +242702,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243013,17 +242720,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243031,9 +242739,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243041,9 +242755,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243051,17 +242773,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243069,15 +242791,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243085,18 +242807,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243104,9 +242826,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243114,9 +242845,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243124,21 +242862,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243146,9 +242880,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243156,9 +242898,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243166,21 +242916,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243188,9 +242933,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243198,9 +242951,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243208,21 +242969,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243230,9 +242985,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243240,9 +243001,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243250,21 +243017,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243272,9 +243035,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243282,9 +243053,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243292,21 +243071,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243314,9 +243089,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243324,9 +243108,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243334,21 +243126,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243356,9 +243144,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243366,9 +243162,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243376,21 +243180,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243398,9 +243201,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243408,9 +243220,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243418,21 +243238,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243440,9 +243256,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243450,9 +243274,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243460,21 +243292,26 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243482,9 +243319,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243492,9 +243336,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243502,21 +243354,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243524,9 +243364,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243534,9 +243381,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243544,21 +243399,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243566,9 +243417,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243576,9 +243436,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243586,21 +243453,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243608,9 +243468,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243618,9 +243478,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243628,15 +243488,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243644,16 +243505,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243661,14 +243526,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243676,14 +243536,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243691,15 +243555,25 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243707,16 +243581,24 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243724,16 +243606,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243741,17 +243616,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243759,16 +243637,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243776,17 +243647,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243794,14 +243665,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243809,15 +243684,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243825,30 +243700,47 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243856,14 +243748,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243871,16 +243768,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243888,15 +243788,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243904,9 +243804,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243914,14 +243822,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243929,16 +243840,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243946,14 +243856,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243961,24 +243871,36 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -243986,38 +243908,49 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244025,16 +243958,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244042,16 +243978,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244059,17 +243998,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244077,17 +244018,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244095,15 +244038,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244111,17 +244058,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244129,17 +244078,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244147,17 +244098,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244165,17 +244118,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244183,17 +244138,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244201,18 +244158,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244220,17 +244178,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244238,17 +244198,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244256,17 +244218,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244274,17 +244238,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244292,17 +244258,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244310,17 +244278,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244328,16 +244298,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244345,17 +244318,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244363,16 +244338,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244380,14 +244358,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244395,16 +244380,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244412,17 +244400,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244430,17 +244420,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244448,19 +244440,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244468,15 +244460,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244484,17 +244482,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244502,19 +244502,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244522,18 +244522,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244541,17 +244542,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244559,18 +244562,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244578,18 +244582,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244597,17 +244602,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244615,9 +244622,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244625,16 +244632,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244642,17 +244652,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244660,17 +244672,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244678,17 +244692,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244696,9 +244712,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244706,9 +244722,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244716,9 +244732,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244726,9 +244742,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244736,9 +244752,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244746,9 +244762,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244756,9 +244772,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244766,9 +244782,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244776,9 +244792,29 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244786,9 +244822,29 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244796,9 +244852,28 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244806,9 +244881,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244816,9 +244905,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244826,9 +244922,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244836,9 +244940,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244846,9 +244960,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244856,9 +244980,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244866,9 +244998,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244876,9 +245018,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244886,9 +245036,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244896,9 +245054,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244906,9 +245071,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244916,9 +245086,24 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244926,9 +245111,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244936,9 +245128,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244946,9 +245145,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244956,9 +245162,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244966,9 +245178,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244976,9 +245194,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244986,9 +245210,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -244996,9 +245226,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245006,9 +245242,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245016,9 +245258,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245026,9 +245274,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245036,9 +245290,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245046,9 +245307,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245056,9 +245324,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245066,9 +245341,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245076,9 +245357,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245086,9 +245374,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245096,9 +245391,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245106,9 +245408,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245116,9 +245424,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245126,9 +245440,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245136,9 +245456,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245146,9 +245472,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245156,9 +245488,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245166,9 +245506,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245176,9 +245524,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245186,9 +245542,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245196,9 +245560,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245206,9 +245570,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245216,9 +245594,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245226,9 +245618,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245236,9 +245642,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245246,9 +245666,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245256,9 +245690,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245266,9 +245714,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245276,9 +245738,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245286,9 +245762,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245296,9 +245786,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245306,9 +245810,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245316,9 +245834,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245326,9 +245844,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245336,9 +245854,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245346,9 +245864,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245356,9 +245874,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245366,9 +245884,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245376,9 +245894,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245386,9 +245904,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245396,9 +245914,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245406,9 +245924,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245416,9 +245934,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245426,9 +245944,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245436,9 +245954,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245446,17 +245964,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245464,17 +245974,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245482,9 +245992,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245492,15 +246002,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245508,18 +246012,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245527,9 +246030,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245537,9 +246046,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245547,9 +246056,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245557,9 +246066,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245567,9 +246088,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245577,9 +246098,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245587,9 +246108,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245597,9 +246130,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245607,9 +246140,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245617,9 +246150,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245627,15 +246172,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245643,17 +246182,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245661,18 +246192,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245680,16 +246214,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245697,17 +246224,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245715,17 +246234,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245733,17 +246256,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245751,16 +246266,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245768,17 +246276,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245786,15 +246298,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245802,15 +246308,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245818,15 +246318,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245834,15 +246340,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245850,17 +246350,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245868,17 +246360,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245886,17 +246382,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245904,17 +246392,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245922,18 +246402,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245941,17 +246424,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245959,17 +246434,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245977,17 +246444,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -245995,17 +246466,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -246013,20 +246476,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -246034,18 +246486,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -246053,26 +246508,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -246080,20 +246518,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -246101,16 +246528,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -246118,17 +246550,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -246136,20 +246560,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -246160,14 +246572,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -246178,13 +246590,17 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" @@ -246194,7 +246610,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -246205,7 +246621,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -246214,7 +246630,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -246222,7 +246638,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -246233,7 +246649,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -246241,19 +246657,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -246264,14 +246680,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -246282,7 +246698,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -246291,7 +246707,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -246302,14 +246718,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -246320,14 +246736,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -246338,14 +246754,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -246356,14 +246772,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -246374,13 +246790,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -246391,7 +246807,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -246399,7 +246815,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -246410,12 +246826,12 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -246426,13 +246842,109 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -246443,7 +246955,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -246454,7 +246966,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -246465,17 +246977,17 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -246486,7 +246998,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -246496,7 +247008,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -246507,7 +247019,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -246516,7 +247028,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -246527,13 +247039,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -246544,16 +247056,17 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -246564,19 +247077,19 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -246587,7 +247100,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -246596,12 +247109,12 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" @@ -246611,7 +247124,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -246622,7 +247135,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -246631,7 +247144,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -246642,14 +247155,14 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -246660,13 +247173,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -246677,13 +247190,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -246694,13 +247207,13 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -246711,144 +247224,201 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -246856,222 +247426,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -247079,48 +247649,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -247128,12 +247698,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -247141,12 +247711,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -247154,103 +247724,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -247259,204 +247829,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -247467,24 +248037,24 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" @@ -247495,48 +248065,68 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -254632,6 +255222,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -254824,10 +255418,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -260928,6 +261518,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -260996,6 +261587,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -261894,6 +262489,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -277641,7 +278240,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -283655,7 +284259,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -288850,10 +289460,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -293093,7 +293704,7 @@ msgstr "" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -300745,6 +301356,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -300886,6 +301502,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -301478,11 +302104,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/da.po b/lang/po/da.po index ce3b3c32e493..eb542b8ec38f 100644 --- a/lang/po/da.po +++ b/lang/po/da.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2023\n" "Language-Team: Danish (https://app.transifex.com/bn-team/teams/113585/da/)\n" "MIME-Version: 1.0\n" @@ -7523,6 +7523,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10838,7 +10849,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11286,75 +11297,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11368,51 +11395,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12155,12 +12220,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12202,6 +12267,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12659,7 +12895,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12694,7 +12930,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12731,7 +12967,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12900,7 +13136,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13018,7 +13254,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13093,7 +13329,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13275,7 +13511,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14460,7 +14696,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14469,22 +14705,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14497,7 +14733,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14509,7 +14745,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14522,7 +14758,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14540,7 +14776,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14549,12 +14785,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14614,7 +14850,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15037,7 +15273,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19292,12 +19528,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19322,18 +19558,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19342,7 +19578,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19350,12 +19586,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19380,18 +19616,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19399,19 +19635,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19434,12 +19670,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20196,15 +20432,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20212,7 +20448,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20220,6 +20456,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27437,7 +27701,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27554,7 +27817,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27620,7 +27882,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27641,7 +27902,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27649,7 +27909,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27657,7 +27916,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27676,8 +27934,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -27710,14 +27967,12 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27760,7 +28015,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27778,7 +28032,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -27823,7 +28076,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -27835,7 +28087,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -27843,7 +28094,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -27855,7 +28105,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28220,7 +28469,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28262,6 +28512,19 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28339,7 +28602,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28369,7 +28633,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28715,7 +28980,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -28824,8 +29088,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29074,7 +29339,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29102,7 +29367,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29225,7 +29490,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29285,7 +29549,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29608,7 +29871,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29695,7 +29958,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29722,7 +29985,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -29891,7 +30154,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30228,7 +30491,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30245,7 +30508,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30258,7 +30520,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30273,7 +30534,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30295,7 +30555,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30445,7 +30704,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31298,7 +31556,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -31714,7 +31971,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -31856,7 +32112,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -31881,7 +32136,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32426,9 +32680,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32462,7 +32728,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32478,7 +32743,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -32976,7 +33240,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -32991,7 +33254,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33007,7 +33269,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33073,7 +33334,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33111,7 +33371,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34598,7 +34857,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -34984,7 +35243,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35240,7 +35498,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -36881,7 +37138,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37518,7 +37774,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38551,7 +38806,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "" @@ -39473,7 +39727,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -39650,6 +39903,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -39713,7 +40002,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -39725,7 +40013,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -39737,7 +40024,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -39749,7 +40035,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -39772,7 +40057,6 @@ msgid "A cleansing agent made into bars." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -39784,7 +40068,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -39796,7 +40079,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -39843,7 +40125,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40088,7 +40369,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40133,7 +40413,6 @@ msgid "" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40351,7 +40630,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "" @@ -40385,7 +40663,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -40714,7 +40991,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -42745,7 +43021,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "" @@ -42759,7 +43034,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -42774,7 +43048,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -42789,7 +43062,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -42812,7 +43084,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "" @@ -42839,7 +43110,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -42851,7 +43121,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -42865,7 +43134,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -43240,7 +43508,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -43254,7 +43521,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -43621,7 +43887,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -43670,7 +43935,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -45256,7 +45520,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -45269,7 +45532,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -45409,7 +45671,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -45421,7 +45682,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -45433,7 +45693,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -45445,7 +45704,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -45457,7 +45715,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -45469,7 +45726,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -45481,7 +45737,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -45516,7 +45771,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "" @@ -45530,7 +45784,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -45542,7 +45795,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -45573,7 +45825,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -45588,7 +45839,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -45602,7 +45852,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -45617,7 +45866,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -45694,7 +45942,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -45706,7 +45953,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -45720,7 +45966,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -45735,7 +45980,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -45786,7 +46030,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -45801,7 +46044,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -45815,7 +46057,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -45827,7 +46068,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -45842,7 +46082,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -45903,7 +46142,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -45955,7 +46193,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -45967,7 +46204,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -45980,7 +46216,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -45992,7 +46227,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -46032,7 +46266,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -46044,7 +46277,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -46058,7 +46290,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -46069,9 +46300,7 @@ msgstr[1] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -46085,9 +46314,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -46101,7 +46328,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -46115,7 +46341,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -46129,7 +46354,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -46143,7 +46367,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -46164,7 +46387,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -46178,7 +46400,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -46192,7 +46413,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -46205,9 +46425,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -46222,7 +46440,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -46236,21 +46453,18 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -46265,7 +46479,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -46280,9 +46493,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -46297,9 +46508,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -46313,9 +46522,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -46329,9 +46536,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -46345,9 +46550,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -46361,9 +46564,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -46377,9 +46578,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -46421,7 +46620,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -46433,7 +46631,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -46445,7 +46642,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -46457,7 +46653,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -46471,7 +46666,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -46485,7 +46679,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -46499,7 +46692,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -46513,7 +46705,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -46527,7 +46718,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -46542,7 +46732,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -46557,7 +46746,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -46571,7 +46759,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -46616,7 +46803,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -46628,7 +46814,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -46642,7 +46827,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -46656,7 +46840,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -46682,7 +46865,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -46694,7 +46876,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -46721,7 +46902,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -46754,7 +46934,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -46769,7 +46948,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -46793,7 +46971,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -46805,7 +46982,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -46820,7 +46996,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -46835,7 +47010,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -46867,7 +47041,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -46881,7 +47054,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -46915,7 +47087,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -46928,14 +47099,12 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -46949,7 +47118,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -46961,7 +47129,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -46973,7 +47140,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -46985,7 +47151,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -47009,7 +47174,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -47023,7 +47187,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -47037,7 +47200,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -47049,7 +47211,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -47061,7 +47222,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -47075,7 +47235,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -47087,7 +47246,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -47099,7 +47257,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -47111,7 +47268,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -47123,7 +47279,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -47135,7 +47290,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -47147,7 +47301,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -47159,7 +47312,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -47171,7 +47323,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -47183,7 +47334,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -47195,7 +47345,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -47207,7 +47356,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -47219,7 +47367,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -47231,7 +47378,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -47243,7 +47389,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -47258,7 +47403,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -47297,7 +47441,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -47309,7 +47452,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -47323,7 +47465,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -47335,7 +47476,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -47355,7 +47495,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -47406,7 +47545,7 @@ msgstr[1] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -47522,7 +47661,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -47550,7 +47688,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -47562,7 +47699,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -47574,7 +47710,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -47586,7 +47721,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -47601,7 +47735,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -47616,7 +47749,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -47631,7 +47763,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -47685,7 +47816,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -47708,7 +47838,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -47720,7 +47849,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -47855,7 +47983,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -47868,9 +47995,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -47883,9 +48008,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -47898,16 +48021,14 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -47921,7 +48042,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -47937,7 +48057,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -47995,21 +48114,18 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -48199,7 +48315,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -48357,7 +48472,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -48371,7 +48485,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -48385,7 +48498,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -48399,7 +48511,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -48411,7 +48522,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -48425,7 +48535,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -48439,7 +48548,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -48453,7 +48561,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -48465,7 +48572,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -48477,7 +48583,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -48960,7 +49065,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -48972,7 +49076,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -48984,7 +49087,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -48996,7 +49098,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -49008,7 +49109,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -49020,7 +49120,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -49032,7 +49131,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -49044,7 +49142,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -49059,7 +49156,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -49704,7 +49800,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -49737,7 +49833,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -53282,7 +53378,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -53879,7 +53974,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -53892,7 +53988,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -53905,7 +54002,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -53919,7 +54017,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -54418,7 +54517,7 @@ msgstr[1] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -54663,7 +54762,7 @@ msgstr[1] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -54673,14 +54772,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -57250,7 +57349,7 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -65103,7 +65202,7 @@ msgstr[1] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -72993,8 +73092,8 @@ msgstr[1] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -73123,7 +73222,7 @@ msgstr[1] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -73142,7 +73241,7 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -74934,8 +75033,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -74943,7 +75041,6 @@ msgstr[1] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -75141,8 +75238,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -85950,6 +86046,20 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -90147,7 +90257,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -90161,7 +90270,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -90207,7 +90315,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -90242,7 +90349,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -90256,7 +90362,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -90863,7 +90968,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -90875,7 +90979,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -90887,7 +90990,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -90899,7 +91001,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -90980,7 +91081,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -90992,7 +91092,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -91006,7 +91105,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -91018,7 +91116,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -91030,7 +91127,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -91044,7 +91140,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "glasskål" @@ -91080,7 +91175,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -91123,7 +91217,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -91165,7 +91258,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -91177,7 +91269,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -91190,7 +91281,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -91204,7 +91294,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -91218,7 +91307,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -91232,7 +91320,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -91249,7 +91336,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -91262,7 +91348,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -91275,7 +91360,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -91289,7 +91373,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -91303,7 +91386,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -91317,7 +91399,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -91642,7 +91723,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -91654,7 +91734,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "" @@ -92910,7 +92989,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -95866,7 +95945,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -96189,7 +96268,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -96363,7 +96442,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -96481,7 +96560,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -100608,14 +100687,12 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" msgstr[1] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -100629,7 +100706,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -100643,7 +100719,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -100657,7 +100732,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -100673,7 +100747,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -100688,7 +100761,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -100703,7 +100775,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -100718,7 +100789,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -104176,7 +104246,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -104190,7 +104259,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -104211,7 +104279,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -104224,7 +104291,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -104237,7 +104303,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -104339,7 +104404,6 @@ msgid "A roll of purple carpet." msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -104353,7 +104417,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -104365,7 +104428,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -104378,7 +104440,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -104393,7 +104454,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -104407,7 +104467,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -104421,7 +104480,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -104436,7 +104494,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -104448,7 +104505,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -104463,14 +104519,12 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" msgstr[1] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -104486,7 +104540,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "" @@ -104500,7 +104553,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -104514,7 +104566,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "" @@ -104528,7 +104579,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -104540,7 +104590,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -104554,7 +104603,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -104566,7 +104614,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -104580,7 +104627,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -104592,7 +104638,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -104606,7 +104651,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -104642,7 +104686,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -104703,7 +104746,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -104772,7 +104814,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -104800,7 +104841,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -104815,8 +104855,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -104830,7 +104868,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -104844,7 +104881,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -104858,7 +104894,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -104872,7 +104907,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -104884,7 +104918,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -104896,7 +104929,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -104910,7 +104942,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -104923,8 +104954,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -104939,7 +104969,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -104954,7 +104983,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -104970,7 +104998,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -104985,7 +105012,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -105021,7 +105047,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -105038,7 +105063,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -105064,7 +105088,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -105078,7 +105101,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -105118,7 +105140,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -105134,7 +105155,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -105148,7 +105168,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -105162,7 +105181,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -105174,7 +105192,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -105186,7 +105203,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -105198,7 +105214,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -105213,7 +105228,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -105227,7 +105241,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -105253,7 +105266,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -105267,7 +105279,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -105353,7 +105364,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -105367,7 +105377,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -105394,7 +105403,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -105470,7 +105478,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -105484,7 +105491,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -105499,7 +105505,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -105514,7 +105519,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -105531,7 +105535,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -105547,7 +105550,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -105576,7 +105578,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -105590,7 +105591,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -105604,7 +105604,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -105630,7 +105629,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -105644,7 +105642,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -105659,7 +105656,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -105671,7 +105667,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -105723,7 +105718,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -105738,7 +105732,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -105750,7 +105743,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -105764,7 +105756,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -105849,7 +105840,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -105865,6 +105855,22 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -105873,7 +105879,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -105922,7 +105927,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -105955,7 +105959,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -105971,7 +105974,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -105986,7 +105988,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -106004,7 +106005,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -106032,7 +106032,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -106047,7 +106046,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -106062,7 +106060,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -106089,7 +106086,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -106103,9 +106099,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -106122,7 +106116,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -106138,7 +106131,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -106155,7 +106147,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -106187,7 +106178,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -106218,7 +106208,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -106249,7 +106238,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -106265,7 +106253,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -106347,7 +106334,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -106361,7 +106347,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -106385,7 +106370,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -106400,7 +106384,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -106415,7 +106398,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -106432,7 +106414,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -106449,7 +106430,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -106464,7 +106444,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -106480,7 +106459,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -107457,7 +107435,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -107471,7 +107448,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -107487,7 +107463,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -107503,7 +107478,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -107518,7 +107492,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -107533,7 +107506,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "forstørrelsesglas" @@ -107548,7 +107520,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -107564,7 +107535,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -107603,7 +107573,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -107633,7 +107602,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -107670,7 +107638,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -107698,7 +107665,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -107712,7 +107678,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -107768,7 +107733,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -107782,7 +107746,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -107813,7 +107776,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -107825,7 +107787,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -107837,7 +107798,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -107851,7 +107811,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -107865,7 +107824,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -107879,7 +107837,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -107897,7 +107854,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -107924,7 +107880,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -107952,7 +107907,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -107966,7 +107920,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -108009,7 +107962,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -108023,7 +107975,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -108036,7 +107987,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -108050,7 +108000,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -108080,7 +108029,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -108095,7 +108043,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -108120,7 +108067,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -108135,7 +108081,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -108178,7 +108123,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -108200,7 +108144,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -108224,7 +108167,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -108233,7 +108175,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -108248,7 +108190,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -108259,7 +108200,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -108311,7 +108252,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -108354,7 +108294,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -108516,7 +108455,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -108654,7 +108592,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -108696,7 +108633,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -108749,7 +108685,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -108757,7 +108693,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -108773,7 +108709,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -108785,7 +108721,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -108854,7 +108789,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -108897,7 +108831,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -108926,7 +108859,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -108938,7 +108870,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -108964,7 +108895,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -108979,7 +108909,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -109012,7 +108941,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -109026,7 +108954,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -109041,7 +108968,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -109063,7 +108989,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -109077,7 +109002,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -109091,7 +109015,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -109105,7 +109028,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -109122,7 +109044,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -109158,7 +109079,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -109195,7 +109115,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -109209,7 +109128,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -109247,7 +109165,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -109383,7 +109300,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -109421,7 +109337,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -109441,7 +109356,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -109467,7 +109381,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -109519,7 +109432,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -109556,7 +109468,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -109651,7 +109562,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -109698,7 +109608,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -109858,7 +109767,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -109989,7 +109897,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -110004,7 +109911,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -110019,7 +109925,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -110031,7 +109936,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -110043,7 +109947,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -110057,7 +109960,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -110071,7 +109973,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -110085,7 +109986,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -110124,7 +110024,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -110139,7 +110038,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -110177,7 +110075,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -110204,7 +110101,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -110218,7 +110114,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -110294,7 +110189,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -110312,7 +110206,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -110338,7 +110231,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -110353,7 +110245,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -110368,7 +110259,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -110396,7 +110286,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -110410,7 +110299,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -110422,7 +110310,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -110436,7 +110323,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -110450,7 +110336,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -110502,7 +110387,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -110517,7 +110401,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -110534,7 +110417,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -110548,7 +110430,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -110562,7 +110443,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -110577,7 +110457,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -110593,7 +110472,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -110611,7 +110489,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -110628,7 +110505,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -110642,7 +110518,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -110669,7 +110544,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -110685,7 +110559,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -110702,7 +110575,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -110720,7 +110592,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -110738,7 +110609,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -110758,7 +110628,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -110775,7 +110644,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -110832,7 +110700,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -110846,7 +110713,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -110858,7 +110724,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -110924,7 +110789,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -110936,7 +110800,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -110948,7 +110811,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -110963,7 +110825,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -110975,7 +110836,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -110990,7 +110850,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -111004,7 +110863,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -111019,7 +110877,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -111042,7 +110899,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -111058,8 +110914,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -111089,8 +110944,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -111106,7 +110960,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -111118,7 +110971,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -111130,7 +110982,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -111171,7 +111022,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -111197,7 +111047,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -111235,7 +111084,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -111249,7 +111097,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -111287,7 +111134,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -111307,7 +111153,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -111352,7 +111197,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -111371,7 +111215,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -111424,7 +111267,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -111452,7 +111294,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -111486,7 +111327,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -111507,7 +111347,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -111534,7 +111373,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -111571,7 +111409,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -111613,7 +111450,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -111640,7 +111476,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -111739,7 +111574,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -111751,7 +111585,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -111759,7 +111592,6 @@ msgstr[1] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -111896,7 +111728,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -111910,7 +111741,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -111924,7 +111754,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -111938,7 +111767,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -111953,7 +111781,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -111965,7 +111792,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -111979,7 +111805,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -111994,7 +111819,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -112008,7 +111832,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -112021,7 +111844,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -112035,7 +111857,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -112050,7 +111871,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -112076,7 +111896,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -112105,7 +111924,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -112119,7 +111937,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -112133,7 +111950,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -112145,7 +111961,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -112159,7 +111974,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -112171,7 +111985,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -112186,7 +111999,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -112200,7 +112012,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -112216,7 +112027,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -112231,7 +112041,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -112245,7 +112054,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -112259,7 +112067,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -112273,7 +112080,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -112304,7 +112110,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -112318,7 +112123,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -112332,7 +112136,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -112349,7 +112152,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -112361,7 +112163,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -112375,7 +112176,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -112389,7 +112189,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -112404,7 +112203,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -112431,7 +112229,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -112445,7 +112242,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -112459,7 +112255,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -112474,7 +112269,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -112504,7 +112298,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -112518,7 +112311,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -112547,7 +112339,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -112561,7 +112352,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -112575,7 +112365,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -112589,7 +112378,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -112605,7 +112393,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -112619,7 +112406,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -112634,7 +112420,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -113864,6 +113649,17 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -114193,7 +113989,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -114609,6 +114404,13 @@ msgstr[1] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -114932,6 +114734,30 @@ msgstr[1] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -115762,13 +115588,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -116088,13 +115907,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -116648,7 +116460,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -116672,7 +116484,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -120547,7 +120359,7 @@ msgstr[1] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -120555,7 +120367,7 @@ msgstr[1] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -130363,9 +130175,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -131098,9 +130910,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -131116,9 +130928,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -131146,25 +130958,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -131184,9 +130996,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -137423,7 +137235,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -147090,17 +146902,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -148300,7 +148112,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -153987,9 +153799,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -162900,7 +162712,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -163268,7 +163079,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -163290,7 +163101,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -166043,7 +165853,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -166090,7 +165899,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -166215,6 +166024,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -166228,7 +166044,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -166269,7 +166085,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -176006,7 +175822,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -176085,6 +175901,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -177803,6 +177626,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -177872,7 +177713,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -177940,6 +177781,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -178085,7 +177930,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -178428,7 +178273,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -185114,7 +184958,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -185122,8 +184966,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -186047,9 +185891,9 @@ msgstr[1] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -186062,7 +185906,7 @@ msgstr[1] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -203038,74 +202882,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -203115,177 +202891,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -204498,115 +204103,134 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -204614,157 +204238,213 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" msgstr[1] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" msgstr[1] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -204772,25 +204452,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -204798,25 +204478,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -204824,7 +204504,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -204832,7 +204512,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -204842,7 +204522,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -204852,7 +204532,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -204862,7 +204542,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -204872,7 +204552,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -204881,7 +204561,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -204890,7 +204570,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -204900,7 +204580,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -204909,18 +204589,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -204929,7 +204609,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -204937,18 +204617,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -204958,7 +204638,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -204967,18 +204647,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -204986,25 +204666,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -205012,59 +204692,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205073,7 +204785,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205082,25 +204794,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205112,7 +204824,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205123,25 +204835,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205151,7 +204863,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205161,588 +204873,640 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -205754,245 +205518,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -206000,808 +205737,872 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" msgstr[1] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -206809,20 +206610,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -206830,74 +206631,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -206905,21 +206706,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -206927,105 +206728,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -207033,16 +206858,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -207050,74 +206875,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -207125,357 +206950,357 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -207483,175 +207308,99 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -207659,113 +207408,84 @@ msgstr[1] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -207773,14 +207493,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -207788,39 +207508,39 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -207828,13 +207548,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -207842,13 +207562,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -207856,114 +207576,90 @@ msgstr[1] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -207971,12 +207667,12 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -207984,66 +207680,66 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -208051,19 +207747,19 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -208071,13 +207767,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -208085,13 +207781,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -208099,13 +207795,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -208113,70 +207809,70 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -208184,12 +207880,12 @@ msgstr[1] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -208197,313 +207893,278 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" msgstr[1] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -208512,4326 +208173,4913 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" msgstr[1] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -212840,7 +213088,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -212848,14 +213096,14 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -212863,40 +213111,40 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -212905,83 +213153,83 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" msgstr[1] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -212989,39 +213237,115 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -213032,31 +213356,31 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -213066,14 +213390,14 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -213082,62 +213406,63 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" msgstr[1] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" msgstr[1] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" msgstr[1] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -213146,25 +213471,25 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -213173,204 +213498,249 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" msgstr[1] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" msgstr[1] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" msgstr[1] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" msgstr[1] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" msgstr[1] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -213378,222 +213748,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -213601,48 +213971,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -213650,12 +214020,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -213663,12 +214033,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -213676,103 +214046,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -213781,276 +214151,296 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" msgstr[1] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" msgstr[1] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -220346,6 +220736,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -220538,10 +220932,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -226538,6 +226928,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -226606,6 +226997,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -227448,6 +227843,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -243031,7 +243430,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -248997,7 +249401,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -254140,10 +254550,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -258335,7 +258746,7 @@ msgstr "" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -265927,6 +266338,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -266068,6 +266484,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -266660,11 +267086,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/de.po b/lang/po/de.po index 569a0a64b676..4aef119267c3 100644 --- a/lang/po/de.po +++ b/lang/po/de.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: German (https://app.transifex.com/bn-team/teams/113585/de/)\n" "MIME-Version: 1.0\n" @@ -8052,6 +8052,17 @@ msgstr "" msgid "You can see through everything!" msgstr "Du kannst durch alles sehen!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "Xanax eingenommen" @@ -11518,7 +11529,7 @@ msgstr "Einschalten" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "Ausschalten" @@ -11966,75 +11977,91 @@ msgstr "MAGAZINE" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "MUNI" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "WAFFEN" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "WERKZEUGE" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "ELEKTRONIK" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "KLEIDUNG" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "ESSEN" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "DROGEN" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "BÜCHER" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "KARTEN" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MODS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "MUTAGENE" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "BIONIKEN" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "FAHRZEUGTEILE" @@ -12048,51 +12075,89 @@ msgstr "FAHRZEUGTEILE" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "ANDERE" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "TREIBSTOFF" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "SAMEN" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "CHEMISCHES ZEUG" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "BATTERIEN" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "ERSATZTEILE" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "STEIN" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "BEHÄLTER" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "ARTEFAKTE" +#: data/json/item_category.json +msgid "MAPS" +msgstr "KARTEN" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "GETRAGENES" @@ -12841,12 +12906,12 @@ msgstr "Beute: Leichen" msgid "Destination for corpses" msgstr "Zielfeld für Leichen" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12892,6 +12957,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "Kein Auto-Aufheben" @@ -13352,7 +13588,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Eskrima" @@ -13390,7 +13626,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Fechten" @@ -13427,7 +13663,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -13600,7 +13836,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Krav Maga" @@ -13722,7 +13958,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "Mittelalterliche Schwertkunst" @@ -13797,7 +14033,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Ninjutsu" @@ -13979,7 +14215,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Silat" @@ -15171,7 +15407,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "verbeult" @@ -15180,22 +15416,22 @@ msgid "gouged" msgstr "ausgemeißelt" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "zerkratzt" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "angeschnitten" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "gesprungen" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "zerbrochen" @@ -15208,7 +15444,7 @@ msgid "bent" msgstr "verbogen" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "zerschmettert" @@ -15220,7 +15456,7 @@ msgstr "zerstört" msgid "Biosilicified Chitin" msgstr "Biosilifiziertes Chitin" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "angeschlagen" @@ -15233,7 +15469,7 @@ msgid "Brass" msgstr "Messing" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "beschädigt" @@ -15251,7 +15487,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "zerrissen" @@ -15260,12 +15496,12 @@ msgid "torn" msgstr "durchgerissen" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "zerfetzt" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "ruiniert" @@ -15325,7 +15561,7 @@ msgstr "Fleisch" msgid "bruised" msgstr "blutunterlaufen" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "geschnitten" @@ -15752,7 +15988,7 @@ msgstr "automatisch" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -20507,12 +20743,12 @@ msgstr "" "Statt sich jetzt um deine Honorare zu beschweren, versuchen deine Klienten, " "dein Hirn zu fressen. Du kannst nicht sagen, was davon schlimmer ist." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Priester" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Priesterin" @@ -20545,18 +20781,18 @@ msgstr "" "nicht ausreichten. Nun sind sie alle tot, du solltest vielleicht etwas " "Handfesteres haben, um dich zu schützen." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Kannushi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Kannushi" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20568,7 +20804,7 @@ msgstr "" "Toten deinen Schrein bewohnten, und nicht ihre vergammelnden Leichen." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20579,12 +20815,12 @@ msgstr "" "heilige Tätigkeiten ab. Du hast es vorgezogen, dass nur die Geister der " "Toten deinen Schrein bewohnten, und nicht ihre vergammelnden Leichen." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "Imam" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "Murschida" @@ -20617,18 +20853,18 @@ msgstr "" "deine Gemeinde in Gebeten geleitet. Damals kamen sie von weit und fern, um " "dir zuzuhören, nun kommen sie, um dein Gehirn zu fressen." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "Rabbi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "Rabbi" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -20636,19 +20872,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "Guru" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "Guru" @@ -20677,12 +20913,12 @@ msgstr "" " und gelehrt. Normalerweise kannst du jede Frage beantworten, aber sogar du " "bist dir nicht ganz sicher, was mit den gefräßigen Untoten zu tun ist." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "Prediger" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "Predigerin" @@ -21547,15 +21783,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "Skater" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "Skater" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -21565,7 +21801,7 @@ msgstr "" "Du liebst skaten! Wenigstens können dir nun die Erwachsenen nicht mehr " "sagen, wo du nicht skaten darfst." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -21575,6 +21811,34 @@ msgstr "" "Du liebst skaten! Wenigstens können dir nun die Erwachsenen nicht mehr " "sagen, wo du nicht skaten darfst." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -29063,7 +29327,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "gekrümmte Nadel" @@ -29180,7 +29443,6 @@ msgstr "Patronenzieh" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "Amboss" @@ -29246,7 +29508,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "Luftpolsterfolie" @@ -29267,7 +29528,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "Feldbett" @@ -29275,7 +29535,6 @@ msgstr[1] "Feldbetten" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "Regentrichter" @@ -29283,7 +29542,6 @@ msgstr[1] "Regentrichter" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "selbstgebauter Trichter" @@ -29302,8 +29560,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "Bärenfalle" @@ -29336,14 +29593,12 @@ msgid "tripwire" msgstr "Stolperdraht" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "Armbrustfalle" @@ -29386,7 +29641,6 @@ msgid "Swinnng!" msgstr "Schwing!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "Landmine" @@ -29404,7 +29658,6 @@ msgid "buried land mine" msgstr "vergrabene Landmine" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "Teleportationsfeld" @@ -29449,7 +29702,6 @@ msgid "ledge" msgstr "Kante" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "Sprengfalle" @@ -29461,7 +29713,6 @@ msgstr "Glasgrube" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "Lederregentrichter" @@ -29469,7 +29720,6 @@ msgstr[1] "Lederregentrichter" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -29481,7 +29731,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "Metalltrichter" @@ -29846,7 +30095,8 @@ msgstr "" msgid "Thunder Storm" msgstr "Gewitter" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Gewittersturm" @@ -29888,6 +30138,19 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -29965,7 +30228,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "Metall knirschen." @@ -29995,7 +30259,8 @@ msgstr "Metall knirschen." #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "»Kläng!«." @@ -30343,7 +30608,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -30452,8 +30716,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "»Bonk!«" @@ -30702,7 +30967,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "»Knirsch!«." @@ -30730,7 +30995,7 @@ msgstr "»Knirsch!«." #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "»Wumms!«." @@ -30853,7 +31118,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -30913,7 +31177,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -31236,7 +31499,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "Glas scheppern." @@ -31323,7 +31586,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -31350,7 +31613,7 @@ msgstr "»Schepper!«." #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "»Wumm!«." @@ -31521,7 +31784,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "»Bums.«." @@ -31858,7 +32121,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "»Krach!«." @@ -31875,7 +32138,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "Standgrill" @@ -31888,7 +32150,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "Landstreicherherd" @@ -31903,7 +32164,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -31925,7 +32185,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -32075,7 +32334,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "Sonnenblume" @@ -32940,7 +33198,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "Wasserreiniger" @@ -33359,7 +33616,6 @@ msgstr "Hocker" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -33501,7 +33757,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "Matratze" @@ -33526,7 +33781,6 @@ msgstr "»Rrrrrratsch!«." #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "Daunenmatratze" @@ -34073,9 +34327,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "Lederplane" @@ -34112,7 +34378,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "Fasermatte" @@ -34132,7 +34397,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "Reisetisch" @@ -34640,7 +34904,6 @@ msgstr "Wird zur Metallverarbeitung benutzt." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "Destillationsapparat" @@ -34657,7 +34920,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "Holzkohleofen" @@ -34675,7 +34937,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "gefüllter Holzkohleofen" @@ -34746,7 +35007,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -34786,7 +35046,6 @@ msgstr "Ein Ofen, der Tonwaren und Ziegel brennen kann." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "Stufenleiter" @@ -36439,7 +36698,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "»Bums«" @@ -36854,7 +37113,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "Sand" @@ -37125,7 +37383,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "Beton" @@ -38922,7 +39179,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -39569,7 +39825,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -40705,7 +40960,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "massiver Fels" @@ -41700,7 +41954,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "Gullydeckel" @@ -41877,6 +42130,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -41942,7 +42231,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "WENN DU DIES SIEHST, IST ES EIN BUG." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "Faden" @@ -41956,7 +42244,6 @@ msgstr "" "könnte." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -41970,7 +42257,6 @@ msgstr "" "Faden." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -41983,7 +42269,6 @@ msgstr "" "Robuste dünne Fasern einer Pflanze. Können als Faden verwendet werden." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "Garn" @@ -42006,7 +42291,6 @@ msgid "A cleansing agent made into bars." msgstr "Ein Reinigungsmittel in Quaderform." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -42020,7 +42304,6 @@ msgstr "" "unzählig." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -42034,7 +42317,6 @@ msgstr "" "sind." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -42085,7 +42367,6 @@ msgstr[0] "wässriger Plutoniumschlamm" msgstr[1] "wässrige Plutoniumschlämme" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -42349,7 +42630,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "Ein Stück nützliches Gummi, das sich leicht formen lässt." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -42400,7 +42680,6 @@ msgstr "" "Luft und Wasser zu entfernen." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "Kalziumkarbid Vormischung" @@ -42644,7 +42923,6 @@ msgstr "" "Mischungsverhältnis." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "Zunder" @@ -42680,7 +42958,6 @@ msgstr "" "Ein metallener Würfel, benutzt um verschiedene Rollenspiele zu spielen." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "Bronze" @@ -43011,7 +43288,6 @@ msgstr "eisenhaltiges Schienenprojektil" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "Esz." @@ -45063,7 +45339,6 @@ msgstr "" "Papierbleichmittel herzustellen." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "Schwefelbrocken" @@ -45077,7 +45352,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "Zement" @@ -45095,7 +45369,6 @@ msgstr "" "fortgeschrittenen Gemäuer benutzt werden. Füg einfach Wasser hinzu." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "Kalkstein" @@ -45110,7 +45383,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "Branntkalk" @@ -45140,7 +45412,6 @@ msgstr "" " Zement zu gebrauchen." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "Erde" @@ -45171,7 +45442,6 @@ msgstr "" "aber seine alkalischen Eigenschaften könnten sich als nützlich erweisen." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "Steinsalz" @@ -45184,7 +45454,6 @@ msgstr "" "Eine Handvoll Steinsalzkristalle. Könnte zu Kochsalz raffiniert werden." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -45198,7 +45467,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -45640,7 +45908,6 @@ msgstr "" "einfachen Raketentreibstoffen, wie Rocket-Candy." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "Nitrokalit" @@ -45656,7 +45923,6 @@ msgstr "" "Salpeter verarbeitet werden." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -46081,7 +46347,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "Stahlgitter" @@ -46134,7 +46399,6 @@ msgstr "" "zu handhaben." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -47860,7 +48124,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -47873,7 +48136,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -48015,7 +48277,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "Pelzfell" @@ -48029,7 +48290,6 @@ msgstr "" "werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "Kunstfell Pelz" @@ -48043,7 +48303,6 @@ msgstr "" "werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "Lederflicken" @@ -48056,7 +48315,6 @@ msgstr "" "Ein kleiner Lederflicken, der für starke Kleidung benutzt werden könnte." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "Filzflicken" @@ -48070,7 +48328,6 @@ msgstr "" "werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "Nomexfetzen" @@ -48082,7 +48339,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "Ein kleiner Ballen aus feuerfesten Nomexstoff." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -48094,7 +48350,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Eine Tube starken Klebstoffs. In vielen Fertigungsrezepten verwendet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "Knochenkleber" @@ -48129,7 +48384,6 @@ msgid "A token, representing fertilization of a plant." msgstr "Ein Symbol, das für die Düngung einer Pflanze steht." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "Stahlkette" @@ -48146,7 +48400,6 @@ msgstr "" "zusätzlichen unbewaffneten Angriffs gibt." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "Chitinklumpen" @@ -48160,7 +48413,6 @@ msgstr "" "langlebig." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -48191,7 +48443,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "biosilifizierter Chitinklumpen" @@ -48208,7 +48459,6 @@ msgstr "" "Er ist säurefest und bemerkenswert stabil." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "Lumpenbündel" @@ -48222,7 +48472,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "Lederbündel" @@ -48239,7 +48488,6 @@ msgstr "" "dies, um es auszupacken." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "Filzbündel" @@ -48327,7 +48575,6 @@ msgstr "" "natürlich geformt worden sind oder von einem Fossil stammen." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "USB-Stick" @@ -48339,7 +48586,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "Ein USB-Stick. Hilfreich zum Speichern von Software." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -48353,7 +48599,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -48368,7 +48613,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "Kerzenhalter" @@ -48423,7 +48667,6 @@ msgstr "" "werfen. Es ist keine gute Idee, es ohne feste Handschuhe zu halten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "Baum-Zapfhahn" @@ -48441,7 +48684,6 @@ msgstr "" "spätem Winter und frühem Frühling Ahornsaft zu gewinnen." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "Draht" @@ -48457,7 +48699,6 @@ msgstr "" "Drahtzäunen vorfindet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "Stacheldraht" @@ -48470,7 +48711,6 @@ msgstr "" "Ein Stück stabilem Strahtes, der mit scharfen Widerhäken überzogen ist." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -48485,7 +48725,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "Bewehrungsstab" @@ -48550,7 +48789,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "Dies ist eine verbrauchte Leuchtfackel. Sie ist praktisch Müll." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "Schraubenfeder" @@ -48610,7 +48848,6 @@ msgstr "" "kaputt und kann nicht aufgeschlagen werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "Heizelement" @@ -48624,7 +48861,6 @@ msgstr "" "werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -48637,7 +48873,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "Fernseher" @@ -48649,7 +48884,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "Zündflamme" @@ -48691,7 +48925,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "Toaster" @@ -48703,7 +48936,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "Ein kleiner Zweischeiben-Toaster, nur als Ersatzteil zu gebrauchen" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "Mikrowelle" @@ -48719,7 +48951,6 @@ msgstr "" "hat. Gut für Schrottteile." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "Laptop" @@ -48730,9 +48961,7 @@ msgstr[1] "Laptops" msgid "A broken laptop, basically a paperweight now." msgstr "Ein kaputter Laptop. Nun ist er praktisch ein Briefbeschwerer." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "kaputter Schauboter" @@ -48749,9 +48978,7 @@ msgstr "" "mehr nach Unterstützung rufen kann. Könnte für Bauteile auseinandergenommen " "werden." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "kaputter Scheuchboter" @@ -48767,7 +48994,6 @@ msgstr "" " festen Boden liegt. Er könnte für Bauteile demontiert werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -48781,7 +49007,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "kaputter Polizeiroboter" @@ -48797,7 +49022,6 @@ msgstr "" " und stumm ist. Könnte für Bauteile auseinandergenommen werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -48811,7 +49035,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -48832,7 +49055,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -48846,7 +49068,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "kaputter Antikrawallroboter" @@ -48862,7 +49083,6 @@ msgstr "" "kein Gas mehr hat. Könnte für Bauteile auseinandergenommen werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -48875,9 +49095,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "kaputter Bergroboter" @@ -48894,7 +49112,6 @@ msgstr "" "mehr graben kann. Könnte für Bauteile auseinandergenommen werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -48908,21 +49125,18 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -48937,7 +49151,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -48952,9 +49165,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "kaputte Klingendrohne" @@ -48972,9 +49183,7 @@ msgstr "" " sie willenlos auf dem Boden liegt. Sie könnte für Bauteile demontiert " "werden." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "kaputte Granatendrohne" @@ -48991,9 +49200,7 @@ msgstr "" "wo sie still auf dem festen Boden liegt. Sie könnte für Bauteile demontiert " "werden." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "kaputte Atombömbchendrohne" @@ -49009,9 +49216,7 @@ msgstr "" "Eine kaputte magentafarbene Drohne. Allein schon der Anblick des Wracks " "bringt dich zum Zittern. Sie könnte für Bauteile demontiert werden." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "kaputte Tränengasdrohne" @@ -49028,9 +49233,7 @@ msgstr "" "wo sie still auf dem festen Boden liegt. Sie könnte für Bauteile demontiert " "werden." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "kaputte EMP-Drohne" @@ -49047,9 +49250,7 @@ msgstr "" "sie still auf dem festen Boden liegt. Sie könnte für Bauteile demontiert " "werden." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "kaputte Blendgranatendrohne" @@ -49066,9 +49267,7 @@ msgstr "" "jetzt, wo sie still auf dem festen Boden liegt. Sie könnte für Bauteile " "demontiert werden." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "kaputte C-4-Drohne" @@ -49113,7 +49312,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "Prozessorplatine" @@ -49127,7 +49325,6 @@ msgstr "" "fortgeschrittener elektronischer Geräte verwendet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "RAM" @@ -49140,7 +49337,6 @@ msgstr "" "Ein Speicherstick. Nützlich in fortgeschrittenen Elektronikfertigungen." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "Energieumwandler" @@ -49152,7 +49348,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "Eine Stromversorgungseinheit. Nützlich in vielen Elektronik-Rezepten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "Verstärkerschaltung" @@ -49168,7 +49363,6 @@ msgstr "" "elektronischen Bauplänen." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "Transponderschaltung" @@ -49184,7 +49378,6 @@ msgstr "" " von Kommunikationsgeräten verwendet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "Signalempfänger" @@ -49200,7 +49393,6 @@ msgstr "" "Kommunikationsequipment zu fertigen." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -49214,7 +49406,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "kleiner LCD-Bildschirm" @@ -49230,7 +49421,6 @@ msgstr "" "Bildern benutzt wird. Nützlich in ein paar Elektronikrezepten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "Qualitätslinse" @@ -49247,7 +49437,6 @@ msgstr "" "Könnte nützlich sein, um ein Feuer zu entfachen." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "kleine Qualitätslinse" @@ -49264,7 +49453,6 @@ msgstr "" "streuen. Könnte nützlich für die Fertigung sein." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "Paar getönte Gläser" @@ -49280,7 +49468,6 @@ msgstr "" " wurden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "ausgebranntes Bionik" @@ -49331,7 +49518,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "Antenne" @@ -49345,7 +49531,6 @@ msgstr "" "Elektronikrezepten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "Mikromotor" @@ -49361,7 +49546,6 @@ msgstr "" "wird. Nützlich in vielen Elektronik-Rezepten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "Leiterplatte" @@ -49377,7 +49561,6 @@ msgstr "" "Substrat hält und sie elektrisch miteinander verbindet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "Elektroschrott" @@ -49407,7 +49590,6 @@ msgstr "" "Verstärker umzuwandeln." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "Tischventilator" @@ -49420,7 +49602,6 @@ msgstr "" "Ein kleiner Ventilator, er wird benutzt um Luft durch einen Raum zu wirbeln." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "Keramikpanzerplatte" @@ -49449,7 +49630,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "Lumpen" @@ -49486,7 +49666,6 @@ msgstr "" "gereinigt werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -49501,7 +49680,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "Uhr" @@ -49525,7 +49703,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "Eine kleine Auswahl von Zahnrädern und anderem Uhrwerk-Zeugs." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "SD-Speicherkarte" @@ -49537,7 +49714,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "Eine Speicherkarte, gebraucht. Könnte einen Blick wert sein." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "SD-Speicherkarte (leer)" @@ -49555,7 +49731,6 @@ msgstr "" "speichern!" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "SD-Speicherkarte (verschlüsselt)" @@ -49572,7 +49747,6 @@ msgstr "" "Hoffentlich enthält sie etwas, was es wert ist, verschlüsselt zu werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "Wissenschaft-SD-Speicherkarte" @@ -49607,7 +49781,6 @@ msgstr "" "unmöglich ohne ein Brecheisen." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "Kiefernzweig" @@ -49623,7 +49796,6 @@ msgstr "" "stechender Nadeln." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "Kiefernzapfen" @@ -49663,7 +49835,6 @@ msgstr "" "Samen, die noch nicht von Tieren gegessen wurden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -49676,14 +49847,12 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -49697,7 +49866,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "Tonklumpen" @@ -49709,7 +49877,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "Ein frisches Stück Ton. Nützlich in ein einigen Fertigungsrezepten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "Ziegel" @@ -49721,7 +49888,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "Ein feuergehärteter Baustein für Maurerarbeiten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "Mörtel" @@ -49733,7 +49899,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Etwas Mörtel, bereit, um in einem Bauprojekt verwendet zu werden." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -49757,7 +49922,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -49771,7 +49935,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -49785,7 +49948,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -49797,7 +49959,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "Birkenrinde" @@ -49811,7 +49972,6 @@ msgstr "" "wurde." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -49827,7 +49987,6 @@ msgstr "" "Produktion von Aspirin verwendet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "Diamant" @@ -49839,7 +49998,6 @@ msgid "A sparkling diamond." msgstr "Ein funkelnder Diamant." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -49851,7 +50009,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -49863,7 +50020,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -49875,7 +50031,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -49887,7 +50042,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -49899,7 +50053,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -49911,7 +50064,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -49923,7 +50075,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -49935,7 +50086,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -49947,7 +50097,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -49959,7 +50108,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -49971,7 +50119,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -49983,7 +50130,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "Topase" @@ -49995,7 +50141,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "gepökelte Tierhaut" @@ -50010,7 +50155,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "gepökeltes Fell" @@ -50051,7 +50195,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "Alte Strohpuppe. Stellt eine Frau in einem Kleid dar." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "Kissen" @@ -50063,7 +50206,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Ein Kissen, auf das du einen Kopf beim Schlafen legen kannst." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "Dakimakura Körperkissen" @@ -50079,7 +50221,6 @@ msgstr "" "Vorderseite und einer leicht bekleideten Version auf dessen Rückseite." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "Daunenkissen" @@ -50091,7 +50232,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "Ein weiches Kissen, auf das du einen Kopf beim Schlafen legen kannst." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "Teddybär" @@ -50113,7 +50253,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "Geldbündel" @@ -50168,7 +50307,7 @@ msgstr[1] "Zigarren" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "Löschen" @@ -50298,7 +50437,6 @@ msgstr "" "werden, um geraucht werden zu können." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "Geldkarte" @@ -50329,7 +50467,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "silberne Benzinrabattkarte" @@ -50341,7 +50478,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Diese Karte gibt dir einen kleinen Rabatt beim Kauf von Benzin." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "goldene Benzinrabattkarte" @@ -50353,7 +50489,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Diese Karte gibt dir einen guten Rabatt beim Kauf von Benzin." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "platine Benzinrabattkarte" @@ -50365,7 +50500,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "Diese Karte gibt dir einen prächtigen Rabatt beim Kauf von Benzin." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "Wissenschaftler-Dienstausweis" @@ -50383,7 +50517,6 @@ msgstr "" "Bedienfeld ermöglichen, falls du eines findest." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "Offiziers-Dienstausweis" @@ -50401,7 +50534,6 @@ msgstr "" "Bedienfeld ermöglichen, falls du eines findest." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -50416,7 +50548,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -50475,7 +50606,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "Glühlampe" @@ -50500,7 +50630,6 @@ msgid "A twisted shard of jagged metal." msgstr "Eine verdrillte Scherbe aus gezacktem Metall." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "Tonblumentopf" @@ -50512,7 +50641,6 @@ msgid "A nice looking clay pot used for planting." msgstr "Ein schön aussehender Tontopf zum Bepflanzen." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "Plastikblumentopf" @@ -50661,7 +50789,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -50674,9 +50801,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "kaputter Geschützturm" @@ -50689,9 +50814,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "kaputter Antikrawallgeschützturm" @@ -50704,16 +50827,14 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "kaputter Laser-Geschützturm" msgstr[1] "kaputte Laser-Geschütztürme" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -50727,7 +50848,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -50743,7 +50863,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -50801,21 +50920,18 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -51014,7 +51130,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -51174,7 +51289,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -51188,7 +51302,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -51202,7 +51315,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -51216,7 +51328,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -51228,7 +51339,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -51242,7 +51352,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -51256,7 +51365,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "KI-Kern" @@ -51270,7 +51378,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -51282,7 +51389,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -51294,7 +51400,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -51777,7 +51882,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "sonstige Software" @@ -51789,7 +51893,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Irgeindeine Hobbysoftware. Wahrscheinlich nutzlos." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "hackPRO" @@ -51801,7 +51904,6 @@ msgid "A piece of hacking software." msgstr "Eine Hackingsoftware." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "MediSoft" @@ -51813,7 +51915,6 @@ msgid "A piece of medical software." msgstr "Eine medizinische Software." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MatheMAX" @@ -51825,7 +51926,6 @@ msgid "A piece of mathematical software." msgstr "Eine Mathematik-Software." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "Infektionsdaten" @@ -51837,7 +51937,6 @@ msgid "Medical data on zombie blood." msgstr "Medizinische Daten über Zombieblut." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "Labordaten" @@ -51849,7 +51948,6 @@ msgid "Research archives from a government laboratory." msgstr "Forschungsarchive von einem Regierungslabor." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "Zugdaten" @@ -51861,7 +51959,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "Logistische Daten zu unterirdischen Zugstrecken und Fahrplänen." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -51876,7 +51973,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -52565,7 +52661,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Abdeckung schließen" @@ -52598,7 +52694,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Abdeckung öffnen" @@ -56696,7 +56792,6 @@ msgstr "" "Waffe abgefeuert oder bei der Fertigung von Munition verwendet werden." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -57363,7 +57458,8 @@ msgstr "" "Flexibilitätsverlust und zusätzliches Gewicht beschert. Sie hat vier " "Taschen, welche Magazine halten können." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "Köcher" @@ -57378,7 +57474,8 @@ msgstr "" "Ein Lederköcher, der an der Taille getragen wird und 20 Pfeile enthalten " "kann. Aktiviere ihn, um Pfeile einzulagern." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "Birkenrindenköcher" @@ -57393,7 +57490,8 @@ msgstr "" "Ein Köcher aus Birkenrindenstreifen, der an der Taille getragen wird und 20 " "Pfeile aufnehmen kann. Aktiviere ihn, um Pfeile darin zu lagern." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "großer Köcher" @@ -57411,7 +57509,8 @@ msgstr "" "Pferd, statt von Bogenschützen zu Fuß, aber keiner von IHNEN musste gegen " "Zombies kämpfen. Aktiviere ihn, um Pfeile einzulagern." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "großer Birkenrindenköcher" @@ -57941,7 +58040,7 @@ msgstr[1] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Du steckst %s in die Scheide." @@ -58207,7 +58306,7 @@ msgstr[1] "Ledergürtel" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "Du steckst %s in %s" @@ -58217,14 +58316,14 @@ msgstr "Du steckst %s in %s" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "Was in deinen Gürtel stecken" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "Ein Ledergürtel. Nützlich, um deine Hose passend zu machen." @@ -61035,7 +61134,7 @@ msgstr[1] "Paar Überlebendenhandschuhe" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -69262,7 +69361,7 @@ msgstr[1] "Wanderrucksäcke" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "Klinge einstecken" @@ -77894,8 +77993,8 @@ msgstr[1] "einfache Werfer" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "einfach" @@ -78024,7 +78123,7 @@ msgstr[1] "einfache Flinten" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -78043,7 +78142,7 @@ msgstr[0] "Vorderschaftrepetierflinte" msgstr[1] "Vorderschaftrepetierflinten" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "ratsch-ratsch." @@ -79982,8 +80081,7 @@ msgstr "" " wahre Delikatesse, wenn sie richtig zubereitet werden." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "Blut" @@ -79991,7 +80089,6 @@ msgstr[1] "Blut" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Blut, vermutlich das eines Menschen. Widerwärtig!" @@ -80214,8 +80311,7 @@ msgstr "" "Zutat für viele Lebensmittel und Projekte benutzt werden. " #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -91890,6 +91986,20 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -96221,7 +96331,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -96235,7 +96344,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -96281,7 +96389,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -96316,7 +96423,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -96330,7 +96436,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -96950,7 +97055,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "Keramikteller" @@ -96962,7 +97066,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "Keramikschale" @@ -96974,7 +97077,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "Keramiktasse" @@ -96986,7 +97088,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -97067,7 +97168,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "Zinnteller" @@ -97079,7 +97179,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -97093,7 +97192,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "Hartzinnschale" @@ -97105,7 +97203,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -97117,7 +97214,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -97131,7 +97227,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "Glasschale" @@ -97167,7 +97262,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -97210,7 +97304,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -97252,7 +97345,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "Topf" @@ -97264,7 +97356,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "Hilfreich zum Kochen von Spaghetti und anderen Speisen." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -97277,7 +97368,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "Kupfertopf" @@ -97294,7 +97384,6 @@ msgstr "" "säurehaltigen Lebensmitteln abzuhalten." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -97308,7 +97397,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -97322,7 +97410,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "Einmachtopf" @@ -97345,7 +97432,6 @@ msgstr "" "hinzu." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "gusseiserne Bratpfanne" @@ -97360,7 +97446,6 @@ msgstr "" "und bei Bedarf natürlich auch zum Kochen." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "stählerne Bratpfanne" @@ -97375,7 +97460,6 @@ msgstr "" "und bei Bedarf natürlich auch zum Kochen." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "kupferne Bratpfanne" @@ -97392,7 +97476,6 @@ msgstr "" "Kochen." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "selbstgemachter Topf" @@ -97408,7 +97491,6 @@ msgstr "" "und Wasser zu kochen, aber nicht so nützlich wie richtiges Kochgeschirr." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "selbstgemachter Kupfertopf" @@ -97424,7 +97506,6 @@ msgstr "" "Wasser zu kochen, aber nicht so nützlich wie richtiges Kochgeschirr." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -97766,7 +97847,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "kurze Schnur" @@ -97778,7 +97858,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "Ein 15 cm langes Stück Baumwollschnur." #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "lange Schnur" @@ -99163,7 +99242,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "doppel" @@ -102424,7 +102503,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "unterläufig" @@ -102771,7 +102850,7 @@ msgstr "" "Treffgenauigkeit ein wenig." #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "Mündung" @@ -102966,7 +103045,7 @@ msgstr "" "befestigen kann. Mit ihm können Armbrustbolzen abgefeuert werden." #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "Schiene" @@ -103098,7 +103177,7 @@ msgstr "" "signifikant, aber es braucht etwas länger zum Ausrichten." #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "Visier" @@ -107551,14 +107630,12 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" msgstr[1] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "Fleischermesser" @@ -107574,7 +107651,6 @@ msgstr "" "ist der ideale Gegenstand fürs Schlachten von Leichen." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "Steakmesser" @@ -107591,7 +107667,6 @@ msgstr "" " Leichen." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "Schälmesser" @@ -107607,7 +107682,6 @@ msgstr "" "Schnitte an Gemüse ohne Verwendung eines Schneidbrettes gemacht ist. " #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "Kochmesser" @@ -107628,7 +107702,6 @@ msgstr "" "ist zum Schlachten zu sperrig. " #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "Tranchiermesser" @@ -107647,7 +107720,6 @@ msgstr "" "Schlachten. " #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "Brotmesser" @@ -107666,7 +107738,6 @@ msgstr "" "zerreißen kann. " #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "Gemüsehackmesser" @@ -107685,7 +107756,6 @@ msgstr "" "nicht so gute wie ein Fleischhackmesser. " #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "Fleischhackmesser" @@ -111580,7 +111650,6 @@ msgstr "" "kombiniert wird." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "Glasscherbe" @@ -111594,7 +111663,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "Glasscheibe" @@ -111617,7 +111685,6 @@ msgstr "" "reparieren." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "große Panzerglasscheibe" @@ -111630,7 +111697,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "Eine große, mit Stahlverdrahtung verstärkte Glasscheibe." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "kleine Panzerglasscheibe" @@ -111643,7 +111709,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "Eine kleine, mit Stahldrähten verstärkte Glasscheibe." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -111745,7 +111810,6 @@ msgid "A roll of purple carpet." msgstr "Eine violette Teppichrolle." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "Türspion" @@ -111761,7 +111825,6 @@ msgstr "" "gedacht, in einer Tür installiert zu werden." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -111773,7 +111836,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "Rohr" @@ -111788,7 +111850,6 @@ msgstr "" "Fertigungsrezepten." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -111805,7 +111866,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "Stachel" @@ -111821,7 +111881,6 @@ msgstr "" "etwas Schaden anrichten." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "Kupferrohr" @@ -111838,7 +111897,6 @@ msgstr "" "Fertigungsrezepten." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "Aluminiumbarren" @@ -111857,7 +111915,6 @@ msgstr "" "»prominentere« Anwendungszwecke." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "Wismut" @@ -111871,7 +111928,6 @@ msgstr "" "verwendet wird." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "Gold" @@ -111888,14 +111944,12 @@ msgstr "" "Vermögen wert gewesen, aber nun ist dessen Wert stark reduziert." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "Platin" msgstr[1] "Platin" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -111915,7 +111969,6 @@ msgstr "" "bei der Herstellung von Batterien verwendet wird." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "Blei" @@ -111932,7 +111985,6 @@ msgstr "" " Herstellung von Munition." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "Magnesiumpulver" @@ -111949,7 +112001,6 @@ msgstr "" "ähnlichen Dingen." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "Silber" @@ -111965,7 +112016,6 @@ msgstr "" "wert, aber sein Wert ist jetzt stark gesunken." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -111977,7 +112027,6 @@ msgid "A small sheet of metal." msgstr "Ein kleines Metallblech." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -111993,7 +112042,6 @@ msgstr "" "auch für ein paar Fertigungsrezepte brauchbar." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -112006,7 +112054,6 @@ msgstr "" "Ein schweres geformtes Stück Stahl. Nützlich in einigen Fertigungsrezepten." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -112022,7 +112069,6 @@ msgstr "" "Nützlich für die Herstellung von Türen." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "Kupferstückchen" @@ -112035,7 +112081,6 @@ msgstr "" "Ein kleiner Kupferbrocken, nützlich für die Fertigung oder Reparaturen." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -112049,7 +112094,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -112090,7 +112134,6 @@ msgstr "" "Ein langer Besen. Ist eine furchtbare Waffe, es sei denn, du jagst Katzen." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "Keramikscherbe" @@ -112156,7 +112199,6 @@ msgstr "" "Explosionen zu entkommen." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "scharfer Stein" @@ -112229,7 +112271,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "Plastikstück" @@ -112259,7 +112300,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -112274,8 +112314,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "Plastikplatte" @@ -112292,7 +112330,6 @@ msgstr "" "Wettereinflüssen benutzt wird. " #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -112306,7 +112343,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -112320,7 +112356,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "Holzscheit" @@ -112334,7 +112369,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -112347,7 +112381,6 @@ msgstr "" "Ein zersplittertes Stück Holz, könnte als Spieß dienen oder zum Anzünden." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "schwerer Stock" @@ -112359,7 +112392,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "Ein robuster, schwerer Stock. Er ist eine annehmbare Nahkampfwaffe. " #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "langer Stock" @@ -112375,7 +112407,6 @@ msgstr "" "Stöcken für die Fertigung zerstückelt werden." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -112388,8 +112419,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "Brett" @@ -112404,7 +112434,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -112419,7 +112448,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -112435,7 +112463,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -112450,7 +112477,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -112489,7 +112515,6 @@ msgstr "" "fasst 500 ml Flüssigkeit." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "Atomkaffeemaschine" @@ -112506,7 +112531,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -112532,7 +112556,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "Dosenversiegeler" @@ -112548,7 +112571,6 @@ msgstr "" "Blechdosen versiegeln kann." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "Tranchiergerät (aus)" @@ -112590,7 +112612,6 @@ msgstr "" "schwirren. Benutze ihn, um ihn auszuschalten." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "Holzkohlenwasserreiniger" @@ -112611,7 +112632,6 @@ msgstr "" "unsauber sein." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "Barbecue-Smoker" @@ -112628,7 +112648,6 @@ msgstr "" "mittels Rauch." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "Holzkohlekocher" @@ -112644,7 +112663,6 @@ msgstr "" "Zündflamme wurde angebracht. Du könntest ihn benutzen, um Nahrung zu kochen." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "Tontopf" @@ -112656,7 +112674,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "Ein grober Tontopf mit Deckel. Er wird zum Kochen verwendet." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "Tonhandmühle" @@ -112668,7 +112685,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "Dies ist eine einfache Tonhandmühle, um Korn zu zermalmen." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "Tonteekanne" @@ -112680,7 +112696,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "Eine Tonteekanne. Jetzt brauchst du nur noch Tee und Wasser." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "Kaffeekocher" @@ -112699,7 +112714,6 @@ msgstr "" "wenn du möchtest, zu machen." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "Nahrungsentfeuchter" @@ -112716,7 +112730,6 @@ msgstr "" "Nahrungsmitteln sein." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "fermentierendes Eierglas" @@ -112746,7 +112759,6 @@ msgstr "" "kannst das Glasgefäß versiegeln, sobald der Prozess abgeschlossen wurde." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "Hexamin-Ofen" @@ -112762,7 +112774,6 @@ msgstr "" "Hexamintabletten zu Kochen zu verwenden." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -112850,7 +112861,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "Essensbearbeiter" @@ -112866,7 +112876,6 @@ msgstr "" "pürieren und mixen kann." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "Benzinkocher" @@ -112898,7 +112907,6 @@ msgstr "" "verwendet werden." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "Kochplatte" @@ -112983,7 +112991,6 @@ msgstr "" "Öffnen und iss es zum Genießen." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "selbstgemachtes Vakuumverpackungsgerät" @@ -112999,7 +113006,6 @@ msgstr "" " benutzt, um Nahrung vakuumzuverpacken, damit sie haltbar bleibt." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "Campinggeschirr" @@ -113018,7 +113024,6 @@ msgstr "" " Esbit-Ofens." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "Kochgeschirr" @@ -113037,7 +113042,6 @@ msgstr "" "Campinggeschirre haben." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "Kochgeschirr" @@ -113060,7 +113064,6 @@ msgstr "" "Ofens. Kompakt, haltbar und leicht." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -113079,7 +113082,6 @@ msgstr "" "Zeit im Vergleich mit komplexeren Methoden." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "Mehrfunktionsherd" @@ -113114,7 +113116,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "Lampenölkocher" @@ -113130,7 +113131,6 @@ msgstr "" "für das Kochen von Nahrung ausgelegt." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "Pastastrangpresse" @@ -113147,7 +113147,6 @@ msgstr "" "Pastasorten zu machen." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "fermentierendes Essiggurkenglas" @@ -113178,7 +113177,6 @@ msgstr "" "abgeschlossen wurde." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "Getränkedosenherdset" @@ -113192,7 +113190,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "Schnellkochtopf" @@ -113211,7 +113208,6 @@ msgstr "" "verwendet werden." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "Handmühle" @@ -113223,7 +113219,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "Dies ist eine einfache Handmühle, um Korn zu zermalmen." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "fermentierendes Sauerkrautglasgefäß" @@ -113280,7 +113275,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "Überlebendencampinggeschirr" @@ -113299,7 +113293,6 @@ msgstr "" "Materialien." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "Teekanne" @@ -113313,7 +113306,6 @@ msgstr "" "vollständig." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "Vakuumverpackungsgerät" @@ -113329,7 +113321,6 @@ msgstr "" "benutzt, um Nahrung vakuumzuverpacken, damit sie haltbar bleibt." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "Waffeleisen" @@ -113424,7 +113415,6 @@ msgstr "" "Bett ist, ist es besser, als auf dem Boden zu schlafen." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "Klappfahrrrad" @@ -113441,6 +113431,22 @@ msgid "This is a bicycle folded into a relatively portable package." msgstr "" "Dies ist ein Fahrrad, das in eine relativ tragbare Form gefaltet wurde." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -113449,7 +113455,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "Schlauchboot" @@ -113509,7 +113514,6 @@ msgstr "" " zu sein. Sie wurde zusammengerollt und kann transportiert werden." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -113542,7 +113546,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "fortgeschrittene Esz." @@ -113558,7 +113561,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "Kamera" @@ -113577,7 +113579,6 @@ msgstr "" "gewöhnliche Batterien." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -113595,7 +113596,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "Handy" @@ -113629,7 +113629,6 @@ msgstr "" "nützlichen Alarm-Funktion." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -113644,7 +113643,6 @@ msgid "You stop lighting up the screen." msgstr "Du verwendest den Bildschirm nicht länger als Quelle für Licht." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "Steuerungslaptop" @@ -113659,7 +113657,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "Richtantenne" @@ -113688,7 +113685,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "E-Ink-Tablet-PC" @@ -113702,9 +113698,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "Elektrohack" @@ -113726,7 +113720,6 @@ msgstr "" "Batterieladungen je Verwendung." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "Geigerzähler (aus)" @@ -113746,7 +113739,6 @@ msgstr "" " Es ist momentan ausgeschaltet." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "Geigerzähler (an)" @@ -113767,7 +113759,6 @@ msgstr "" " Es ist momentan angeschaltet." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -113799,7 +113790,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "MP3-Player (aus)" @@ -113834,7 +113824,6 @@ msgstr "" "schwächt zudem dein Gehör." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "Krachmacher (aus)" @@ -113865,7 +113854,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "tragbare Spielkonsole" @@ -113881,7 +113869,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "Smartphone" @@ -113965,7 +113952,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "Vibrator" @@ -113982,7 +113968,6 @@ msgstr "" "machen und dich zu entspannen." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -114006,7 +113991,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -114021,7 +114005,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "Brecheisen" @@ -114039,7 +114022,6 @@ msgstr "" "könntest es auch halten, um ein paar Köpfe einzuschlagen." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -114056,7 +114038,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "improvisierter Dietrich" @@ -114073,7 +114054,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "Eispickel" @@ -114092,7 +114072,6 @@ msgstr "" "oder Gullydeckel anzuheben." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "selbstgemachtes Brecheisen" @@ -114108,7 +114087,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "Schlosser-Set" @@ -115178,7 +115156,6 @@ msgstr "" "einem lauten Zischen, was große Rauchwolken ausspuckt." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "Elektroanzünder" @@ -115194,7 +115171,6 @@ msgstr "" "ineffizientes Feuerzeug dienen kann." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "Feuerbohrer" @@ -115214,7 +115190,6 @@ msgstr "" "Werkzeug ein Feuer zu entfachen." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "Camping-Feuerbohrer" @@ -115234,7 +115209,6 @@ msgstr "" "schwierig, mit diesem Werkzeug ein Feuer zu entfachen." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "Feuerstein und Stahl" @@ -115249,7 +115223,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "Feuerzeug" @@ -115268,7 +115241,6 @@ msgstr "" "naheliegender Gegenstände verwenden." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "Lupe" @@ -115285,7 +115257,6 @@ msgstr "" "entfachen." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "Streichholzbrief" @@ -115305,7 +115276,6 @@ msgstr "" "kannst Streichhölzer auch zum Anzünden naheliegender Gegenstände verwenden." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "wiederbefüllbares Feuerzeug" @@ -115349,7 +115319,6 @@ msgstr "" "Dies ist ein wiederbefüllbares Feuerzeug mit Klappdeckel. Die Flamme ist an." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "Glühaschenträger" @@ -115383,7 +115352,6 @@ msgstr "" "moderne Werkzeuge zu entfachen." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "Glühaschenträger (angezündet)" @@ -115424,7 +115392,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -115452,7 +115419,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "Feuerwehraxt" @@ -115469,7 +115435,6 @@ msgstr "" " langsam, sich nach einem Schwung wieder aufzuraffen." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "Halligan-Tool" @@ -115536,7 +115501,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -115550,7 +115514,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "Plastikreuse" @@ -115586,7 +115549,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "Angelhaken" @@ -115598,7 +115560,6 @@ msgid "A simple fishing hook." msgstr "Ein einfacher Angelhaken." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "improvisierter Angelhaken" @@ -115610,7 +115571,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "Ein improvisierter Angelhaken, geschnitzt aus Holz oder Knochen." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "einfache Angel" @@ -115626,7 +115586,6 @@ msgstr "" "Wahrheit ist dies ein Stock mit einem Stück Faden und einen Haken." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "Profi-Angel" @@ -115642,7 +115601,6 @@ msgstr "" "der Lage sein, sie dir alle zu schnappen." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -115658,7 +115616,6 @@ msgstr "" "alles, was du brauchst, um deine eigene Munition wiederzuladen." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -115676,7 +115633,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "kinetischer Patronenzieher" @@ -115705,7 +115661,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "Kupfermesser" @@ -115739,7 +115694,6 @@ msgstr "" "praktisch keinen Platz in jemandes Taschen ein." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "Stockmeißel" @@ -115755,7 +115709,6 @@ msgstr "" "Bienenstöcken. Ist eine annehmbare Waffe." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "Taschenmesser" @@ -115800,7 +115753,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "Grabstock" @@ -115817,7 +115769,6 @@ msgstr "" " keine tiefen." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "Pflanzschaufel" @@ -115832,7 +115783,6 @@ msgstr "" "auszugraben." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "Gartenhacke" @@ -115849,7 +115799,6 @@ msgstr "" " oder, um eine untiefe Grube zu graben." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -115879,7 +115828,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "Sense" @@ -115898,7 +115846,6 @@ msgstr "" "benutzen." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "Schaufel" @@ -115924,7 +115871,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "Sichel" @@ -115943,7 +115889,6 @@ msgstr "" "zu benutzen." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "Heckenschneider (aus)" @@ -115993,7 +115938,6 @@ msgstr "" "benutze diesen Gegenstand, um ihn auszuschalten." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "Atomlampe" @@ -116015,7 +115959,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "Atomlampe (abgedeckt)" @@ -116039,7 +115982,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -116048,7 +115990,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "Du schließt die Abdeckung des Nachtlichts." @@ -116063,7 +116005,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -116074,7 +116015,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "Du öffnest die Abdeckung des Nachtlichts." @@ -116131,7 +116072,6 @@ msgstr "" "ziemlich lange brennen. Die Kerze brennt." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "elektrische Laterne (aus)" @@ -116176,7 +116116,6 @@ msgid "You turn the lamp off." msgstr "Du schaltest die Lampe aus." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "Taschenlampe (aus)" @@ -116355,7 +116294,6 @@ msgstr "" "eine halbe Stunde reichen, bevor sie ausbrennt." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "Hochleistungstaschenlampe (aus)" @@ -116504,7 +116442,6 @@ msgid "The %s is extinguished" msgstr "%s ist gelöscht" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "Leselicht" @@ -116550,7 +116487,6 @@ msgstr "" "gedacht. Dieses hier ist angeschalten" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "schlaue Lampe (aus)" @@ -116607,7 +116543,7 @@ msgstr[1] "Fackeln" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "Fackel entzünden" @@ -116615,7 +116551,7 @@ msgstr "Fackel entzünden" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Du entzündest die Fackel." @@ -116635,7 +116571,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "Die Fackel ist gelöscht." @@ -116649,7 +116585,6 @@ msgstr "" "einem entflammbaren Material getränkt. Er brennt und spendet viel Licht." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -116723,7 +116658,6 @@ msgstr "" "manuell verabreicht werden." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -116773,7 +116707,6 @@ msgstr "" " als zwei Dosen pro Stunde einzunehmen." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "Skalpell" @@ -116808,7 +116741,6 @@ msgstr "" "kann einen kurzen Energieschub bieten." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "Spritze" @@ -116822,7 +116754,6 @@ msgstr "" "Medikamenten benutzt." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "Thermometer" @@ -116852,7 +116783,6 @@ msgstr "" "einen kurzen Energieschub bieten." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "Blutentnahmesatz" @@ -116871,7 +116801,6 @@ msgstr "" "stehst." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "verpackte Radioaktivitätsplakette" @@ -116912,7 +116841,6 @@ msgstr "" "Metallverarbeitungsfertigungsrezepte verwendet." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "Bronzeamboss" @@ -116929,7 +116857,6 @@ msgstr "" "Metallverarbeitungsfertigungsrezepte verwendet." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "Bolzenschneider" @@ -116946,7 +116873,6 @@ msgstr "" "dicken Draht zu zerschneiden." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "Holzkohleschmiede" @@ -116971,7 +116897,6 @@ msgstr "" "Sauerstoff." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "Metallverarbeitungsmeißel" @@ -116987,7 +116912,6 @@ msgstr "" "Metallverarbeitungsfertigungsrezepten verwendet." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "Schmelztiegel" @@ -117003,7 +116927,6 @@ msgstr "" "Metallarbeitsfertigungsrezepten verwendet." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "Tonschmelztiegel" @@ -117019,7 +116942,6 @@ msgstr "" "kannst ihn für die Metallarbeit benutzen." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "elektrische Schmiede" @@ -117036,7 +116958,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "ausgebrannter Holzkohleofen" @@ -117076,7 +116997,6 @@ msgstr "" "Holzkohle wird, gefüllst ist." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "angefeuerter Holzkohleofen" @@ -117119,7 +117039,6 @@ msgstr "" " machen." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "Gesenke- und Prägestempelsatz" @@ -117136,7 +117055,6 @@ msgstr "" " gebraucht." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "Metallzange" @@ -117179,7 +117097,6 @@ msgstr "" "Hupgeräusch von sich geben." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "Wecker" @@ -117318,7 +117235,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "Schanzzeug" @@ -117360,7 +117276,6 @@ msgstr "" "Schießen anzünden." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "Pelz-Isomatte" @@ -117383,7 +117298,6 @@ msgstr "" "aufzurollen oder auf den Boden zu platzieren." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "Enterhaken" @@ -117409,7 +117323,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "Handpumpe" @@ -117468,7 +117381,6 @@ msgstr "" " Autos angebracht zu werden." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -117505,7 +117417,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -117604,7 +117515,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "Isomatte" @@ -117659,7 +117569,6 @@ msgstr "" "Aufzug im Gefahrenstoff-Sarkophag erhältst." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -117833,7 +117742,6 @@ msgstr "" " um ihn zu sammeln." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "Pfeifen-Multifunktionswerkzeug" @@ -117972,7 +117880,6 @@ msgstr "" " ist, als gehörte sie einst dem Besten, den es je gab." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "Hühnerkäfig" @@ -117990,7 +117897,6 @@ msgstr "" "Tier, um es zu fangen, benutze es auf einem leeren Feld, um es freizulassen." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "Hundepfeife" @@ -118009,7 +117915,6 @@ msgstr "" "gerade gehorchen." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -118021,7 +117926,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -118033,7 +117937,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -118047,7 +117950,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] " Transportbox" @@ -118064,7 +117966,6 @@ msgstr "" "einem leeren Feld, um es freizulassen." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -118078,7 +117979,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -118117,7 +118017,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "Fernbedienung" @@ -118135,7 +118034,6 @@ msgstr "" "tun. Vielleicht waren sie für das Luxusmodell?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "Funkmodellauto" @@ -118179,7 +118077,6 @@ msgstr "" "angeschlossen werden und sie aktivieren, nachdem es ein Funksignal empfängt." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "Radio (aus)" @@ -118211,7 +118108,6 @@ msgstr "" "kommt, ab." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "Funksprechgerät" @@ -118225,7 +118121,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "Fahrzeugfernbedienung" @@ -118318,7 +118213,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "Planenregenfänger" @@ -118336,7 +118230,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "Barometer" @@ -118365,7 +118258,6 @@ msgstr "" "Gefahr.«. Du glaubst, dass du etwas sich darin bewegen fühlen könnest." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "Chemiebaukasten" @@ -118384,7 +118276,6 @@ msgstr "" " so großen Wert darauf legst." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "einfacher Chemiebaukasten" @@ -118403,7 +118294,6 @@ msgstr "" " Hitzequelle." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "Elektrolyse-Set" @@ -118435,7 +118325,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "Wasserstofftank" @@ -118449,7 +118338,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "Luftfeuchtemesser" @@ -118463,7 +118351,6 @@ msgstr "" "kann." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -118477,7 +118364,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -118491,7 +118377,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "Platingitter" @@ -118553,7 +118438,6 @@ msgstr "" "teleportiert, sobald es aktiviert ist." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "Doppler Radar Turbo 2000" @@ -118571,7 +118455,6 @@ msgstr "" "Daten. Allerdings gibt es keine Anzeichen des FLDSMDFR." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "einfacher Laboranalysesatz" @@ -118594,7 +118477,6 @@ msgstr "" "hast, auch tatsächlich die ist, die du zu machen glaubtest." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "Präzisionswaage" @@ -118610,7 +118492,6 @@ msgstr "" "Führungsschienen benutzt, um die Masse einer Probe genau zu messen." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "Spektrofotometer" @@ -118626,7 +118507,6 @@ msgstr "" "einer flüssigen Probe in einem besonderen Gefäß, das man »Küvette« nennt." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "pH-Messgerät" @@ -118645,7 +118525,6 @@ msgstr "" " ausrechnen." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -118661,7 +118540,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "Schmelzpunktapparatur" @@ -118685,7 +118563,6 @@ msgstr "" "Kristall er ist und wie rein er ist." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -118702,7 +118579,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "Lichtdetektor" @@ -118718,7 +118594,6 @@ msgstr "" "in elektrische Energie zur Mengenbestimmung umzuwandeln." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "Glasprisma" @@ -118749,7 +118624,6 @@ msgstr "" " wollen?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -118765,7 +118639,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -118782,7 +118655,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -118800,7 +118672,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -118818,7 +118689,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -118838,7 +118708,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -118855,7 +118724,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -118914,7 +118782,6 @@ msgstr "" "Platzieren. Dieser Unterstand wurde beschädigt und muss repariert werden." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "großes Zelt" @@ -118930,7 +118797,6 @@ msgstr "" "sperrig." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "Unterschlupfbausatz" @@ -118944,7 +118810,6 @@ msgstr "" "Platzieren." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "Zelt" @@ -119022,7 +118887,6 @@ msgstr "" "gemacht, den Konsum von geräucherten Tabakblättern zu ermöglichen." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -119034,7 +118898,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -119046,7 +118909,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "Schere" @@ -119061,7 +118923,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -119073,7 +118934,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Ein Stück Papier. Kann für Feuer benutzt werden." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -119088,7 +118948,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -119102,7 +118961,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "Paar Stricknadeln" @@ -119119,7 +118977,6 @@ msgstr "" "und Garn zu Stoff zu verarbeiten." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "Knochennadel" @@ -119150,7 +119007,6 @@ msgstr "" "ist es notwendig zum Nähen von Neopren." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "Holznadel" @@ -119166,8 +119022,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "Nähzeug" @@ -119201,8 +119056,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "Schneideraustattung" @@ -119218,7 +119072,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "Personenwaage" @@ -119232,7 +119085,6 @@ msgstr "" "wiegen. " #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "Scheuerbürste" @@ -119244,7 +119096,6 @@ msgid "This is a simple scrub brush." msgstr "Dies ist eine einfache Scheuerbürste." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "elektrischer Haarschneider" @@ -119292,7 +119143,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "Rasierklinge" @@ -119321,7 +119171,6 @@ msgstr "" "Seife pro Verwendung." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "Schwamm" @@ -119361,7 +119210,6 @@ msgstr "" "Seife hinzugegeben wird. Es benötigt 1 Einheit Seife pro Verwendung." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "Waschbrett" @@ -119377,7 +119225,6 @@ msgstr "" "Kleidung zu waschen, wenn es mit Reinigungsmittel versorgt wird." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -119420,7 +119267,6 @@ msgstr "" " zu vergraben." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "Klingenfalle" @@ -119444,7 +119290,6 @@ msgstr "" "ist in einem Bereich von 3×3 Feldern wirksam." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "Nagelbrettfalle" @@ -119496,7 +119341,6 @@ msgstr "" " mit Lärm warnt, sobald irgendetwas darauf tritt." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "lose Krähenfüße" @@ -119518,7 +119362,6 @@ msgstr "" "dessen Fuß gebohrt bekommen." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "lose Glaskrähenfüße" @@ -119577,7 +119420,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -119605,7 +119447,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "Stolperdrahtfalle" @@ -119643,7 +119484,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -119664,7 +119504,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "Holzaxt" @@ -119693,7 +119532,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "Kettensäge (aus)" @@ -119736,7 +119574,6 @@ msgstr "" "auszuschalten." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "Kreissäge (aus)" @@ -119785,7 +119622,6 @@ msgstr "" "auszuschalten." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "Kupferaxt" @@ -119817,7 +119653,6 @@ msgstr "" "Hammer als auch zum Zerhacken von Dingen nützlich." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "E-Kettensäge (aus)" @@ -119922,7 +119757,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "Holzsäge" @@ -119934,7 +119768,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "Dies ist eine dünne Säge, nützlich, um Holzobjekte durchzuschneiden." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -119942,7 +119775,6 @@ msgstr[1] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -120079,7 +119911,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -120095,7 +119926,6 @@ msgstr "" "unkomprimiertes Acetylen. " #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -120109,7 +119939,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "Ziegelofen" @@ -120126,7 +119955,6 @@ msgstr "" "Ton zu machen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "Paar Handkarden" @@ -120143,7 +119971,6 @@ msgstr "" "Textilherstellung verwendet werden." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "Farbschaber" @@ -120157,7 +119984,6 @@ msgstr "" "entfernen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -120171,7 +119997,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "Brecheisen" @@ -120186,7 +120011,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "Betonmischer" @@ -120203,7 +120027,6 @@ msgstr "" "ein eingebautes Heizgerät." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "drahtloser Bohrer" @@ -120218,7 +120041,6 @@ msgstr "" "Bohreinsätzen zum Bohren." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "Rocken und Spindel" @@ -120234,7 +120056,6 @@ msgstr "" "und Garn gebraucht werden." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "E-Presslufthammer" @@ -120249,7 +120070,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "Metallsäge" @@ -120276,7 +120096,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "Hammer" @@ -120309,7 +120128,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "Handbohrer" @@ -120325,7 +120143,6 @@ msgstr "" "langsam und wird dich schnell zur Erschöpfung bringen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "Gummischlauch" @@ -120341,7 +120158,6 @@ msgstr "" "Absaugen von Treibstoff eines Fahrzeugs gebraucht werden." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "Flaschenwagenheber" @@ -120354,7 +120170,6 @@ msgstr "" "Ein tragbarer Flaschenwagenheber, der benutzt wird, um Fahrzeuge zu heben." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "selbstgemachter Wagenheber" @@ -120370,7 +120185,6 @@ msgstr "" " Fahrzeugen, wenn du mutig genug bist, ihn zu benutzen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "Scherenwagenheber" @@ -120383,7 +120197,6 @@ msgstr "" "Ein kompakter Scherenwagenheber, der benutzt wird, um Fahrzeuge zu heben." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "Presslufthammer" @@ -120401,7 +120214,6 @@ msgstr "" " benachbartes festes Gelände zu bohren." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -120415,7 +120227,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "Elektroofen" @@ -120436,7 +120247,6 @@ msgstr "" "anschließen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "Waffenschmiederreparatursatz" @@ -120455,7 +120265,6 @@ msgstr "" "Batterieladungen pro Benutzung." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "selbstgebauter Hammer" @@ -120469,7 +120278,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -120483,7 +120291,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "metallisches Formglättewerkzeug" @@ -120499,7 +120306,6 @@ msgstr "" "Mörtel in Bauprojekten zu ebnen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -120530,7 +120336,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "Plastikform" @@ -120546,7 +120351,6 @@ msgstr "" "Plastikgegenständen geformt und benutzt werden." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "Mehrzweckwerkzeug" @@ -120562,7 +120366,6 @@ msgstr "" "Werkzeuge in die Griffe einer Zange kombiniert." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "Schweißbrenner" @@ -120586,7 +120389,6 @@ msgstr "" "Metallbarrieren zu zerstören." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "Malerpinsel" @@ -120598,7 +120400,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "Ein breiter Pinsel, geeignet, um Wände anzumalen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "Spitzhacke" @@ -120614,7 +120415,6 @@ msgstr "" " – mit genügend Erfahrung – harte Ziele zu zerschlagen. Schlag den Stein!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -120628,7 +120428,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "Zange" @@ -120643,7 +120442,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "Bohnermaschine" @@ -120675,7 +120473,6 @@ msgstr "" "kein Vergleich zu einem richtigen Hammer." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "Schraubenzieher" @@ -120692,7 +120489,6 @@ msgstr "" " viele weitere Verwendungszwecke." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "Schraubenzieher-Set" @@ -120709,7 +120505,6 @@ msgstr "" "Arbeiten." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "Feuerwaffenreparatursatz" @@ -120728,7 +120523,6 @@ msgstr "" "Batterieladungen pro Benutzung." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -120761,7 +120555,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "Werkzeugkasten" @@ -120777,7 +120570,6 @@ msgstr "" " für die meisten Haushaltswartungs- und Bauarbeiten geeignet ist." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -120806,7 +120598,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "Lichtbogenschweißgerät" @@ -120820,7 +120611,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "hölzernes Formglättewerkzeug" @@ -120837,7 +120627,6 @@ msgstr "" "Schlagwaffe für Schläge auf den Kopf benutzen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "Wollballen" @@ -120853,7 +120642,6 @@ msgstr "" "verarbeitet werden." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "Schablonenmesser" @@ -120874,7 +120662,6 @@ msgstr "" "ist zu klein, um damit Leichen zu schlachten." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "Schraubenschlüssel" @@ -120891,7 +120678,6 @@ msgstr "" "verwendet." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -120906,7 +120692,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -122259,6 +122044,17 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -122613,7 +122409,6 @@ msgstr "" "Zeit, als Kinder noch Eis statt Hirn wollten." #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -123092,6 +122887,13 @@ msgstr[1] "Holztische" msgid "A crude wooden table." msgstr "Ein ungehobelter Holztisch." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -123430,6 +123232,30 @@ msgstr[1] "Transportrollensätze" msgid "A set of casters, like on a shopping cart." msgstr "Ein Satz Transportrollen, für Sachen wie Einkaufswagen." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -124276,13 +124102,6 @@ msgstr "ZEMENT" msgid "FERTILIZER" msgstr "DÜNGER" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "STEIN" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -124612,13 +124431,6 @@ msgstr "PAPIER" msgid "PLASTIC" msgstr "PLASTIK" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "ELEKTRONIK" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -125179,7 +124991,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -125203,7 +125015,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Schmerz" @@ -129423,7 +129235,7 @@ msgstr[1] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "Dieser Mehrfunktionsherd hat ein eigenes Bewusstsein! Pass auf!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -129431,7 +129243,7 @@ msgstr[1] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "Ein Bild aus Licht, es sieht sehr realistisch aus." @@ -140291,9 +140103,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "Lass uns handeln!" @@ -141026,9 +140838,9 @@ msgstr "Was machst du hier?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -141044,9 +140856,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "Kann ich irgendetwas für dich tun?" @@ -141074,25 +140886,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "Warum gehst du nicht woanders hin?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "Dann lasst uns handeln." #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -141112,9 +140924,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -147906,7 +147718,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "Hey, !" @@ -158382,17 +158194,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -159713,7 +159525,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -165658,9 +165470,9 @@ msgstr "Irgendwelche Überlebenstipps?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "Auf Wiedersehen." @@ -175422,7 +175234,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Wald" @@ -175792,7 +175603,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "Blockhaus" @@ -175814,7 +175625,6 @@ msgstr "Blockhauskeller" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "Wald" @@ -178567,7 +178377,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "Seeufer" @@ -178614,7 +178423,7 @@ msgstr "WAFFE" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "ALLE" @@ -178739,6 +178548,13 @@ msgstr "ELEKTRONIK" msgid "CBMS" msgstr "KBMS" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "WERKZEUGE" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -178752,7 +178568,7 @@ msgstr "BELEUCHTUNG" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "KLEIDUNG" @@ -178793,7 +178609,7 @@ msgstr "MEDIZIN" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "MATERIAL" @@ -189637,7 +189453,7 @@ msgstr "klappbares leichtes Gestell" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -189742,6 +189558,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "Ganglampen" @@ -191682,6 +191505,24 @@ msgstr "" "Eine Gruppe aus kleinen Rädchen, die an Drehpunkten befestigt wurden, wie " "die bei einem Bürostuhl oder Einkaufswagen." +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "Räder" @@ -191758,7 +191599,7 @@ msgstr "" "befindet. Mit Draht verstärkt, damit es nicht so leicht wie normales Glas " "zerbricht." -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Fahrrad" @@ -191826,6 +191667,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "Kanu" @@ -191971,8 +191816,8 @@ msgid "Wheelbarrow" msgstr "Schubkarre" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Klappbarer Rollstuhl" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -192314,7 +192159,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "Sicherheitstransporter" @@ -199119,7 +198963,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -199127,8 +198971,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -200073,9 +199917,9 @@ msgstr[1] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -200088,7 +199932,7 @@ msgstr[1] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -217218,74 +217062,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -217295,177 +217071,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -218681,115 +218286,134 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -218797,157 +218421,213 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" msgstr[1] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" msgstr[1] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -218955,25 +218635,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -218981,25 +218661,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -219007,7 +218687,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -219015,7 +218695,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -219025,7 +218705,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -219035,7 +218715,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -219045,7 +218725,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -219055,7 +218735,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -219064,7 +218744,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -219073,7 +218753,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -219083,7 +218763,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -219092,18 +218772,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -219112,7 +218792,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -219120,18 +218800,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -219141,7 +218821,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -219150,18 +218830,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -219169,25 +218849,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -219195,59 +218875,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -219256,7 +218968,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -219265,25 +218977,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "Kirche" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -219295,7 +219007,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -219306,25 +219018,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -219334,7 +219046,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -219344,588 +219056,640 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -219937,245 +219701,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -220183,808 +219920,872 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" msgstr[1] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -220992,20 +220793,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -221013,74 +220814,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -221088,21 +220889,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -221110,105 +220911,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -221216,16 +221041,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -221233,74 +221058,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -221308,357 +221133,357 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "Extrem verängstigt" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -221666,175 +221491,99 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -221842,113 +221591,84 @@ msgstr[1] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "Ichaival" msgstr[1] "Ichaivals" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -221956,14 +221676,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -221971,39 +221691,39 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -222011,13 +221731,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -222025,13 +221745,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -222039,114 +221759,90 @@ msgstr[1] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -222154,12 +221850,12 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -222167,66 +221863,66 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -222234,19 +221930,19 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -222254,13 +221950,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -222268,13 +221964,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -222282,13 +221978,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -222296,70 +221992,70 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -222367,12 +222063,12 @@ msgstr[1] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -222380,313 +222076,278 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" msgstr[1] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -222695,4328 +222356,4915 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" msgstr[1] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" +"Etwas kristallisiertes Mana. Dieses kann in wiederaufladbare Manakristalle " +"umgefüllt werden, kann aber niemals entladen werden." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Mjölnir" +msgstr[1] "Mjölnire" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "Gungnir" +msgstr[1] "Gungnirs" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "Laevateinn" +msgstr[1] "Laevateinns" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -"Etwas kristallisiertes Mana. Dieses kann in wiederaufladbare Manakristalle " -"umgefüllt werden, kann aber niemals entladen werden." -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Mjölnir" -msgstr[1] "Mjölnire" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "Gungnir" -msgstr[1] "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "Laevateinn" -msgstr[1] "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -227025,7 +227273,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -227033,14 +227281,14 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -227048,40 +227296,40 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -227090,83 +227338,83 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" msgstr[1] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -227174,39 +227422,115 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -227217,31 +227541,31 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -227251,14 +227575,14 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -227267,62 +227591,63 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" msgstr[1] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" msgstr[1] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" msgstr[1] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -227331,25 +227656,25 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -227358,204 +227683,249 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" msgstr[1] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" msgstr[1] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" msgstr[1] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" msgstr[1] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" msgstr[1] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -227563,222 +227933,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "Töte 50 Zombies" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "Töte 150 Zombies" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -227786,48 +228156,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -227835,12 +228205,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -227848,12 +228218,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -227861,103 +228231,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -227966,276 +228336,296 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" msgstr[1] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" msgstr[1] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "Das ist ein Bug, der an sich nicht zu sehen sein sollte." -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "Sumpf" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Manuelle Bionikinstallation" @@ -234992,6 +235382,10 @@ msgstr "Aktivieren/untersuchen umschalten" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -235184,10 +235578,6 @@ msgstr "Ggnst. auf benachbartes Feld fallenlassen" msgid "View/Activate Bionics" msgstr "Bioniken betrachten/aktivieren" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Mutationen betrachten/aktivieren" @@ -241337,6 +241727,7 @@ msgstr " BIONIKEN " msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -241405,6 +241796,10 @@ msgstr "AN" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -242256,6 +242651,10 @@ msgstr "%s hat keine freie Hand, um das zu tragen." msgid "Can't wear more than one %s!" msgstr "Man kann nicht mehr als 1 %s tragen!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -258201,7 +258600,12 @@ msgid "Test which group?" msgstr "Welche Gruppe testen?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -264310,7 +264714,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -269550,10 +269960,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "%1$s wirft %2$s zu Boden!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -273821,7 +274232,7 @@ msgstr "Welt-Standard" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -281732,6 +282143,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -281873,6 +282289,16 @@ msgstr "Der Motor von %s macht ein spotzendes Geräusch." msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -282471,11 +282897,6 @@ msgstr "Sorgfältig faltest du %s in dessen tragbare Form zusammen." msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "gefaltenes %s" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/el.po b/lang/po/el.po index 07689adfc9de..b63afb544537 100644 --- a/lang/po/el.po +++ b/lang/po/el.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2023\n" "Language-Team: Greek (https://app.transifex.com/bn-team/teams/113585/el/)\n" "MIME-Version: 1.0\n" @@ -7523,6 +7523,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10838,7 +10849,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11286,75 +11297,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11368,51 +11395,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12155,12 +12220,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12202,6 +12267,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12659,7 +12895,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12694,7 +12930,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12731,7 +12967,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12900,7 +13136,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13018,7 +13254,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13093,7 +13329,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13275,7 +13511,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14460,7 +14696,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14469,22 +14705,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14497,7 +14733,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14509,7 +14745,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14522,7 +14758,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14540,7 +14776,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14549,12 +14785,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14614,7 +14850,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15037,7 +15273,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19301,12 +19537,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19331,18 +19567,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19351,7 +19587,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19359,12 +19595,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19389,18 +19625,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19408,19 +19644,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19443,12 +19679,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20205,15 +20441,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20221,7 +20457,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20229,6 +20465,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27446,7 +27710,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27563,7 +27826,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27629,7 +27891,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27650,7 +27911,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27658,7 +27918,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27666,7 +27925,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27685,8 +27943,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -27719,14 +27976,12 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27769,7 +28024,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27787,7 +28041,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -27832,7 +28085,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -27844,7 +28096,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -27852,7 +28103,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -27864,7 +28114,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28229,7 +28478,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28271,6 +28521,19 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28348,7 +28611,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28378,7 +28642,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28724,7 +28989,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -28833,8 +29097,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29083,7 +29348,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29111,7 +29376,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29234,7 +29499,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29294,7 +29558,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29617,7 +29880,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29704,7 +29967,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29731,7 +29994,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -29900,7 +30163,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30237,7 +30500,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30254,7 +30517,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30267,7 +30529,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30282,7 +30543,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30304,7 +30564,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30454,7 +30713,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31307,7 +31565,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -31723,7 +31980,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -31865,7 +32121,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -31890,7 +32145,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32435,9 +32689,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32471,7 +32737,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32487,7 +32752,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -32985,7 +33249,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -33000,7 +33263,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33016,7 +33278,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33082,7 +33343,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33120,7 +33380,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34607,7 +34866,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -34993,7 +35252,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35249,7 +35507,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -36890,7 +37147,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37527,7 +37783,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38560,7 +38815,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "" @@ -39482,7 +39736,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -39659,6 +39912,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -39722,7 +40011,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ΑΝ ΤΟ ΔΕΙΣ ΑΥΤΟ ΕΙΝΑΙ ΣΦΑΛΜΑ." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "νήμα" @@ -39735,7 +40023,6 @@ msgstr "" "Μια μικρή ποσότητα νήματος που θα μπορούσε να ξαναγεμίσει ένα σετ ραπτικής." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -39747,7 +40034,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Ένας σκληρός τένοντας κομμένος από ένα πτώμα, χρήσιμος ως νήμα." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -39760,7 +40046,6 @@ msgstr "" "Σκληρή, λεπτή ίνα, παρμένη από ένα φυτό. Μπορεί να χρησιμοποιηθεί ως νήμα." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -39783,7 +40068,6 @@ msgid "A cleansing agent made into bars." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -39795,7 +40079,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Ένα ρολό ιδιαίτερα ισχυρής ταινίας. Οι χρήσεις της είναι αμέτρητες." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -39809,7 +40092,6 @@ msgstr "" "τσιγάρων." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -39858,7 +40140,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40108,7 +40389,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40153,7 +40433,6 @@ msgid "" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40371,7 +40650,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "" @@ -40405,7 +40683,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "μπρούντζος" @@ -40734,7 +41011,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -42765,7 +43041,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "" @@ -42779,7 +43054,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -42794,7 +43068,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -42809,7 +43082,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -42832,7 +43104,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "" @@ -42859,7 +43130,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -42871,7 +43141,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -42885,7 +43154,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -43260,7 +43528,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -43274,7 +43541,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -43641,7 +43907,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -43690,7 +43955,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -45281,7 +45545,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -45294,7 +45557,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -45434,7 +45696,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -45446,7 +45707,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -45458,7 +45718,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -45470,7 +45729,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -45482,7 +45740,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -45494,7 +45751,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -45506,7 +45762,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -45541,7 +45796,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "" @@ -45555,7 +45809,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -45567,7 +45820,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -45598,7 +45850,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -45613,7 +45864,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -45627,7 +45877,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -45642,7 +45891,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -45719,7 +45967,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -45731,7 +45978,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -45745,7 +45991,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -45760,7 +46005,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -45811,7 +46055,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -45826,7 +46069,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -45840,7 +46082,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -45852,7 +46093,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -45867,7 +46107,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -45928,7 +46167,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -45980,7 +46218,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -45992,7 +46229,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -46005,7 +46241,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -46017,7 +46252,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -46057,7 +46291,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -46069,7 +46302,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -46083,7 +46315,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -46094,9 +46325,7 @@ msgstr[1] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -46110,9 +46339,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -46126,7 +46353,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -46140,7 +46366,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -46154,7 +46379,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -46168,7 +46392,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -46189,7 +46412,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -46203,7 +46425,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -46217,7 +46438,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -46230,9 +46450,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -46247,7 +46465,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -46261,21 +46478,18 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -46290,7 +46504,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -46305,9 +46518,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -46322,9 +46533,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -46338,9 +46547,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -46354,9 +46561,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -46370,9 +46575,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -46386,9 +46589,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -46402,9 +46603,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -46446,7 +46645,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -46458,7 +46656,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -46470,7 +46667,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -46482,7 +46678,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -46496,7 +46691,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -46510,7 +46704,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -46524,7 +46717,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -46538,7 +46730,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -46552,7 +46743,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -46567,7 +46757,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -46582,7 +46771,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -46596,7 +46784,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -46641,7 +46828,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -46653,7 +46839,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -46667,7 +46852,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -46681,7 +46865,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -46707,7 +46890,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -46719,7 +46901,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -46746,7 +46927,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -46779,7 +46959,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -46794,7 +46973,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -46818,7 +46996,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -46830,7 +47007,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -46845,7 +47021,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -46860,7 +47035,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -46892,7 +47066,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -46906,7 +47079,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -46940,7 +47112,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -46953,14 +47124,12 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -46974,7 +47143,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -46986,7 +47154,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -46998,7 +47165,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -47010,7 +47176,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -47034,7 +47199,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -47048,7 +47212,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -47062,7 +47225,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -47074,7 +47236,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -47086,7 +47247,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -47100,7 +47260,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -47112,7 +47271,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -47124,7 +47282,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -47136,7 +47293,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -47148,7 +47304,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -47160,7 +47315,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -47172,7 +47326,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -47184,7 +47337,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -47196,7 +47348,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -47208,7 +47359,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -47220,7 +47370,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -47232,7 +47381,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -47244,7 +47392,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -47256,7 +47403,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -47268,7 +47414,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -47283,7 +47428,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -47322,7 +47466,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -47334,7 +47477,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -47348,7 +47490,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -47360,7 +47501,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -47380,7 +47520,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -47431,7 +47570,7 @@ msgstr[1] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -47547,7 +47686,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -47575,7 +47713,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -47587,7 +47724,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -47599,7 +47735,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -47611,7 +47746,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -47626,7 +47760,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -47641,7 +47774,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -47656,7 +47788,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -47710,7 +47841,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -47733,7 +47863,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -47745,7 +47874,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -47880,7 +48008,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -47893,9 +48020,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -47908,9 +48033,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -47923,16 +48046,14 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -47946,7 +48067,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -47962,7 +48082,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -48020,21 +48139,18 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -48224,7 +48340,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -48382,7 +48497,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -48396,7 +48510,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -48410,7 +48523,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -48424,7 +48536,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -48436,7 +48547,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -48450,7 +48560,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -48464,7 +48573,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -48478,7 +48586,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -48490,7 +48597,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -48502,7 +48608,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -48985,7 +49090,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -48997,7 +49101,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -49009,7 +49112,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -49021,7 +49123,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -49033,7 +49134,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -49045,7 +49145,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -49057,7 +49156,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -49069,7 +49167,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -49084,7 +49181,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -49729,7 +49825,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -49762,7 +49858,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -53365,7 +53461,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -53971,7 +54066,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -53984,7 +54080,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -53997,7 +54094,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -54011,7 +54109,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -54520,7 +54619,7 @@ msgstr[1] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -54765,7 +54864,7 @@ msgstr[1] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -54775,14 +54874,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -57433,7 +57532,7 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -65365,7 +65464,7 @@ msgstr[1] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -73437,8 +73536,8 @@ msgstr[1] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -73567,7 +73666,7 @@ msgstr[1] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -73586,7 +73685,7 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -75378,8 +75477,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -75387,7 +75485,6 @@ msgstr[1] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -75585,8 +75682,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -86392,6 +86488,20 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -90591,7 +90701,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -90605,7 +90714,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -90651,7 +90759,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -90686,7 +90793,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -90700,7 +90806,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -91311,7 +91416,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -91323,7 +91427,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -91335,7 +91438,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -91347,7 +91449,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -91428,7 +91529,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -91440,7 +91540,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -91454,7 +91553,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -91466,7 +91564,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -91478,7 +91575,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -91492,7 +91588,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -91528,7 +91623,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -91571,7 +91665,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -91613,7 +91706,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -91625,7 +91717,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -91638,7 +91729,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -91652,7 +91742,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -91666,7 +91755,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -91680,7 +91768,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -91697,7 +91784,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -91710,7 +91796,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -91723,7 +91808,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -91737,7 +91821,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -91751,7 +91834,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -91765,7 +91847,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -92090,7 +92171,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -92102,7 +92182,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "" @@ -93358,7 +93437,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -96314,7 +96393,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -96637,7 +96716,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -96811,7 +96890,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -96929,7 +97008,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -101056,14 +101135,12 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" msgstr[1] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -101077,7 +101154,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -101091,7 +101167,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -101105,7 +101180,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -101121,7 +101195,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -101136,7 +101209,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -101151,7 +101223,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -101166,7 +101237,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -104633,7 +104703,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -104647,7 +104716,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -104668,7 +104736,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -104681,7 +104748,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -104694,7 +104760,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -104796,7 +104861,6 @@ msgid "A roll of purple carpet." msgstr "Ένα ρολό από μωβ χαλί." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -104810,7 +104874,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -104822,7 +104885,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -104835,7 +104897,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -104850,7 +104911,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -104864,7 +104924,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -104878,7 +104937,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -104893,7 +104951,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -104905,7 +104962,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -104920,14 +104976,12 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" msgstr[1] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -104943,7 +104997,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "" @@ -104957,7 +105010,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -104971,7 +105023,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "" @@ -104985,7 +105036,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -104997,7 +105047,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -105011,7 +105060,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -105023,7 +105071,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -105037,7 +105084,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -105049,7 +105095,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -105063,7 +105108,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -105101,7 +105145,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -105164,7 +105207,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -105233,7 +105275,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -105261,7 +105302,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -105276,8 +105316,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -105291,7 +105329,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -105305,7 +105342,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -105319,7 +105355,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -105333,7 +105368,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -105345,7 +105379,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -105357,7 +105390,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -105371,7 +105403,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -105384,8 +105415,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -105400,7 +105430,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -105415,7 +105444,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -105431,7 +105459,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -105446,7 +105473,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -105482,7 +105508,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -105499,7 +105524,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -105525,7 +105549,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -105539,7 +105562,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -105579,7 +105601,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -105595,7 +105616,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -105609,7 +105629,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -105623,7 +105642,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -105635,7 +105653,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -105647,7 +105664,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -105659,7 +105675,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -105674,7 +105689,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -105688,7 +105702,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -105714,7 +105727,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -105728,7 +105740,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -105814,7 +105825,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -105828,7 +105838,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -105855,7 +105864,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -105931,7 +105939,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -105945,7 +105952,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -105960,7 +105966,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -105975,7 +105980,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -105992,7 +105996,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -106008,7 +106011,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -106037,7 +106039,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -106051,7 +106052,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -106065,7 +106065,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -106091,7 +106090,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -106105,7 +106103,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -106120,7 +106117,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -106132,7 +106128,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -106184,7 +106179,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -106199,7 +106193,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -106211,7 +106204,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -106225,7 +106217,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -106310,7 +106301,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -106326,6 +106316,22 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -106334,7 +106340,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -106383,7 +106388,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -106416,7 +106420,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -106432,7 +106435,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -106447,7 +106449,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -106465,7 +106466,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -106493,7 +106493,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -106508,7 +106507,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -106523,7 +106521,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -106550,7 +106547,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -106564,9 +106560,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -106583,7 +106577,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -106599,7 +106592,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -106616,7 +106608,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -106648,7 +106639,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -106679,7 +106669,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -106710,7 +106699,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -106726,7 +106714,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -106808,7 +106795,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -106822,7 +106808,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -106846,7 +106831,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -106861,7 +106845,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -106876,7 +106859,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -106893,7 +106875,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -106910,7 +106891,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -106925,7 +106905,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -106941,7 +106920,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -107918,7 +107896,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -107932,7 +107909,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -107948,7 +107924,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -107964,7 +107939,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -107979,7 +107953,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -107994,7 +107967,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -108009,7 +107981,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -108025,7 +107996,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -108064,7 +108034,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -108094,7 +108063,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -108131,7 +108099,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -108159,7 +108126,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -108173,7 +108139,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -108229,7 +108194,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -108243,7 +108207,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -108274,7 +108237,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -108286,7 +108248,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -108298,7 +108259,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -108312,7 +108272,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -108326,7 +108285,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -108340,7 +108298,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -108358,7 +108315,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -108385,7 +108341,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -108413,7 +108368,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -108427,7 +108381,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -108470,7 +108423,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -108484,7 +108436,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -108497,7 +108448,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -108511,7 +108461,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -108541,7 +108490,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -108556,7 +108504,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -108581,7 +108528,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -108596,7 +108542,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -108639,7 +108584,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -108661,7 +108605,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -108685,7 +108628,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -108694,7 +108636,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -108709,7 +108651,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -108720,7 +108661,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -108772,7 +108713,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -108815,7 +108755,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -108977,7 +108916,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -109115,7 +109053,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -109157,7 +109094,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -109210,7 +109146,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -109218,7 +109154,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -109234,7 +109170,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -109246,7 +109182,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -109315,7 +109250,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -109358,7 +109292,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -109387,7 +109320,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -109399,7 +109331,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -109425,7 +109356,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -109440,7 +109370,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -109473,7 +109402,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -109487,7 +109415,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -109502,7 +109429,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -109524,7 +109450,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -109538,7 +109463,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -109552,7 +109476,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -109566,7 +109489,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -109583,7 +109505,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -109619,7 +109540,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -109656,7 +109576,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -109670,7 +109589,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -109708,7 +109626,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -109844,7 +109761,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -109882,7 +109798,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -109902,7 +109817,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -109928,7 +109842,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -109980,7 +109893,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -110017,7 +109929,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -110112,7 +110023,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -110159,7 +110069,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -110319,7 +110228,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -110450,7 +110358,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -110465,7 +110372,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -110480,7 +110386,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -110492,7 +110397,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -110504,7 +110408,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -110518,7 +110421,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -110532,7 +110434,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -110546,7 +110447,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -110585,7 +110485,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -110600,7 +110499,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -110638,7 +110536,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -110665,7 +110562,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -110679,7 +110575,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -110755,7 +110650,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -110773,7 +110667,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -110799,7 +110692,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -110814,7 +110706,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -110829,7 +110720,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -110857,7 +110747,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -110871,7 +110760,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -110883,7 +110771,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -110897,7 +110784,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -110911,7 +110797,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -110963,7 +110848,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -110978,7 +110862,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -110995,7 +110878,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -111009,7 +110891,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -111023,7 +110904,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -111038,7 +110918,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -111054,7 +110933,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -111072,7 +110950,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -111089,7 +110966,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -111103,7 +110979,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -111130,7 +111005,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -111146,7 +111020,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -111163,7 +111036,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -111181,7 +111053,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -111199,7 +111070,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -111219,7 +111089,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -111236,7 +111105,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -111293,7 +111161,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -111307,7 +111174,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -111319,7 +111185,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -111385,7 +111250,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -111397,7 +111261,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -111409,7 +111272,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -111424,7 +111286,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -111436,7 +111297,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -111451,7 +111311,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -111465,7 +111324,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -111480,7 +111338,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -111503,7 +111360,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -111519,8 +111375,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -111550,8 +111405,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -111567,7 +111421,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -111579,7 +111432,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -111591,7 +111443,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -111632,7 +111483,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -111658,7 +111508,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -111696,7 +111545,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -111710,7 +111558,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -111748,7 +111595,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -111768,7 +111614,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -111813,7 +111658,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -111832,7 +111676,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -111885,7 +111728,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -111913,7 +111755,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -111947,7 +111788,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -111968,7 +111808,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -111995,7 +111834,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -112032,7 +111870,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -112074,7 +111911,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -112101,7 +111937,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -112200,7 +112035,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -112212,7 +112046,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -112220,7 +112053,6 @@ msgstr[1] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -112357,7 +112189,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -112371,7 +112202,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -112385,7 +112215,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -112399,7 +112228,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -112414,7 +112242,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -112426,7 +112253,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -112440,7 +112266,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -112455,7 +112280,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -112469,7 +112293,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -112482,7 +112305,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -112496,7 +112318,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -112511,7 +112332,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -112537,7 +112357,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -112566,7 +112385,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -112580,7 +112398,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -112594,7 +112411,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -112606,7 +112422,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -112620,7 +112435,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -112632,7 +112446,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -112647,7 +112460,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -112661,7 +112473,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -112677,7 +112488,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -112692,7 +112502,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -112706,7 +112515,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -112720,7 +112528,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -112734,7 +112541,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -112765,7 +112571,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -112779,7 +112584,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -112793,7 +112597,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -112810,7 +112613,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -112822,7 +112624,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -112836,7 +112637,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -112850,7 +112650,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -112865,7 +112664,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -112892,7 +112690,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -112906,7 +112703,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -112920,7 +112716,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -112935,7 +112730,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -112965,7 +112759,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -112979,7 +112772,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -113008,7 +112800,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -113022,7 +112813,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -113036,7 +112826,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -113050,7 +112839,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -113066,7 +112854,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -113080,7 +112867,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -113095,7 +112881,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -114325,6 +114110,17 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -114654,7 +114450,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -115070,6 +114865,13 @@ msgstr[1] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -115393,6 +115195,30 @@ msgstr[1] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -116223,13 +116049,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -116549,13 +116368,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -117109,7 +116921,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -117133,7 +116945,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Πόνος" @@ -121008,7 +120820,7 @@ msgstr[1] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -121016,7 +120828,7 @@ msgstr[1] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -130824,9 +130636,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -131559,9 +131371,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -131577,9 +131389,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -131607,25 +131419,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -131645,9 +131457,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -137884,7 +137696,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -147551,17 +147363,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -148761,7 +148573,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -154448,9 +154260,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -163376,7 +163188,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -163744,7 +163555,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -163766,7 +163577,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -166519,7 +166329,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -166566,7 +166375,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -166691,6 +166500,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -166704,7 +166520,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -166745,7 +166561,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -176482,7 +176298,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -176561,6 +176377,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -178279,6 +178102,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -178348,7 +178189,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -178416,6 +178257,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -178561,7 +178406,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -178904,7 +178749,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -185590,7 +185434,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -185598,8 +185442,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -186523,9 +186367,9 @@ msgstr[1] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -186538,7 +186382,7 @@ msgstr[1] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -203514,74 +203358,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -203591,177 +203367,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -204974,115 +204579,134 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -205090,157 +204714,213 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" msgstr[1] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" msgstr[1] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -205248,25 +204928,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -205274,25 +204954,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -205300,7 +204980,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -205308,7 +204988,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -205318,7 +204998,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -205328,7 +205008,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -205338,7 +205018,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -205348,7 +205028,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -205357,7 +205037,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -205366,7 +205046,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -205376,7 +205056,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -205385,18 +205065,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -205405,7 +205085,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -205413,18 +205093,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -205434,7 +205114,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -205443,18 +205123,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -205462,25 +205142,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -205488,59 +205168,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205549,7 +205261,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205558,25 +205270,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205588,7 +205300,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205599,25 +205311,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205627,7 +205339,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205637,588 +205349,640 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -206230,245 +205994,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -206476,808 +206213,872 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" msgstr[1] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -207285,20 +207086,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -207306,74 +207107,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -207381,21 +207182,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -207403,105 +207204,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -207509,16 +207334,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -207526,74 +207351,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -207601,357 +207426,357 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -207959,175 +207784,99 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -208135,113 +207884,84 @@ msgstr[1] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -208249,14 +207969,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -208264,39 +207984,39 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -208304,13 +208024,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -208318,13 +208038,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -208332,114 +208052,90 @@ msgstr[1] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -208447,12 +208143,12 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -208460,66 +208156,66 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -208527,19 +208223,19 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -208547,13 +208243,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -208561,13 +208257,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -208575,13 +208271,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -208589,70 +208285,70 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -208660,12 +208356,12 @@ msgstr[1] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -208673,313 +208369,278 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" msgstr[1] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -208988,4326 +208649,4913 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" msgstr[1] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -213316,7 +213564,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -213324,14 +213572,14 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -213339,40 +213587,40 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -213381,83 +213629,83 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" msgstr[1] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -213465,39 +213713,115 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -213508,31 +213832,31 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -213542,14 +213866,14 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -213558,62 +213882,63 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" msgstr[1] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" msgstr[1] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" msgstr[1] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -213622,25 +213947,25 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -213649,204 +213974,249 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" msgstr[1] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" msgstr[1] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" msgstr[1] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" msgstr[1] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" msgstr[1] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -213854,222 +214224,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -214077,48 +214447,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -214126,12 +214496,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -214139,12 +214509,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -214152,103 +214522,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -214257,276 +214627,296 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" msgstr[1] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" msgstr[1] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -220824,6 +221214,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -221016,10 +221410,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -227016,6 +227406,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -227084,6 +227475,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -227926,6 +228321,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -243509,7 +243908,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -249475,7 +249879,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -254618,10 +255028,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -258813,7 +259224,7 @@ msgstr "Ρυθμίσεις Κόσμου" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -266424,6 +266835,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -266565,6 +266981,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -267157,11 +267583,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/es_AR.po b/lang/po/es_AR.po index ba48ce7f2db5..ec7c4796ed3c 100644 --- a/lang/po/es_AR.po +++ b/lang/po/es_AR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Spanish (Argentina) (https://app.transifex.com/bn-team/teams/113585/es_AR/)\n" "MIME-Version: 1.0\n" @@ -8676,6 +8676,17 @@ msgstr "" msgid "You can see through everything!" msgstr "¡Podés ver a través de todas las cosas!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "Tomaste Xanax" @@ -12131,7 +12142,7 @@ msgstr "Prender/Reajustar" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "Apagar" @@ -12579,75 +12590,91 @@ msgstr "CARGADORES" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "MUNICIÓN" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "ARMAS" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "HERRAMIENTAS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "OTRAS HERRAMIENTAS" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "UTENSILIOS DE COCINA" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "ELECTRÓNICOS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "ROPA" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "COMIDA" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "INGREDIENTES CULINARIOS" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "FÁRMACOS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "LIBROS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "MAPAS" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MODIFICACIONES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "MUTÁGENOS" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "BIÓNICOS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "PARTES DE VEHÍCULOS" @@ -12661,51 +12688,89 @@ msgstr "PARTES DE VEHÍCULOS" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "OTROS" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "COMBUSTIBLE" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "SEMILLAS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "COSAS QUÍMICAS" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "BATERÍAS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "REPUESTOS" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "CHATARRA METÁLICA" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "CHATARRA ELECTRÓNICA" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "TELAS" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "OBJETOS DE VALOR" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "PIEDRAS" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "RECIPIENTES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "ARTEFACTOS" +#: data/json/item_category.json +msgid "MAPS" +msgstr "MAPAS" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "OBJETOS PUESTOS" @@ -13450,12 +13515,12 @@ msgstr "" msgid "Destination for corpses" msgstr "Lugar para los cadáveres" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "Botín: Mapas" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "Lugar para los mapas." @@ -13499,6 +13564,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "Botín: Objetos de valor" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "Destino de los objetos de valor." + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "No Auto Agarrar" @@ -13977,7 +14213,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Eskrima" @@ -14015,7 +14251,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Esgrima" @@ -14052,7 +14288,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -14226,7 +14462,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Krav Maga" @@ -14348,7 +14584,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "Manejo de Espada Medieval" @@ -14423,7 +14659,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Ninjutsu" @@ -14605,7 +14841,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Silat" @@ -15797,7 +16033,7 @@ msgid "Resin" msgstr "Resina" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "golpeado/a" @@ -15806,22 +16042,22 @@ msgid "gouged" msgstr "agujereado/a" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "raído/a" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "cortado/a" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "quebrado/a" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "destrozado/a" @@ -15834,7 +16070,7 @@ msgid "bent" msgstr "doblado/a" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "reventado/a" @@ -15846,7 +16082,7 @@ msgstr "destruido" msgid "Biosilicified Chitin" msgstr "Quitina Biosilicificada" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "desportillado/a" @@ -15859,7 +16095,7 @@ msgid "Brass" msgstr "Latón" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "arañado/a" @@ -15877,7 +16113,7 @@ msgstr "Cartón" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "desgarrado/a" @@ -15886,12 +16122,12 @@ msgid "torn" msgstr "despedazado/a" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "triturado/a" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "deshilachado/a" @@ -15951,7 +16187,7 @@ msgstr "Carne" msgid "bruised" msgstr "magullado/a " -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "tajeado/a" @@ -16378,7 +16614,7 @@ msgstr "auto" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -21293,12 +21529,12 @@ msgstr "" "Ahora en lugar de quejarse por tus honorarios, tus clientes intentan comerte" " el cerebro. Pero no sabés cuál de las dos cosas es peor." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Cura" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Diaconisa" @@ -21331,18 +21567,18 @@ msgstr "" " Ahora que están todos muertos, deberías encontrar algo más tangible para " "protegerte." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Kannushi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Kannushi" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -21354,7 +21590,7 @@ msgstr "" "habitaban tu templo, y no sus cuerpos putrefactos." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -21365,12 +21601,12 @@ msgstr "" " sagradas. Te gustaba más cuando solamente los espíritus de los muertos " "habitaban tu templo, y no sus cuerpos putrefactos." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "Imán" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "Mourchida" @@ -21403,18 +21639,18 @@ msgstr "" "oración. Antes venían de todas partes para escucharte, ahora vienen para " "comerte el cerebro." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "Rabino" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "Rabina" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -21424,7 +21660,7 @@ msgstr "" "Cataclismo. ¡Ahora te vendría bien un Mesías!" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -21433,12 +21669,12 @@ msgstr "" "Estabas celebrando con tus feligreses en el templo cuando llegó el " "Cataclismo. ¡Ahora te vendría bien un Mesías!" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "Gurú" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "Gurú" @@ -21467,12 +21703,12 @@ msgstr "" " Comúnmente, podrías responder cualquier pregunta, pero ni siquiera vos " "estás segura de lo que se podría hacer con los voraces muertos vivientes." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "Pastor" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "Pastora" @@ -22355,15 +22591,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "Skater" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "Skater" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -22373,7 +22609,7 @@ msgstr "" "¡Te encanta el skate! Por lo menos ahora los adultos no te van a andar " "diciendo por dónde no podés andar." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -22383,6 +22619,34 @@ msgstr "" "¡Te encanta el skate! Por lo menos ahora los adultos no te van a andar " "diciendo por dónde no podés andar." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -29976,7 +30240,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "aguja curva" @@ -30094,7 +30357,6 @@ msgstr "Extraer bala" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "yunque" @@ -30162,7 +30424,6 @@ msgstr[1] "nada" msgstr[2] "nada" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "plástico de burbuja" @@ -30184,7 +30445,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "catre" @@ -30193,7 +30453,6 @@ msgstr[2] "catres" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "embudo" @@ -30202,7 +30461,6 @@ msgstr[2] "embudos" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "embudo improvisado" @@ -30222,8 +30480,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "trampa para oso" @@ -30257,7 +30514,6 @@ msgid "tripwire" msgstr "cuerda de trampa" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -30265,7 +30521,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "trampa de ballesta" @@ -30310,7 +30565,6 @@ msgid "Swinnng!" msgstr "¡Swinnng!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "mina" @@ -30329,7 +30583,6 @@ msgid "buried land mine" msgstr "mina enterrada" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "plataforma de teletransportación" @@ -30375,7 +30628,6 @@ msgid "ledge" msgstr "plataforma" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "trampa bomba" @@ -30388,7 +30640,6 @@ msgstr "pozo con vidrios" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "embudo de cuero" @@ -30397,7 +30648,6 @@ msgstr[2] "embudos de cuero" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -30410,7 +30660,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "embudo de metal" @@ -30776,7 +31025,8 @@ msgstr "" msgid "Thunder Storm" msgstr "Lluvia con truenos" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Lluvia con rayos" @@ -30819,6 +31069,20 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -30898,7 +31162,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "¡chillido de metal!" @@ -30928,7 +31193,8 @@ msgstr "¡chillido de metal!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "¡clang!" @@ -31276,7 +31542,6 @@ msgstr "Podrías lavar tu ropa sucia si hubiera electricidad." #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -31387,8 +31652,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "¡whack!" @@ -31642,7 +31908,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "¡crunch!" @@ -31670,7 +31936,7 @@ msgstr "¡crunch!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "whump." @@ -31798,7 +32064,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -31859,7 +32124,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -32186,7 +32450,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "¡vidrio rompiéndose!" @@ -32273,7 +32537,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -32300,7 +32564,7 @@ msgstr "¡smash!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "¡whump!" @@ -32471,7 +32735,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "tomp." @@ -32808,7 +33072,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "¡crash!" @@ -32825,7 +33089,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "brasero" @@ -32839,7 +33102,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "cocina de indigente" @@ -32855,7 +33117,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -32881,7 +33142,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "barril de fuego (100L)" @@ -33038,7 +33298,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "girasol" @@ -33927,7 +34186,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "purificador de agua" @@ -34351,7 +34609,6 @@ msgstr "banquito" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -34498,7 +34755,6 @@ msgstr "whack." #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -34524,7 +34780,6 @@ msgstr "¡rrrrip!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -35087,9 +35342,21 @@ msgstr "" "Es una mesa de trabajo resistente, hecha de metal. Es perfecta para fabricar" " cosas grandes y pesadas." +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "lona de cuero" @@ -35127,7 +35394,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "alfombra de fibra" @@ -35147,7 +35413,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "mesa de turista" @@ -35665,7 +35930,6 @@ msgstr "Se utiliza para trabajar el metal." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "destilador" @@ -35683,7 +35947,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "fosa de carbonización" @@ -35702,7 +35965,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "fosa de carbonización llena" @@ -35777,7 +36039,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -35819,7 +36080,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "escalera de mano" @@ -37469,7 +37729,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "tomp" @@ -37894,7 +38154,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "arena" @@ -38169,7 +38428,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "concreto" @@ -39980,7 +40238,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -40637,7 +40894,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "vía pequeña" @@ -41772,7 +42028,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "piedra sólida" @@ -42768,7 +43023,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "tapa de cámara de inspección" @@ -42946,6 +43200,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -43017,7 +43307,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SI VES ESTE TEXTO, ES UN BUG." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "hilo" @@ -43032,7 +43321,6 @@ msgstr "" "equipo de costura." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "tendón" @@ -43046,7 +43334,6 @@ msgstr "" "Es un tendón resistente cortado de un cadáver, se puede usar como hilo." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "fibra vegetal" @@ -43061,7 +43348,6 @@ msgstr "" "como hilo." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "hilo de lana" @@ -43086,7 +43372,6 @@ msgid "A cleansing agent made into bars." msgstr "Es un agente limpiador hecho barra." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "cinta adhesiva" @@ -43101,7 +43386,6 @@ msgstr "" "cosas." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "papel para armar" @@ -43114,7 +43398,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Son tiras de papel fino para armarse unos cigarrillos." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "cable de cobre" @@ -43175,7 +43458,6 @@ msgstr[1] "pulpa acuosa de plutonio" msgstr[2] "pulpa acuosa de plutonio" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "piedra" @@ -43458,7 +43740,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "Es un pedazo de goma que puede ser útil, se moldea fácilmente." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "cobre" @@ -43513,7 +43794,6 @@ msgstr "" "del agua y del aire." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "premezcla de carburo de calcio" @@ -43774,7 +44054,6 @@ msgstr "" "para utilizar en buceo." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "yesca" @@ -43812,7 +44091,6 @@ msgid "A metal die used to play various role-playing games" msgstr "Es un dado de metal que se utiliza en diversos juegos de rol." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "bronce" @@ -44157,7 +44435,6 @@ msgstr "proyectil ferroso de riel" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "UPS" @@ -46646,7 +46923,6 @@ msgstr "" "blanqueadores de papel." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "pedazo de azufre" @@ -46661,7 +46937,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "cemento" @@ -46680,7 +46955,6 @@ msgstr "" "Solo hay que agregarle agua." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "caliza" @@ -46696,7 +46970,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "cal" @@ -46726,7 +46999,6 @@ msgstr "" "transformarla en vidrio. Si no, solo sirve para hacer cemento." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "tierra fértil" @@ -46759,7 +47031,6 @@ msgstr "" "sus propiedades alcalinas pueden tener alguna utilidad." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "sal de roca" @@ -46774,7 +47045,6 @@ msgstr "" "de mesa." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "rodonita" @@ -46791,7 +47061,6 @@ msgstr "" "tiene adentro, que puede ser obtenido con un cincel." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "zincita" @@ -47266,7 +47535,6 @@ msgstr "" "propulsores de misiles, como el combustible de caramelo." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "nitro" @@ -47283,7 +47551,6 @@ msgstr "" "Puede ser procesado para obtener salitre." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -47741,7 +48008,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "rejilla de acero" @@ -47798,7 +48064,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "Es un pequeño perdigón de material fisible. Manejar con cuidado." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "cuenta de madera" @@ -49705,7 +49970,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -49719,7 +49983,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -49881,7 +50144,6 @@ msgstr "" "hojas para acostarse." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "pelaje" @@ -49896,7 +50158,6 @@ msgstr "" "abrigada." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "pelaje artificial" @@ -49911,7 +50172,6 @@ msgstr "" "hacerse ropa." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "pedazo de cuero" @@ -49926,7 +50186,6 @@ msgstr "" "resistente." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "pedazo de fieltro" @@ -49941,7 +50200,6 @@ msgstr "" " fibra de lana." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "pedazo de Nomex" @@ -49954,7 +50212,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "Un pequeño rollo de nomex, que es una tela ignífuga." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "superpegamento" @@ -49967,7 +50224,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Un pomo de pegamento potente. Se usa para fabricar muchas cosas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "pegamento de hueso" @@ -50007,7 +50263,6 @@ msgid "A token, representing fertilization of a plant." msgstr "Es un símbolo que representa la fertilización de una planta." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "cadena de acero" @@ -50024,7 +50279,6 @@ msgstr "" "Puede enroscarse en el enemigo, lo que te permite un ataque desarmado extra." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "pedazo de quitina" @@ -50038,7 +50292,6 @@ msgstr "" "Es un pedazo del exoesqueleto de un insecto. Es liviano y muy duradero." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -50073,7 +50326,6 @@ msgstr "" "grado alto. Te hace pensar en escamas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "pedazo de quitina biosilicificada" @@ -50091,7 +50343,6 @@ msgstr "" "ácido y sorprendentemente duro." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "paquete de trapos" @@ -50106,7 +50357,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "paquete de cueros" @@ -50124,7 +50374,6 @@ msgstr "" "desarmar para abrirlo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "paquete de fieltros" @@ -50220,7 +50469,6 @@ msgstr "" "de fósil." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "pendrive" @@ -50233,7 +50481,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "Es un pendrive con puerto USB. Útil para almacenar software." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "tarjeta de información" @@ -50250,7 +50497,6 @@ msgstr "" "Útil para guardar grandes cantidades de información." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -50266,7 +50512,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "candelabro" @@ -50328,7 +50573,6 @@ msgstr "" "idea." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "canilla para árbol" @@ -50347,7 +50591,6 @@ msgstr "" "invierno y comienzos de primavera para cosechar savia de arce." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "alambre" @@ -50364,7 +50607,6 @@ msgstr "" " se usa en los alambrados." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "alambre de púas" @@ -50377,7 +50619,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "Es un pedazo de alambre rígido, cubierto con púas puntiagudas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "malla de acero" @@ -50397,7 +50638,6 @@ msgstr "" "utiliza una tela metálica común para eso." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "varilla corrugada" @@ -50467,7 +50707,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "Es una bengala de magnesio usada. Prácticamente, basura." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "resorte" @@ -50531,7 +50770,6 @@ msgstr "" " está rota y no puede ser armada." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "resistencia térmica" @@ -50546,7 +50784,6 @@ msgstr "" "eléctricos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "termostato bimetálico" @@ -50562,7 +50799,6 @@ msgstr "" "bimetálica." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "televisor" @@ -50575,7 +50811,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "Es un televisor LCD grande , lleno de deliciosas piezas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "piloto" @@ -50624,7 +50859,6 @@ msgstr "" "explosivos estables luego de un impacto sólido." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "tostadora" @@ -50639,7 +50873,6 @@ msgstr "" "repuestos eléctricos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "microondas" @@ -50656,7 +50889,6 @@ msgstr "" "usar sus partes." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "notebook" @@ -50668,9 +50900,7 @@ msgstr[2] "notebooks" msgid "A broken laptop, basically a paperweight now." msgstr "Un notebook rota, ahora es prácticamente un pisapapeles." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "ojobot roto" @@ -50687,9 +50917,7 @@ msgstr "" "Es un ojobot roto. Ahora ya no es tan amenazador porque no puede llamar " "refuerzos. Puede ser desarmado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "arañabot roto" @@ -50706,7 +50934,6 @@ msgstr "" "suelo con las patas flojas. Puede ser desarmado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "robot defensor de laboratorio roto" @@ -50723,7 +50950,6 @@ msgstr "" " Puede ser desarmado para recuperar partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "policíabot roto" @@ -50740,7 +50966,6 @@ msgstr "" "quieto. Puede ser desarmado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "enfermerobot roto" @@ -50757,7 +50982,6 @@ msgstr "" "Puede ser desarmado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "reposibot roto" @@ -50783,7 +51007,6 @@ msgstr "" "Puede ser desarmado para recuperar partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -50798,7 +51021,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "antidisturbot roto" @@ -50815,7 +51037,6 @@ msgstr "" "combustible. Puede ser desarmado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "robot prototipo roto" @@ -50831,9 +51052,7 @@ msgstr "" "Es un robot prototipo roto, bastante más roto que antes. Puede ser desarmado" " para recuperar partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "minerobot roto" @@ -50851,7 +51070,6 @@ msgstr "" " nada. Puede ser desarmado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "mecha de reconocimiento roto" @@ -50867,7 +51085,6 @@ msgstr "" "Es un mecha, un traje exoesqueleto, roto. Parece que ya no podrá repararse." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "mecha de levantamiento roto" @@ -50875,7 +51092,6 @@ msgstr[1] "mechas de levantamiento rotos" msgstr[2] "mechas de levantamiento rotos" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "mecha de combate roto" @@ -50883,7 +51099,6 @@ msgstr[1] "mechas de combate rotos" msgstr[2] "mechas de combate rotos" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "desplegador de disturbios roto" @@ -50902,7 +51117,6 @@ msgstr "" "partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "desplegador militar roto" @@ -50921,9 +51135,7 @@ msgstr "" "manhacks desarmados en su interior, su potencial destructivo todavía causa " "un poco de miedo, incluso ahora. Puede ser desarmado para recuperar partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "manhack roto" @@ -50941,9 +51153,7 @@ msgstr "" "Es un manhack roto. Ahora ya no es tan amenazador porque está todo flojito " "tirado en el piso. Puede ser desarmado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "grana-hack roto" @@ -50960,9 +51170,7 @@ msgstr "" "Es un grana-hack roto. Ahora que está tirado quieto en el suelo no es tan " "amenazante. Puede ser desarmado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "minibom-hack roto" @@ -50979,9 +51187,7 @@ msgstr "" "Es un minibomba-hack magenta roto. Solamente al mirar los pedazos ya te hace" " temblar. Puede ser desarmado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "lacrimo-hack roto" @@ -50998,9 +51204,7 @@ msgstr "" "Es un lacrimo-hack roto. Ahora que está tirado quieto en el suelo no es tan " "amenazante. Puede ser desarmado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "PEM-hack roto" @@ -51017,9 +51221,7 @@ msgstr "" "Es un PEM-hack roto. Ahora que está tirado quieto en el suelo no es tan " "amenazante. Puede ser desarmado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "destello-hack roto" @@ -51036,9 +51238,7 @@ msgstr "" "Es un destello-hack roto. Ahora que está tirado quieto en el suelo no es tan" " amenazante. Puede ser desarmado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "C4-hack roto" @@ -51085,7 +51285,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "procesador" @@ -51100,7 +51299,6 @@ msgstr "" "avanzadas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "RAM" @@ -51114,7 +51312,6 @@ msgstr "" "Es un módulo de memoria. Útil para fabricar cosas electrónicas avanzadas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "transformador" @@ -51128,7 +51325,6 @@ msgstr "" "Una unidad de alimentación. Útil para fabricar muchas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "circuito amplificador" @@ -51145,7 +51341,6 @@ msgstr "" "fabricar muchas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "transpondedor" @@ -51162,7 +51357,6 @@ msgstr "" "comunicación." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "receptor de señal" @@ -51179,7 +51373,6 @@ msgstr "" "fabricar equipos de comunicación." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "pantalla LCD grande" @@ -51196,7 +51389,6 @@ msgstr "" "fabricar algunas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "pantalla LCD pequeña" @@ -51213,7 +51405,6 @@ msgstr "" "para fabricar algunas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "lente de alta calidad" @@ -51231,7 +51422,6 @@ msgstr "" "útil para encender un fuego." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "lente pequeño de alta calidad" @@ -51249,7 +51439,6 @@ msgstr "" "Puede usarse para fabricar otras cosas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "par de anteojos polarizados" @@ -51266,7 +51455,6 @@ msgstr "" " sol." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "biónico fundido" @@ -51325,7 +51513,6 @@ msgstr "" "elegante y de última tecnología." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "antena" @@ -51340,7 +51527,6 @@ msgstr "" "electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "micro motor" @@ -51357,7 +51543,6 @@ msgstr "" "control remoto. Útil para fabricar muchas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "placa de circuitos" @@ -51374,7 +51559,6 @@ msgstr "" "electrónicos en un sustrato no conductivo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "chatarra electrónica" @@ -51406,7 +51590,6 @@ msgstr "" "autónomo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "ventilador de escritorio" @@ -51419,7 +51602,6 @@ msgid "A small fan, used to propel air around a room." msgstr "Un ventilador pequeño, usado para tirar aire por toda la habitación." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "placa cerámica de armadura" @@ -51452,7 +51634,6 @@ msgstr "" "'Hoss'. El pez parece tener antenitas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "trapo" @@ -51490,7 +51671,6 @@ msgstr "" "Es un trapo grande empapado con sangre. Se puede limpiar con agua hirviendo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "destapacañerías" @@ -51509,7 +51689,6 @@ msgstr "" " mugre de los cañones de las armas de fuego." #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "reloj" @@ -51535,7 +51714,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "Es un pequeño surtido de engranajes y otros cacharros de relojería." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "tarjeta de memoria SD" @@ -51548,7 +51726,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "Una tarjeta de memoria usada. Vale la pena mirar qué tiene." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "tarjeta de memoria SD (vacía)" @@ -51566,7 +51743,6 @@ msgstr "" "usarla para guardar tu información." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "tarjeta de memoria SD (encriptada)" @@ -51584,7 +51760,6 @@ msgstr "" "contener algo importante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "tarjeta de memoria SD científica" @@ -51622,7 +51797,6 @@ msgstr "" " cloacas. No se puede abrir la cámara de inspección sin una barreta." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "rama de pino" @@ -51639,7 +51813,6 @@ msgstr "" "puntiagudas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "piña" @@ -51681,7 +51854,6 @@ msgstr "" "que todavía no han sido comidas por animales." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "flores de manzanilla" @@ -51697,7 +51869,6 @@ msgstr "" "hierba medicinal." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "flor de loto" @@ -51705,7 +51876,6 @@ msgstr[1] "flores de loto" msgstr[2] "flores de loto" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "flor de euforbio" @@ -51722,7 +51892,6 @@ msgstr "" "que previene ataques de asma." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "masa de arcilla" @@ -51735,7 +51904,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "Una masa de arcilla fresca. Útil para fabricar algunas cosas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "ladrillo" @@ -51749,7 +51917,6 @@ msgstr "" "Un bloque de construcción endurecido al fuego, utilizado en albañilería." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "mezcla" @@ -51762,7 +51929,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Es un poco de mezcla, lista para ser usada en alguna construcción." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "ladrillo blando de adobe" @@ -51787,7 +51953,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "ladrillo de adobe" @@ -51804,7 +51969,6 @@ msgstr "" " y ser un ladrillo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "mezcla de adobe" @@ -51822,7 +51986,6 @@ msgstr "" " pesados." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "casca" @@ -51835,7 +51998,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "corteza de abedul" @@ -51849,7 +52011,6 @@ msgstr "" "Es un pedazo de corteza dura y resistente al agua, sacada de un abedul." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "cortezas de sauce" @@ -51866,7 +52027,6 @@ msgstr "" "aspirinas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "diamante" @@ -51879,7 +52039,6 @@ msgid "A sparkling diamond." msgstr "Un diamante brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "granate" @@ -51892,7 +52051,6 @@ msgid "A sparkling garnet." msgstr "Es un granate brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "amatista" @@ -51905,7 +52063,6 @@ msgid "A sparkling amethyst." msgstr "Es una amatista brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "aguamarina" @@ -51918,7 +52075,6 @@ msgid "A sparkling aquamarine." msgstr "Es una aguamarina brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "esmeralda" @@ -51931,7 +52087,6 @@ msgid "A sparkling emerald." msgstr "Es una esmeralda brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "alejandrita" @@ -51944,7 +52099,6 @@ msgid "A sparkling alexandrite." msgstr "Es una alejandrita brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "perla" @@ -51957,7 +52111,6 @@ msgid "A lustrous pearl." msgstr "Es una perla lustrosa." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "rubí" @@ -51970,7 +52123,6 @@ msgid "A sparkling ruby." msgstr "Es un rubí brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "peridoto" @@ -51983,7 +52135,6 @@ msgid "A sparkling peridot." msgstr "Es un peridoto brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "zafiro" @@ -51996,7 +52147,6 @@ msgid "A sparkling sapphire." msgstr "Es un zafiro brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "ópalo" @@ -52009,7 +52159,6 @@ msgid "A lustrous opal." msgstr "Es un ópalo lustroso." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "turmalina" @@ -52022,7 +52171,6 @@ msgid "A sparkling tourmaline." msgstr "Es una turmalina brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "citrino" @@ -52035,7 +52183,6 @@ msgid "A sparkling citrine." msgstr "Es un citrino brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "topacio" @@ -52048,7 +52195,6 @@ msgid "A sparkling blue topaz." msgstr "Es un topacio azul brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "pellejo curado" @@ -52064,7 +52210,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "pelaje curado" @@ -52108,7 +52253,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "Una muñeca vieja de paja. Representa una mujer con un vestido." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "almohada" @@ -52121,7 +52265,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Es una almohada para descansar tu cabeza cuando dormís." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "almohada de cuerpo" @@ -52139,7 +52282,6 @@ msgstr "" "atrás." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "almohada de plumón" @@ -52152,7 +52294,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "Es una almohada acolchada para descansar tu cabeza cuando dormís." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "osito de peluche" @@ -52175,7 +52316,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "fajo de billetes" @@ -52234,7 +52374,7 @@ msgstr[2] "cigarros" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "Extinguir" @@ -52370,7 +52510,6 @@ msgstr "" " secadas para volverse fumables." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "tarjeta de crédito" @@ -52403,7 +52542,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "tarjeta de descuento plateada" @@ -52416,7 +52554,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Esta tarjeta te hace un pequeño descuento cuando comprás combustible." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "tarjeta de descuento dorada" @@ -52429,7 +52566,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Esta tarjeta te hace un buen descuento cuando comprás combustible." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "tarjeta de descuento platinada" @@ -52443,7 +52579,6 @@ msgstr "" "Esta tarjeta te hace un espléndido descuento cuando comprás combustible." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "carné de científico" @@ -52462,7 +52597,6 @@ msgstr "" "panel de control, si encontrás alguno." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "carné de militar" @@ -52481,7 +52615,6 @@ msgstr "" "panel de control, si encontrás alguno." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "carné de industrial" @@ -52500,7 +52633,6 @@ msgstr "" "acceder a un panel de control, si encontrás alguno." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "fragmento de neopreno" @@ -52562,7 +52694,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "lamparita" @@ -52589,7 +52720,6 @@ msgid "A twisted shard of jagged metal." msgstr "Es un pedazo de metal retorcido y con puntas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "maceta de arcilla" @@ -52602,7 +52732,6 @@ msgid "A nice looking clay pot used for planting." msgstr "Es una linda maceta de arcilla en la que se puede plantar algo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "maceta de plástico" @@ -52766,7 +52895,6 @@ msgstr "" "soldadura." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "cabezal de amplificador" @@ -52783,9 +52911,7 @@ msgstr "" "amplificar instrumentos musicales. Básicamente, ahora solo sirve para " "recuperar sus partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "torreta rota" @@ -52801,9 +52927,7 @@ msgstr "" "Es una torreta rota. Mucho menos amenazante ahora que está ahí tirada en el " "piso. Puede ser desarmada para recuperar partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "torreta antidisturbios rota" @@ -52819,9 +52943,8 @@ msgstr "" "Es una torreta antidisturbios pero rota. Mucho menos amenazante ahora que " "está ahí tirada en el piso. Puede ser desarmada para recuperar partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "torreta láser rota" @@ -52829,7 +52952,6 @@ msgstr[1] "torretas láser rotas" msgstr[2] "torretas láser rotas" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "secubot roto" @@ -52846,7 +52968,6 @@ msgstr "" "para recuperar partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "M202A1 TALON roto" @@ -52865,7 +52986,6 @@ msgstr "" "para recuperar partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "ladrillo refractario" @@ -52936,7 +53056,6 @@ msgstr "" "asqueroso." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -52944,7 +53063,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -52952,7 +53070,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -53163,7 +53280,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -53339,7 +53455,6 @@ msgstr "" "bug." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "módulo de objetivo" @@ -53357,7 +53472,6 @@ msgstr "" "precisa." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "módulo de identificación" @@ -53374,7 +53488,6 @@ msgstr "" "imagen para identificar amigos y enemigos." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "módulo de reconocimiento" @@ -53391,7 +53504,6 @@ msgstr "" "vectores para encontrar el mejor camino disponible." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "módulo de memoria" @@ -53404,7 +53516,6 @@ msgid "Allows for storage and recovery of information." msgstr "Este módulo permite almacenar y recuperar información." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "matriz de sensores" @@ -53421,7 +53532,6 @@ msgstr "" "percibir el mundo circundante." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "sensores de automonitoreo" @@ -53438,7 +53548,6 @@ msgstr "" "percibir a sí mismo." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "núcleo de IA" @@ -53455,7 +53564,6 @@ msgstr "" " IA del robot." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "núcleo básico de IA" @@ -53468,7 +53576,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "Es un núcleo muy básico de IA con las mínimas habilidades cognitivas." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "núcleo avanzado de IA" @@ -53482,7 +53589,6 @@ msgstr "" "Es un núcleo avanzado de IA con impresionantes habilidades cognitivas." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "sistema de operación de armas" @@ -54008,7 +54114,6 @@ msgstr[1] "software" msgstr[2] "software" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "software variado" @@ -54021,7 +54126,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Software variado para pasar el tiempo. Probablemente sea inútil." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "hackPRO" @@ -54034,7 +54138,6 @@ msgid "A piece of hacking software." msgstr "Software de hackeo." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "MediSoft" @@ -54047,7 +54150,6 @@ msgid "A piece of medical software." msgstr "Software sobre medicina" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MatheMAX" @@ -54060,7 +54162,6 @@ msgid "A piece of mathematical software." msgstr "Software sobre matemática." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "información de infección" @@ -54073,7 +54174,6 @@ msgid "Medical data on zombie blood." msgstr "Información médica de sangre de zombi." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "info de laboratorio" @@ -54086,7 +54186,6 @@ msgid "Research archives from a government laboratory." msgstr "Son archivos de investigación de un laboratorio gubernamental." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "info de tren" @@ -54100,7 +54199,6 @@ msgstr "" "Es información de la logística de las rutas y horarios del subterráneo." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "información neural" @@ -54119,7 +54217,6 @@ msgstr "" "Cualquiera sea el caso, la idea de mantener perpetuamente una parte tuya dentro de una cápsula metálica te hace sentir incómodo." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "software variado" @@ -54863,7 +54960,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Cerrar tapa" @@ -54897,7 +54994,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Abrir tapa" @@ -59223,7 +59320,6 @@ msgstr "" "clavos o algún arma similar, o se puede usar para hacer munición." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "clavo" @@ -59933,7 +60029,8 @@ msgstr "" "flexibilidad, y un poco más de peso. Tiene cuatro bolsas para llevar " "cargadores." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "aljaba" @@ -59949,7 +60046,8 @@ msgstr "" "Es una aljaba de cuero que se usa en la cintura y puede almacenar hasta 20 " "flechas. Hay que usarla para guardar flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "aljaba de abedul" @@ -59966,7 +60064,8 @@ msgstr "" "cintura y puede almacenar hasta 20 flechas. Hay que usarla para guardar " "flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "aljaba grande" @@ -59985,7 +60084,8 @@ msgstr "" "arqueros a caballo, más que por los que iban a pie, pero ninguno de ELLOS " "tuvo que pelearse contra zombis. Hay que usarla para guardar flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "aljaba grande de abedul" @@ -60575,7 +60675,7 @@ msgstr[2] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Enfundás tu %s." @@ -60865,7 +60965,7 @@ msgstr[2] "cinturones de cuero" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "Metés tu %s en tu %s." @@ -60875,14 +60975,14 @@ msgstr "Metés tu %s en tu %s." #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "Qué es lo que querés meter en el cinturón?" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" "Es un cinturón de cuero. Útil para hacer que los pantalones te queden bien." @@ -63944,7 +64044,7 @@ msgstr[2] "pares de guantes de supervivencia" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -73285,7 +73385,7 @@ msgstr[2] "mochilas de excursión" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "Enfundar cuchilla" @@ -82932,8 +83032,8 @@ msgstr[2] "lanzadores básico" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "simple" @@ -83081,7 +83181,7 @@ msgstr[2] "escopetas básicas" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -83102,7 +83202,7 @@ msgstr[1] "escopetas de acción de bombeo" msgstr[2] "escopetas de acción de bombeo" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "chak chak." @@ -85224,8 +85324,7 @@ msgstr "" " se la prepara bien." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "sangre" @@ -85234,7 +85333,6 @@ msgstr[2] "sangre" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Sangre, probablemente de un humano. ¡Desagradable!" @@ -85470,8 +85568,7 @@ msgstr "" "muchas comidas y proyectos." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "sangre contaminada" @@ -98204,6 +98301,21 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -102906,7 +103018,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -102921,7 +103032,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -102969,7 +103079,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -103005,7 +103114,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -103020,7 +103128,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -103693,7 +103800,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "plato cerámico" @@ -103706,7 +103812,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "tazón de cerámica" @@ -103719,7 +103824,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "taza de cerámica" @@ -103732,7 +103836,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -103814,7 +103917,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "plato de estaño" @@ -103827,7 +103929,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "taza de lata" @@ -103844,7 +103945,6 @@ msgstr "" "hace un sonido maravilloso cuando golpea las rejas." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "cuenco de peltre" @@ -103857,7 +103957,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "vaso" @@ -103870,7 +103969,6 @@ msgid "A tall drinking glass." msgstr "Un vaso alto." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -103885,7 +103983,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "tazón de vidrio" @@ -103926,7 +104023,6 @@ msgstr "" " de líquido." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -103970,7 +104066,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -104013,7 +104108,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "olla" @@ -104026,7 +104120,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "Útil para hervir agua cuando se cocinan espaghetis y otras cosas." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -104040,7 +104133,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "olla de cobre" @@ -104058,7 +104150,6 @@ msgstr "" "en las comidas." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -104073,7 +104164,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -104088,7 +104178,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "olla de conservería" @@ -104111,7 +104200,6 @@ msgstr "" "que llenarla con piedras o algo para que el agua sobrepase los frascos." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "sartén de hierro fundido" @@ -104127,7 +104215,6 @@ msgstr "" "para cocinar." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "sartén de acero" @@ -104143,7 +104230,6 @@ msgstr "" "cocinar." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "sartén de cobre" @@ -104160,7 +104246,6 @@ msgstr "" "cuerpo a cuerpo decente y se usa para cocinar." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "olla improvisada" @@ -104178,7 +104263,6 @@ msgstr "" "propiamente dicho." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "olla improvisada de cobre" @@ -104196,7 +104280,6 @@ msgstr "" "propiamente dicho." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -104566,7 +104649,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "cuerda corta" @@ -104579,7 +104661,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "Es un pedazo de cuerda de algodón de 15 centímetros." #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "soga" @@ -106053,7 +106134,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "doble" @@ -109502,7 +109583,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "bajocañón" @@ -109867,7 +109948,7 @@ msgstr "" "aumenta el ruido y reduce un poco la precisión." #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "bocacha" @@ -110075,7 +110156,7 @@ msgstr "" " al cañón de un arma de fuego larga. Permite disparar pernos de ballesta." #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "riel" @@ -110216,7 +110297,7 @@ msgstr "" " es más lento para alinear el arco." #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "mirillas" @@ -114944,7 +115025,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -114952,7 +115032,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "cuchillo de carnicero" @@ -114969,7 +115048,6 @@ msgstr "" "es ideal para carnear cadáveres." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "cuchillo para carne" @@ -114986,7 +115064,6 @@ msgstr "" " de cuerpo a cuerpo, pero es decente para carnear cadáveres." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -115001,7 +115078,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -115018,7 +115094,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -115034,7 +115109,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -115050,7 +115124,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -115066,7 +115139,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -119146,7 +119218,6 @@ msgstr "" "lo combina con agua y mordiente." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "fragmento de vidrio" @@ -119161,7 +119232,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "plancha de vidrio" @@ -119185,7 +119255,6 @@ msgstr "" "ventanas." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "plancha de vidrio reforzado" @@ -119199,7 +119268,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "Una plancha grande de vidrio endurecido con alambre de acero." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "lámina de vidrio reforzado" @@ -119213,7 +119281,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "Una pequeña lámina de vidrio reforzado con alambre de acero." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -119322,7 +119389,6 @@ msgid "A roll of purple carpet." msgstr "Un rollo de alfombra púrpura." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "mirilla" @@ -119339,7 +119405,6 @@ msgstr "" "en una puerta." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -119352,7 +119417,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "caño" @@ -119368,7 +119432,6 @@ msgstr "" " para fabricar algunas cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "chatarra" @@ -119386,7 +119449,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "púa" @@ -119403,7 +119465,6 @@ msgstr "" "vehículo." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "tubería de cobre" @@ -119420,7 +119481,6 @@ msgstr "" "cuerpo, pero sirve si no tenés otra cosa. Útil para fabricar algunas cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "lingote de aluminio" @@ -119436,7 +119496,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "bismuto" @@ -119451,7 +119510,6 @@ msgstr "" "plomo." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "oro" @@ -119469,7 +119527,6 @@ msgstr "" " pequeña fortuna pero ahora su valor está muy disminuido." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "platino" @@ -119477,7 +119534,6 @@ msgstr[1] "platino" msgstr[2] "platino" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "zinc" @@ -119498,7 +119554,6 @@ msgstr "" "otras cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "plomo" @@ -119515,7 +119570,6 @@ msgstr "" "posee un gran número de usos incluyendo la fabricación de munición." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "polvo de magnesio" @@ -119532,7 +119586,6 @@ msgstr "" "inflamable. És útil para fabricar bengalas u objetos similares." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "plata" @@ -119549,7 +119602,6 @@ msgstr "" "ahora su valor está muy disminuido." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "lámina pequeña de metal" @@ -119562,7 +119614,6 @@ msgid "A small sheet of metal." msgstr "Es una pequeña lámina de metal." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "pedazo de acero" @@ -119579,7 +119630,6 @@ msgstr "" "útil para fabricar algunas cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "conglomerado de acero" @@ -119592,7 +119642,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "Es un pedazo pesado de acero, útil para fabricar algunas cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "bisagra de puerta" @@ -119609,7 +119658,6 @@ msgstr "" " Se usa para hacer puertas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "pedazo de cobre" @@ -119622,7 +119670,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "Es un pedazo chico de cobre, útil para fabricar o reparar cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -119637,7 +119684,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "estaño" @@ -119681,7 +119727,6 @@ msgstr "" "persiguiendo gatos." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "fragmento de cerámica" @@ -119752,7 +119797,6 @@ msgstr "" "escapar de la explosión." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "piedra filosa" @@ -119833,7 +119877,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "pedazo de plástico" @@ -119865,7 +119908,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -119881,8 +119923,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -119897,7 +119937,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -119912,7 +119951,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -119927,7 +119965,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "tronco" @@ -119942,7 +119979,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -119956,7 +119992,6 @@ msgstr "" "Es un pedazo de madera astillada que puede ser usada como brochette o leña." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "palo grueso" @@ -119969,7 +120004,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "palo largo" @@ -119986,7 +120020,6 @@ msgstr "" "puede romperse para hacer palitos útiles en alguna fabricación." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -120000,8 +120033,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "tablón" @@ -120020,7 +120052,6 @@ msgstr "" "todo tipo de construcción." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -120036,7 +120067,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -120053,7 +120083,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -120069,7 +120098,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -120110,7 +120138,6 @@ msgstr "" "contener hasta 500 ml." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "cafetera atómica" @@ -120128,7 +120155,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -120156,7 +120182,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "enlatadora" @@ -120173,7 +120198,6 @@ msgstr "" "para sellar latas de estaño automáticamente." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "cuchillo eléctrico (apag.)" @@ -120217,7 +120241,6 @@ msgstr "" "apagarlo." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "purificador de agua a carbón" @@ -120238,7 +120261,6 @@ msgstr "" " recogida de fuentes inseguras como los ríos, puede estar sucia." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "ahumador a carbón" @@ -120255,7 +120277,6 @@ msgstr "" " y para preservar la carne ahumándola." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "cocina de carbón" @@ -120272,7 +120293,6 @@ msgstr "" " piloto agregado. La podés usar para cocinar comida, claro." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "olla de arcilla" @@ -120285,7 +120305,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "Es una olla de arcilla rudimentaria con tapa que se usa para cocinar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "mortero de arcilla" @@ -120298,7 +120317,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "Es un simple mortero de mano hecho de arcilla, para moler grano." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "pava de arcilla" @@ -120313,7 +120331,6 @@ msgstr "" "no creo que encuentres." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "cafetera" @@ -120333,7 +120350,6 @@ msgstr "" "bebida de tu elección." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "deshidratador de comida" @@ -120350,7 +120366,6 @@ msgstr "" "baterías, y puede ser muy importante para conservar comida." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "frasco de huevos fermetando" @@ -120381,7 +120396,6 @@ msgstr "" " una vez que se complete el proceso de fermentación." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "cocina de hexamina" @@ -120398,7 +120412,6 @@ msgstr "" "diseñada para usar pequeñas pastillas de hexamina para cocinar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -120490,7 +120503,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "multiprocesador" @@ -120507,7 +120519,6 @@ msgstr "" "puré y mezclar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "cocina de nafta" @@ -120541,7 +120552,6 @@ msgstr "" "usar una vez." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "anafe eléctrico" @@ -120629,7 +120639,6 @@ msgstr "" "disfrutarlo." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "sellador improvisado al vacío" @@ -120646,7 +120655,6 @@ msgstr "" "empaquetar comida al vacío y preservarla." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "kit de utensilios" @@ -120665,7 +120673,6 @@ msgstr "" "baterías, en lugar del horno Esbit más común alimentado con químicos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "lata de utensilios" @@ -120685,7 +120692,6 @@ msgstr "" "modernos kits de utensilios." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "kit militar de utensilios" @@ -120709,7 +120715,6 @@ msgstr "" "Compacto, duradero y liviano." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -120729,7 +120734,6 @@ msgstr "" "otros métodos más complejos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "multicocina" @@ -120765,7 +120769,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "cocina de querosén" @@ -120782,7 +120785,6 @@ msgstr "" "comida." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "máquina de pasta" @@ -120799,7 +120801,6 @@ msgstr "" "Tiene diferentes cabezales para hacer distintas variedades de pasta." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "frasco de pickles fermentando" @@ -120830,7 +120831,6 @@ msgstr "" "sellar la jarra una vez que el proceso termine." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "kit de cocina de latas" @@ -120845,7 +120845,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "olla a presión" @@ -120864,7 +120863,6 @@ msgstr "" "También puede usarse para reacciones químicas sensibles a la presión." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "mortero" @@ -120877,7 +120875,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "Es un simple mortero de mano hecho de piedra, para moler grano." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "frasco de chucrut fermentando" @@ -120936,7 +120933,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "kit de utensilios de supervivencia" @@ -120956,7 +120952,6 @@ msgstr "" "duraderos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "pava" @@ -120971,7 +120966,6 @@ msgstr "" "Mate no creo que encuentres. Yerba sí, pero de otra clase." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "sellador al vacío" @@ -120988,7 +120982,6 @@ msgstr "" "para empaquetar comida al vacío y preservarla." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "waflera" @@ -121083,7 +121076,6 @@ msgstr "" "cama, es mejor que estar tirado en el suelo." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "bicicleta plegable" @@ -121101,6 +121093,23 @@ msgid "This is a bicycle folded into a relatively portable package." msgstr "" "Es una bicicleta plegada para que sea un paquete relativamente portátil." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -121109,7 +121118,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "bote inflable" @@ -121170,7 +121178,6 @@ msgstr "" "enrollada y lista para transportar." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -121204,7 +121211,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "UPS mejorado" @@ -121221,7 +121227,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "cámara" @@ -121240,7 +121245,6 @@ msgstr "" "transferirlas a una tarjeta de memoria. Usa baterías normales." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -121259,7 +121263,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "celular" @@ -121292,7 +121295,6 @@ msgstr "" "luz, si es que está bien cargado. También tiene un reloj que incluye alarma." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -121308,7 +121310,6 @@ msgid "You stop lighting up the screen." msgstr "Dejás de encender la pantalla." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "notebook de control" @@ -121324,7 +121325,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "antena direccional" @@ -121355,7 +121355,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "lector electrónico" @@ -121370,9 +121369,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "electrohackeador" @@ -121394,7 +121391,6 @@ msgstr "" "de seguridad y otras cosas. Utiliza 25 cargas de batería por uso." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "contador geiger (apag.)" @@ -121415,7 +121411,6 @@ msgstr "" " apagado." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "contador geiger (enc.)" @@ -121437,7 +121432,6 @@ msgstr "" "terreno. Ahora está encendido." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -121471,7 +121465,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "reproductor de mp3 (apag.)" @@ -121507,7 +121500,6 @@ msgstr "" "rápidamente. Usalo para apagarlo. También obstruye tu audición." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "emisor de ruido (apag.)" @@ -121540,7 +121532,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "consola portátil de videojuegos" @@ -121557,7 +121548,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "smartphone" @@ -121642,7 +121632,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "vibrador" @@ -121659,7 +121648,6 @@ msgstr "" "ayudarte a relajarte. Usalo para tomarte un descanso y relajarte." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -121684,7 +121672,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -121700,7 +121687,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "barreta" @@ -121719,7 +121705,6 @@ msgstr "" "inspección. También la podés empuñar para reventar algunas cabezas." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -121737,7 +121722,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "ganzúa improvisada" @@ -121755,7 +121739,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "picahielo" @@ -121774,7 +121757,6 @@ msgstr "" "forzar puertas o levantar tapas de cámara de inspección." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "barreta improvisada" @@ -121791,7 +121773,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "equipo de cerrajero" @@ -122915,7 +122896,6 @@ msgstr "" "encendido y está siseando, arrojando muchísimo humo." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "magiclick" @@ -122932,7 +122912,6 @@ msgstr "" " encendedor normal." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "arco de rodamiento" @@ -122953,7 +122932,6 @@ msgstr "" "esta herramienta." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "arco de rodamiento de campamento" @@ -122974,7 +122952,6 @@ msgstr "" "utilizando esta herramienta." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "yesquero" @@ -122990,7 +122967,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "encendedor" @@ -123009,7 +122985,6 @@ msgstr "" "cócteles molotov. También lo podés usar para prender fuego otras cosas." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "lupa" @@ -123026,7 +123001,6 @@ msgstr "" "Es una lupa. Puede ser útil para encender fuegos si el día está soleado." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "cajita de fósforos" @@ -123047,7 +123021,6 @@ msgstr "" "podés usar para prender fuego otras cosas. " #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "encendedor recargable" @@ -123093,7 +123066,6 @@ msgstr "" "encendido." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "braserito" @@ -123127,7 +123099,6 @@ msgstr "" "largo, para encender fuegos sin herramientas más modernas." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "braserito (enc.)" @@ -123169,7 +123140,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -123199,7 +123169,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "hacha de bombero" @@ -123217,7 +123186,6 @@ msgstr "" "cuerpo a cuerpo, pero es un poco lenta entre hachazo y hachazo." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "barra halligan" @@ -123287,7 +123255,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -123302,7 +123269,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "trampa plástica de peces" @@ -123340,7 +123306,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "anzuelo" @@ -123353,7 +123318,6 @@ msgid "A simple fishing hook." msgstr "Es un simple anzuelo." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "anzuelo improvisado" @@ -123366,7 +123330,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "Es una anzuelo tallado de madera o hueso." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "caña básica para pescar" @@ -123383,7 +123346,6 @@ msgstr "" " palo con un pedazo de hilo y un anzuelo." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "caña profesional para pescar" @@ -123400,7 +123362,6 @@ msgstr "" "deberías ser capaz de pescar de todo." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -123417,7 +123378,6 @@ msgstr "" " que se necesita para empezar a cargar a mano tu propia munición." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -123436,7 +123396,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "quitador cinético de balas" @@ -123466,7 +123425,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "cuchillo de cobre" @@ -123501,7 +123459,6 @@ msgstr "" "buzos, es muy liviano y casi no ocupa lugar en el bolsillo." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "espátula para miel" @@ -123518,7 +123475,6 @@ msgstr "" " de las colmenas. También puede servir como arma de cuerpo a cuerpo." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "navaja" @@ -123567,7 +123523,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "palo cavador" @@ -123584,7 +123539,6 @@ msgstr "" "Puede ser usada para cavar pozos poco profundos." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "palita" @@ -123600,7 +123554,6 @@ msgstr "" "gusanos." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "azada" @@ -123618,7 +123571,6 @@ msgstr "" "pozo." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -123651,7 +123603,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "guadaña" @@ -123670,7 +123621,6 @@ msgstr "" "incómoda de usar para cualquier cosa que no sea su propósito previsto." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "pala" @@ -123699,7 +123649,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "hoz" @@ -123718,7 +123667,6 @@ msgstr "" " usar para cualquier cosa que no sea su propósito previsto." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "cortasetos (apag.)" @@ -123769,7 +123717,6 @@ msgstr "" "listo para podar artísticamente algún zombi. Usalo para apagarlo." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "lámpara atómica" @@ -123792,7 +123739,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "lámpara atómica (cubierta)" @@ -123817,7 +123763,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -123827,7 +123772,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "Cerrás la cubierta del velador." @@ -123842,7 +123787,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -123854,7 +123798,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "Abrís la cubierta del velador." @@ -123912,7 +123856,6 @@ msgstr "" " vela está encendida." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "lámpara eléctrica (apagada)" @@ -123959,7 +123902,6 @@ msgid "You turn the lamp off." msgstr "Apagás la lámpara." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "linterna (apagada)" @@ -124146,7 +124088,6 @@ msgstr "" "menos media hora antes de apagarse." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "linterna reforzada (apagada)" @@ -124302,7 +124243,6 @@ msgid "The %s is extinguished" msgstr "Se apagó la %s." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -124350,7 +124290,6 @@ msgstr "" "oscuridad. Está prendida." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "lámpara inteligente (apagada)" @@ -124408,7 +124347,7 @@ msgstr[2] "antorchas" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "Encender antorcha" @@ -124416,7 +124355,7 @@ msgstr "Encender antorcha" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Encendés la antorcha." @@ -124435,7 +124374,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "La antorcha se extinguió." @@ -124449,7 +124388,6 @@ msgstr "" "punta. Está encendida, y produce bastante luz." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -124526,7 +124464,6 @@ msgstr "" "especializado, y no puede ser administrado manualmente." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -124579,7 +124516,6 @@ msgstr "" "no usar más de dos dosis por hora." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "escalpelo" @@ -124616,7 +124552,6 @@ msgstr "" "pequeña inyección de energía." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "jeringa" @@ -124629,7 +124564,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "Es una jeringa médica. Se usa para administrar drogas intravenosas." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "termómetro" @@ -124662,7 +124596,6 @@ msgstr "" "inyección de energía." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "equipo de extracción de sangre" @@ -124681,7 +124614,6 @@ msgstr "" "que tengas cerca." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "placa dosimétrica envuelta" @@ -124722,7 +124654,6 @@ msgstr "" "metalúrgicas." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "yunque de bronce" @@ -124739,7 +124670,6 @@ msgstr "" "cincel. Se usa para la mayoría de las fabricaciones metalúrgicas." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "cortapernos" @@ -124757,7 +124687,6 @@ msgstr "" "gruesos." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "forja de carbón" @@ -124782,7 +124711,6 @@ msgstr "" "quemado incompleto de materiales orgánicos en ausencia de oxígeno." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "cincel para metal" @@ -124799,7 +124727,6 @@ msgstr "" "fabricaciones metalúrgicas." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "crisol" @@ -124815,7 +124742,6 @@ msgstr "" "Es un pequeño crisol metalúrgico. Se usa para trabajar más o menos el metal." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "crisol de arcilla" @@ -124832,7 +124758,6 @@ msgstr "" "usar para... trabajar metal." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "forja eléctrica" @@ -124850,7 +124775,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "fosa de carbonización terminada" @@ -124891,7 +124815,6 @@ msgstr "" "de un lento proceso de quemado." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "fosa de carbonización encendida" @@ -124936,7 +124859,6 @@ msgstr "" "conectar varias de estas planchas para hacer una armadura efectiva." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "equipo de estampado y matriz" @@ -124953,7 +124875,6 @@ msgstr "" "para algunas fabricaciones metalúrgicas." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "par de pinzas de metal" @@ -124997,7 +124918,6 @@ msgstr "" "Apretar el botón de arriba hace que se emita un bocinazo muy fuerte." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "reloj despertador" @@ -125144,7 +125064,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "herramienta de trinchera" @@ -125187,7 +125106,6 @@ msgstr "" "inflamable. Tenés que encenderlo fuego antes de dispararla." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "colchoneta de piel" @@ -125211,7 +125129,6 @@ msgstr "" " desenrollarla y ponerla en el suelo." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "gancho de agarre" @@ -125242,7 +125159,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "Un sencillo garfio de acero con mango circular de acero." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "inflador de mano" @@ -125305,7 +125221,6 @@ msgstr "" "auto." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "calefactor grande" @@ -125343,7 +125258,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -125455,7 +125369,6 @@ msgstr "" "puede ser desmontado para convertirlo en piezas útiles." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "colchoneta" @@ -125512,7 +125425,6 @@ msgstr "" "sarcófago de residuos peligrosos." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -125698,7 +125610,6 @@ msgstr "" "juntarse alrededor de ella." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "silbato multiherramienta" @@ -125847,7 +125758,6 @@ msgstr "" "alguna vez hubiera pertenecido al mejor de todos." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "jaula para gallinas" @@ -125866,7 +125776,6 @@ msgstr "" " vacío para largarlo." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "silbato para perros" @@ -125885,7 +125794,6 @@ msgstr "" "atacar a los enemigos si en ese momento están dóciles." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "tijera de esquilar" @@ -125898,7 +125806,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "Es un juego de tijeras diseñado para obtener lana de oveja." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -125911,7 +125818,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -125926,7 +125832,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "transportador de mascota" @@ -125943,7 +125848,6 @@ msgstr "" "un animal para capturarlo, y en un espacio vacío para largarlo." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -125958,7 +125862,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -126000,7 +125903,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "control de auto radiocontrolado" @@ -126019,7 +125921,6 @@ msgstr "" " eran para el modelo deluxe?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "auto radiocontrolado" @@ -126066,7 +125967,6 @@ msgstr "" "que estos puedan ser activados luego de recibir una señal de radio." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "radio (apagada)" @@ -126100,7 +126000,6 @@ msgstr "" "radio cercanas." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "radio handy" @@ -126118,7 +126017,6 @@ msgstr "" "en día..." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "controlador remoto de vehículo" @@ -126212,7 +126110,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -126231,7 +126128,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "barómetro" @@ -126262,7 +126158,6 @@ msgstr "" "propia responsabilidad.\" Te parece que sentís que algo se mueve adentro." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "equipo de química" @@ -126282,7 +126177,6 @@ msgstr "" "te interesa." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "equipo básico de química" @@ -126301,7 +126195,6 @@ msgstr "" "que te interesa, pero vas a necesitar también una fuente de calor." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "equipo de electrólisis" @@ -126336,7 +126229,6 @@ msgstr "" "aceites esenciales de materia orgánica." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "tanque de hidrógeno" @@ -126353,7 +126245,6 @@ msgstr "" "desde cero o levantar un zepelín, te puede venir muy bien." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "higrómetro" @@ -126367,7 +126258,6 @@ msgstr "" "Un higrómetro de plástico que puede medir la humedad relativa del aire." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "tanque de nitrógeno" @@ -126384,7 +126274,6 @@ msgstr "" "su falta de reactividad. No intentes respirarlo." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "cilindro de oxígeno" @@ -126401,7 +126290,6 @@ msgstr "" "marcada con un símbolo de O2 descolorido pero legible." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "rejilla de platino" @@ -126465,7 +126353,6 @@ msgstr "" " cuando es activado." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "Doppler Radar Turbo 2000" @@ -126484,7 +126371,6 @@ msgstr "" "meteorológica. Sin embargo, no hay rastros del FLDSMDFR." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "equipo básico de análisis de laboratorio" @@ -126507,7 +126393,6 @@ msgstr "" "a poder crear el químico deseado." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "pequeña balanza" @@ -126525,7 +126410,6 @@ msgstr "" "bastante precisa." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "espectrofotómetro" @@ -126542,7 +126426,6 @@ msgstr "" " de una muestra líquida en un tubo especial llamado cuvette." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "medidor de pH" @@ -126561,7 +126444,6 @@ msgstr "" "equipo) y la otra sonda en una sustancia, se puede calcular su acidez." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "voltímetro" @@ -126582,7 +126464,6 @@ msgstr "" "para realizar modificaciones en las conexiones a la red." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "aparato de punto de fusión" @@ -126606,7 +126487,6 @@ msgstr "" "identificar qué es y su grado de pureza." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "agitador vórtex" @@ -126630,7 +126510,6 @@ msgstr "" "divertida de usar" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "detector de luz" @@ -126647,7 +126526,6 @@ msgstr "" "recibe en energía eléctrica para poder medirla." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "prisma de vidrio" @@ -126678,7 +126556,6 @@ msgid "" msgstr "Es un tubo pequeño de vidrio. ¿Qué más querrías saber sobre él?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "microscopio" @@ -126699,7 +126576,6 @@ msgstr "" "funcional. Por desgracia, de momento no sirve para mucho." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "microscopio de disección" @@ -126722,7 +126598,6 @@ msgstr "" "añadida, pero ¿qué harías tú con él?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -126741,7 +126616,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -126760,7 +126634,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -126781,7 +126654,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -126799,7 +126671,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -126862,7 +126733,6 @@ msgstr "" "refugio ha sido dañado y necesita ser reparado." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "carpa grande" @@ -126878,7 +126748,6 @@ msgstr "" "Es una carpa tamaño familiar. Provee mucho espacio, pero es muy voluminosa." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "equipo de refugio" @@ -126891,7 +126760,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "Es un pequeño refugio hecho de palos y pieles. Usalo para ubicarlo." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "carpa" @@ -126973,7 +126841,6 @@ msgstr "" "hojas curadas de tabaco." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -126986,7 +126853,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -126999,7 +126865,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "tijera" @@ -127015,7 +126880,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "papel" @@ -127028,7 +126892,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Es un pedazo de papel. Se puede usar para hacer fuego." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -127044,7 +126907,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -127059,7 +126921,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "agujas de tejer" @@ -127077,7 +126938,6 @@ msgstr "" "convertir el hilo en tela." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "aguja de hueso" @@ -127107,7 +126967,6 @@ msgstr "" "para muchas tareas de sastrería, es necesaria para coser neopreno." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "aguja de madera" @@ -127124,8 +126983,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "costurero" @@ -127161,8 +127019,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "equipo de sastre" @@ -127179,7 +127036,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -127192,7 +127048,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "cepillo de fregar" @@ -127205,7 +127060,6 @@ msgid "This is a simple scrub brush." msgstr "Es un simple cepillo de fregar." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "cortadora eléctrica de pelo" @@ -127253,7 +127107,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "hojita de afeitar" @@ -127284,7 +127137,6 @@ msgstr "" "por uso." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "esponja" @@ -127329,7 +127181,6 @@ msgstr "" "agrega jabón. Necesita 1 unidad de jabón por uso." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "tabla de lavar" @@ -127346,7 +127197,6 @@ msgstr "" " tenés algún agente lavador." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -127389,7 +127239,6 @@ msgstr "" "enterrarla." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "trampa de cuchilla" @@ -127413,7 +127262,6 @@ msgstr "" "fuerza. La trampa tiene un área de efecto de 3x3." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "trampa de tabla con clavos" @@ -127466,7 +127314,6 @@ msgstr "" "pisa." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "miguelitos sueltos" @@ -127489,7 +127336,6 @@ msgstr "" "pie." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -127546,7 +127392,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -127575,7 +127420,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "trampa de cuerda" @@ -127614,7 +127458,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -127636,7 +127479,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "hacha para leña" @@ -127667,7 +127509,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "motosierra (apagada)" @@ -127709,7 +127550,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "La motosierra está encendida y hace mucho ruido. Usala para apagarla." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "sierra circular (apagada)" @@ -127759,7 +127599,6 @@ msgstr "" " está girando. Usala para apagarla." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "hacha de cobre" @@ -127792,7 +127631,6 @@ msgstr "" "usar para cortar cosas y como martillo." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "motosierra eléctrica (apagada)" @@ -127904,7 +127742,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "sierra para madera" @@ -127917,7 +127754,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "Es una sierra fina, útil para cortar objetos de madera." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -127926,7 +127762,6 @@ msgstr[2] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -128072,7 +127907,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -128087,7 +127921,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -128102,7 +127935,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "fosa de carbonización para ladrillos" @@ -128120,7 +127952,6 @@ msgstr "" "hecha de arcilla." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "cardadoras de mano" @@ -128138,7 +127969,6 @@ msgstr "" "para poder usarlas en la producción textil." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "espátula" @@ -128151,7 +127981,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "Una herramienta similar a un cincel, diseñado para sacar la pintura." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -128166,7 +127995,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -128182,7 +128010,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "mezcladora" @@ -128200,7 +128027,6 @@ msgstr "" "un calentador incorporado." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "taladro inalámbrico" @@ -128216,7 +128042,6 @@ msgstr "" "puntas para el taladro." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "huso y aspa" @@ -128233,7 +128058,6 @@ msgstr "" "fibra." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "martillo neumático eléctrico" @@ -128249,7 +128073,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "sierra de arco" @@ -128277,7 +128100,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "martillo" @@ -128311,7 +128133,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "agujereadora manual" @@ -128328,7 +128149,6 @@ msgstr "" "agotadora de utilizar." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "manguera de goma" @@ -128345,7 +128165,6 @@ msgstr "" " o para chuparle la nafta a un vehículo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "gato hidráulico tipo botella" @@ -128360,7 +128179,6 @@ msgstr "" "vehículos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "gato hidráulico improvisado" @@ -128377,7 +128195,6 @@ msgstr "" "capaz de levantar vehículos si sos tan valiente como para usarlo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "gato hidráulico de tipo tijera" @@ -128392,7 +128209,6 @@ msgstr "" "vehículos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "martillo neumático" @@ -128411,7 +128227,6 @@ msgstr "" "adyacente (si tiene nafta)." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -128426,7 +128241,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "fosas de carbonización eléctricas" @@ -128448,7 +128262,6 @@ msgstr "" "del vehículo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "equipo armero de reparación" @@ -128468,7 +128281,6 @@ msgstr "" "batería para cada vez que se usa." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "martillo improvisado" @@ -128483,7 +128295,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -128498,7 +128309,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "fratacho de metal" @@ -128515,7 +128325,6 @@ msgstr "" " la mezcla, en las obras." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "kit de reparación misceláneo" @@ -128548,7 +128357,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "molde de plástico" @@ -128565,7 +128373,6 @@ msgstr "" " de plástico." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "multi-herramienta" @@ -128582,7 +128389,6 @@ msgstr "" "herramientas pequeñas en los mangos del par de pinzas." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "soplete de oxicorte" @@ -128605,7 +128411,6 @@ msgstr "" "usos metalúrgicos, podés activarlo para destruir obstáculos de metal." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "brocha" @@ -128618,7 +128423,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "Un pincel ancho, adecuado para pintar paredes." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "pico" @@ -128635,7 +128439,6 @@ msgstr "" "habilidad) enemigos duros. ¡Picá la tierra!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -128650,7 +128453,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "tenaza" @@ -128666,7 +128468,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "pulidor eléctrico" @@ -128700,7 +128501,6 @@ msgstr "" "martillo serio." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "destornillador" @@ -128718,7 +128518,6 @@ msgstr "" "mayoría de las mecánicas, y tiene muchos otros usos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "juego de destornilladores" @@ -128735,7 +128534,6 @@ msgstr "" "garantiza tener la herramienta adecuada para un trabajo preciso." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "equipo de reparación de armas" @@ -128755,7 +128553,6 @@ msgstr "" "batería para cada vez que se usa." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -128790,7 +128587,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "caja de herramientas" @@ -128808,7 +128604,6 @@ msgstr "" "de construcción." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -128839,7 +128634,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "soldador de arco" @@ -128854,7 +128648,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "fratacho de madera" @@ -128871,7 +128664,6 @@ msgstr "" " las obras. También lo podés usar para reventar algunas cabezas." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "fibra de lana" @@ -128888,7 +128680,6 @@ msgstr "" "pedazos de fieltro o hilos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "navaja de precisión" @@ -128910,7 +128701,6 @@ msgstr "" "para poder carnear cadáveres." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "llave francesa" @@ -128927,7 +128717,6 @@ msgstr "" "cuerpo a cuerpo, y es utilizada en muchas tareas mecánicas." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -128943,7 +128732,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -130392,6 +130180,18 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -130774,7 +130574,6 @@ msgstr "" " cerebro." #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -131281,6 +131080,14 @@ msgstr[2] "mesas de madera" msgid "A crude wooden table." msgstr "Es una mesa rudimentaria de madera." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -131639,6 +131446,32 @@ msgstr[2] "kits de rueditas" msgid "A set of casters, like on a shopping cart." msgstr "Un kit de rueditas, como para un changuito." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -132498,13 +132331,6 @@ msgstr "CEMENTO" msgid "FERTILIZER" msgstr "FERTILIZANTE" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "PIEDRAS" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -132833,13 +132659,6 @@ msgstr "PAPEL" msgid "PLASTIC" msgstr "PLÁSTICO" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "ELECTRÓNICOS" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -133400,7 +133219,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -133424,7 +133243,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Dolor" @@ -137878,7 +137697,7 @@ msgstr[2] "multicocinas malévolas" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "¡Esta cocina malévola tiene vida propia! ¡Cuidado!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "holograma" @@ -137887,7 +137706,7 @@ msgstr[2] "hologramas" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "Es una imagen hecha de luz, casi parece real." @@ -148870,9 +148689,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "Vamos a intercambiar objetos." @@ -149605,9 +149424,9 @@ msgstr "¿Qué estás haciendo acá?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -149623,9 +149442,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "¿Puedo hacer algo por vos?" @@ -149653,25 +149472,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "¿Por qué no te vas a otro lugar?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "Vamos a negociar entonces." #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -149691,9 +149510,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -156386,7 +156205,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "Hey ." @@ -166716,17 +166535,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -168039,7 +167858,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -173892,9 +173711,9 @@ msgstr "¿Tenés algún consejo de supervivencia?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "Adiós." @@ -183983,7 +183802,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Bosque" @@ -184353,7 +184171,7 @@ msgid "island" msgstr "isla" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "cabaña" @@ -184375,7 +184193,6 @@ msgstr "sótano de la cabaña" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "bosque" @@ -187128,7 +186945,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "orilla del lago" @@ -187175,7 +186991,7 @@ msgstr "ARMA" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "TODOS" @@ -187300,6 +187116,13 @@ msgstr "ELECTRÓNICA" msgid "CBMS" msgstr "MCB" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "HERRAMIENTAS" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -187313,7 +187136,7 @@ msgstr "ILUMINACIÓN" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "ARMADURA" @@ -187354,7 +187177,7 @@ msgstr "MEDICAMENTOS" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "MATERIALES" @@ -198158,7 +197981,7 @@ msgstr "armazón liviana plegable" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -198264,6 +198087,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "luces de espacio lateral" @@ -200190,6 +200020,24 @@ msgstr "" "Es un conjunto de pequeñas ruedas, puesta en ejes, como las que usan las " "sillas de oficina o los changuitos." +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "ruedas" @@ -200264,7 +200112,7 @@ msgstr "" "Reforzada con alambre para hacerla más resistente a las roturas que el " "vidrio normal." -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Bicicleta" @@ -200332,6 +200180,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "canoa" @@ -200477,8 +200329,8 @@ msgid "Wheelbarrow" msgstr "Carretilla" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Silla de ruedas Plegable" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -200820,7 +200672,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "Camioneta de Seguridad" @@ -207962,7 +207813,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -207970,8 +207821,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -209004,9 +208855,9 @@ msgstr[2] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -209020,7 +208871,7 @@ msgstr[2] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -227172,74 +227023,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "OTRAS HERRAMIENTAS" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "UTENSILIOS DE COCINA" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "INGREDIENTES CULINARIOS" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "CHATARRA METÁLICA" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "CHATARRA ELECTRÓNICA" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "TELAS" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "OBJETOS DE VALOR" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -227249,177 +227032,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "Botín: Objetos de valor" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "Destino de los objetos de valor." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "Limitar Crecimiento Fúngico" @@ -228651,116 +228263,135 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" -msgstr[0] "MCB Generador de Energía a Sangre" -msgstr[1] "MCB Generador de Energía a Sangre" -msgstr[2] "MCB Generador de Energía a Sangre" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -228768,38 +228399,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -228807,48 +228439,58 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "Oricalco" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" -msgstr "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" @@ -228859,47 +228501,47 @@ msgstr "" "aprender hechizos y disminuye tu probabilidad de fallo de hechizos. Aprendes" " esta habilidad estudiando libros o hechizos." -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -228907,24 +228549,72 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "Aspirante a mago" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "Aspirante a maga" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -228934,7 +228624,7 @@ msgstr "" "mago, extrañamente sereno con el mundo cayendo a tu alrededor." #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -228943,18 +228633,18 @@ msgstr "" "Encontraste un folleto con colores brillantes que decía que puedes ser una " "maga, extrañamente serena con el mundo cayendo a tu alrededor." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "Pirómano Kelvinista" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "Pirómana Kelvinista" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -228964,7 +228654,7 @@ msgstr "" "deseas ejercerlo sobre el mundo." #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -228973,18 +228663,18 @@ msgstr "" "Has amado el fuego toda tu vida. Ahora has descubierto tu fuego interior y " "deseas ejercerlo sobre el mundo." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "Druida" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "Druida" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -228994,7 +228684,7 @@ msgstr "" "debe prosperar." #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -229004,7 +228694,7 @@ msgstr "" "debe prosperar." #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -229018,7 +228708,7 @@ msgstr "" "tangible para protegerte." #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -229032,7 +228722,7 @@ msgstr "" "tangible para protegerte." #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -229042,7 +228732,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -229052,7 +228742,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -229061,7 +228751,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -229070,7 +228760,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -229080,7 +228770,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -229089,18 +228779,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -229109,7 +228799,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -229117,18 +228807,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -229138,7 +228828,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -229147,18 +228837,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -229166,25 +228856,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -229192,59 +228882,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "Perdiendo la fe" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "Perdiendo la fe" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -229257,7 +228979,7 @@ msgstr "" "por completo." #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -229270,25 +228992,25 @@ msgstr "" "por completo." #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "Iglesia" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -229300,7 +229022,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -229311,25 +229033,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -229339,7 +229061,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -229349,592 +229071,645 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "Aura de protección" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -229946,245 +229721,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -230192,487 +229940,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -230680,321 +230448,365 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -231002,20 +230814,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -231023,74 +230835,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -231098,21 +230910,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "Ionización" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -231124,105 +230936,129 @@ msgstr "" "relámpagos naturales, la luz y el trueno producidos dejarán atónitos a tus " "enemigos." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -231230,16 +231066,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -231247,74 +231083,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -231322,350 +231158,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "Aterrado" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -231673,7 +231509,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -231681,7 +231517,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -231689,53 +231525,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "pulsera de cobre de infusión" -msgstr[1] "pulseras de cobre de infusión" -msgstr[2] "pulseras de cobre de infusión" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" -"Esta pulsera tiene runas gravadas. Sentís un cierto aire místico cuando la " -"mirás. Podría ser útil para imbuir maná en un material." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "pulsera de plata de infusión" -msgstr[1] "pulseras de plata de infusión" -msgstr[2] "pulseras de plata de infusión" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "diadema de cobre" -msgstr[1] "diademas de cobre" -msgstr[2] "diademas de cobre" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" -"Es una banda de madera con adornos de cobre, que se usa en la cabeza. Al " -"estar en contacto con tus sienes te hace sentir muy calmado." - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "poción de inicio" @@ -231743,7 +231539,7 @@ msgstr[1] "pociones de inicio" msgstr[2] "pociones de inicio" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." @@ -231751,7 +231547,7 @@ msgstr "" "Es alcohol fuerte, infundido con maná y concentrado en un líquido que puede " "estabilizar hechizos en forma líquida. Te lo podés tomar igual, si querés." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "poción superior de inicio" @@ -231759,7 +231555,7 @@ msgstr[1] "pociones superior de inicio" msgstr[2] "pociones superior de inicio" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." @@ -231767,7 +231563,7 @@ msgstr "" "Es etanol puro saturado con energía mágica. La energía pura concentrada " "dentro causa que la superficie de la poción forme olas continuamente." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "glándula suprarrenal grande" @@ -231775,7 +231571,7 @@ msgstr[1] "glándulas suprarrenales grandes" msgstr[2] "glándulas suprarrenales grandes" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." @@ -231784,7 +231580,7 @@ msgstr "" "adrenalina, cortisol y aldosterona. Este es enorme, ya sea natural o por " "mutación." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -231792,59 +231588,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -231852,14 +231602,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "esencia de dragón" @@ -231867,13 +231617,13 @@ msgstr[1] "esencias de dragón" msgstr[2] "esencias de dragón" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "Es la esencia mágica de un dragón, destilada en forma concentrada." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -231882,43 +231632,13 @@ msgstr[2] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -231926,14 +231646,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "alumentum" @@ -231941,19 +231661,14 @@ msgstr[1] "alumentum" msgstr[2] "alumentum" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -"El alumentum es carbón o carbón vegetal procesado mágicamente. Arde tanto " -"como el magnesio y por un tiempo significativamente más extenso. Uno de los " -"pocos materiales mágicos que todavía se produce en cantidad debido a su " -"utilidad." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -231961,47 +231676,47 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "sangre de dragón" msgstr[1] "sangre de dragón" msgstr[2] "sangre de dragón" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "flecha de oricalco" msgstr[1] "flechas de oricalco" msgstr[2] "flechas de oricalco" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "Ichaival" msgstr[1] "Ichaivals" msgstr[2] "Ichaivals" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -232009,7 +231724,7 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" @@ -232019,7 +231734,7 @@ msgstr "" "brillo misterioso. Tiene muy alta probabilidad de permanecer intacta una vez" " disparada, pero solo puede ser disparada desde un Ichaival." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "par de mangas de quitina demoníaca" @@ -232028,7 +231743,7 @@ msgstr[2] "pares de mangas de quitina demoníaca" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." @@ -232037,7 +231752,7 @@ msgstr "" "cuidadosamente limpiados y recortados. Son resistentes al fuego y muy " "duraderas." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "armadura de quitina demoníaca" @@ -232045,7 +231760,7 @@ msgstr[1] "armaduras de quitina demoníaca" msgstr[2] "armaduras de quitina demoníaca" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." @@ -232054,7 +231769,7 @@ msgstr "" "demoníacas, cuidadosamente limpiados y recortados. Es resistente al fuego y " "muy duradera." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "casco de quitina demoníaca" @@ -232062,7 +231777,7 @@ msgstr[1] "cascos de quitina demoníaca" msgstr[2] "cascos de quitina demoníaca" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." @@ -232071,7 +231786,7 @@ msgstr "" "cuidadosamente limpiados y recortados. Cubre toda la cabeza, es resistente " "al fuego y muy duradero." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "par de guantes de quitina demoníaca" @@ -232080,7 +231795,7 @@ msgstr[2] "pares de guantes de quitina demoníaca" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." @@ -232089,7 +231804,7 @@ msgstr "" "cuidadosamente limpiados y recortados. Son resistentes al fuego y muy " "duraderos." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "par de botas de quitina demoníaca" @@ -232098,7 +231813,7 @@ msgstr[2] "pares de botas de quitina demoníaca" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." @@ -232107,7 +231822,7 @@ msgstr "" "cuidadosamente limpiados y recortados. Son resistentes al fuego y muy " "duraderas." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -232116,13 +231831,13 @@ msgstr[2] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -232130,42 +231845,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" -"Utilizando la última tecnología en tecnomancia, este biónico es capaz de " -"convertir la energía interna almacenada en la sangre en energía biónica. " -"Cuanto más fuerte sea la sangre, mejor. Puede contener hasta 100 ml de " -"sangre." - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -232173,13 +231859,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "pellejo crudo de dragón negro" @@ -232187,7 +231873,7 @@ msgstr[1] "pellejos crudos de dragón negro" msgstr[2] "pellejos crudos de dragón negro" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " @@ -232197,7 +231883,7 @@ msgstr "" "negro. Es un pedazo lo suficientemente grande como para hacer protecciones, " "y con las escamas suficientes para hacer una armadura." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -232205,24 +231891,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -232230,13 +231916,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "par de botas negras de escamas de dragón" @@ -232245,14 +231931,14 @@ msgstr[2] "pares de botas negras de escamas de dragón" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" "Son unas botas hechas con escamas negras de dragón. Protegen mucho y son " "sorprendentemente livianas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "par de botas negras de pellejo de dragón" @@ -232261,14 +231947,14 @@ msgstr[2] "pares de botas negras de pellejo de dragón" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" "Son unas botas hechas con pellejo negro de dragón. Protegen mucho y son " "sorprendentemente livianas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "casco negro de escamas de dragón" @@ -232276,7 +231962,7 @@ msgstr[1] "cascos negros de escamas de dragón" msgstr[2] "cascos negros de escamas de dragón" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." @@ -232284,7 +231970,7 @@ msgstr "" "Es un casco hecho con escamas negras de dragón, unidas con pellejo negro de " "dragón. Viene con un visor que cubre toda la cara." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "casco negro de pellejo de dragón" @@ -232292,7 +231978,7 @@ msgstr[1] "cascos negros de pellejo de dragón" msgstr[2] "cascos negros de pellejo de dragón" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." @@ -232300,7 +231986,7 @@ msgstr "" "Es un casco hecho de pellejo negro de dragón. Protege bien la cabeza pero no" " te cubre la cara." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "armadura negra de escamas de dragón" @@ -232308,7 +231994,7 @@ msgstr[1] "armaduras negras de escamas de dragón" msgstr[2] "armaduras negras de escamas de dragón" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" @@ -232318,7 +232004,7 @@ msgstr "" "accesorios para cubrir tu torso, piernas y brazos, con el beneficio de ser " "muy liviana y flexible." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "armadura negra de pellejo de dragón" @@ -232326,7 +232012,7 @@ msgstr[1] "armaduras negras de pellejo de dragón" msgstr[2] "armaduras negras de pellejo de dragón" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " @@ -232336,7 +232022,7 @@ msgstr "" "accesorios para cubrir tu torso, piernas y brazos, con el beneficio de ser " "muy liviana y flexible." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "par de guantes negros de escamas de dragón" @@ -232345,20 +232031,20 @@ msgstr[2] "pares de guantes negros de escamas de dragón" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "Es un par de guantes resistentes hechos de escamas negras de dragón." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "par de guantes negros de pellejo de dragón" msgstr[1] "pares de guantes negros de pellejo de dragón" msgstr[2] "pares de guantes negros de pellejo de dragón" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "par de botas XL negras de escamas de dragón" @@ -232367,7 +232053,7 @@ msgstr[2] "pares de botas XL negras de escamas de dragón" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." @@ -232376,7 +232062,7 @@ msgstr "" " adaptarse a los cuerpos más extraños. Protegen mucho y son soprendentemente" " livianas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "par de botas XL negras de pellejo de dragón" @@ -232385,7 +232071,7 @@ msgstr[2] "pares de botas XL negras de pellejo de dragón" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." @@ -232394,7 +232080,7 @@ msgstr "" "adaptarse a los cuerpos más extraños. Protegen mucho y son soprendentemente " "livianas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "par de guantes negros XL de escamas de dragón" @@ -232403,7 +232089,7 @@ msgstr[2] "pares de guantes negros XL de escamas de dragón" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." @@ -232411,7 +232097,7 @@ msgstr "" "Es un par de guantes resistentes hechos de escamas negras de dragón que " "pueden cubrir tus manos o lo que sea que tengas en lugar de manos." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "par de guantes negros XL de pellejo de dragón" @@ -232420,7 +232106,7 @@ msgstr[2] "pares de guantes negros XL de pellejo de dragón" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " @@ -232431,7 +232117,7 @@ msgstr "" "extremas. Tiene el tamaño como para ser usado con las anatomías más " "extrañas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "casco negro XL de escamas de dragón" @@ -232439,7 +232125,7 @@ msgstr[1] "cascos negros XL de escamas de dragón" msgstr[2] "cascos negros XL de escamas de dragón" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" @@ -232449,7 +232135,7 @@ msgstr "" "negro de dragón. Viene con el visor completo y es lo suficientemente grande " "para que entre en las cabezas más extrañas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "casco negro XL de pellejo de dragón" @@ -232457,7 +232143,7 @@ msgstr[1] "cascos negros XL de pellejo de dragón" msgstr[2] "cascos negros XL de pellejo de dragón" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " @@ -232467,7 +232153,7 @@ msgstr "" "bien, y no cubre tu cara pero es lo suficientemente grande para entrar en " "las cabezas más extrañas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "armadura negra XL de escamas de dragón" @@ -232475,7 +232161,7 @@ msgstr[1] "armaduras negras XL de escamas de dragón" msgstr[2] "armaduras negras XL de escamas de dragón" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -232485,7 +232171,7 @@ msgstr "" " los accesorios para cubrir tu torso, piernas y brazos, y con tamaño " "suficiente para cubrir los cuerpos más extraños." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "armadura negra XL de pellejo de dragón" @@ -232493,7 +232179,7 @@ msgstr[1] "armaduras negras XL de pellejo de dragón" msgstr[2] "armaduras negras XL de pellejo de dragón" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -232503,7 +232189,7 @@ msgstr "" "los accesorios para cubrir tu torso, piernas y brazos, y con tamaño " "suficiente para cubrir los cuerpos más extraños." -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -232512,12 +232198,12 @@ msgstr[2] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -232525,7 +232211,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -232533,13 +232219,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -232547,331 +232233,272 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer rune" +msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Biomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" +"This magical pebble has an insignia of rended flesh and bones on it. It is " +"necessary for Biomancers to channel magic into their crafts." msgstr "" -"No podés comprar esto, ¿así que la tenés que guardar hasta el último jefe! " -"Pensandolo bien, ¡ni siquiera en ese momento la gastes!" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer rune" +msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Technomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This magical pebble has an insignia of clockwork and gears on it. It is " +"necessary for Technomancers to channel magic into their crafts." +msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus rune" +msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "Es una poción Gracia Gatuna. Incrementará tu destreza por 10 minutos." +"This magical pebble has an insignia of crystal and mana orbs on it. It is " +"necessary for Magi to channel magic into their crafts." +msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper rune" +msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Earthshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "Es una poción Fuerza Ogro. Incrementará tu fuerza por 10 minutos." +"This magical pebble has an insignia of steel and rocks on it. It is " +"necessary for Earthshapers to channel magic into their crafts." +msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist rune" +msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Kelvinist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." +"This magical pebble has an insignia of ice and flames on it. It is " +"necessary for Kelvinists to channel magic into their crafts." msgstr "" -"Es una poción Vista de Águila. Incrementará tu percepción por 10 minutos." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper rune" +msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" -" Es una poción Astucia de Zorro. Incrementará tu inteligencia por 10 " -"minutos." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "muñeco vudú zombi" -msgstr[1] "muñecos vudú zombi" -msgstr[2] "muñecos vudú zombi" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" -"Es un efigie notablemente precisas de un humano muerto viviente, incluye " -"pedazos de hueso y órganos. La magia necromántica retrasa la putrefacción, " -"pero no dura para siempre. Pincharlo con una aguja puede forzarlo a que te " -"obedezca." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "muñeco vudú osificado" -msgstr[1] "muñecos vudú osificado" -msgstr[2] "muñecos vudú osificado" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Stormshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." +"This magical pebble has an insignia of lightning and storm clouds on it. It" +" is necessary for Stormshapers to channel magic into their crafts." msgstr "" -"Es un efigie notablemente precisas de un humano muerto viviente, cubierto de" -" hueso e incluye pedazos de órganos. La magia necromántica retrasa la " -"putrefacción, pero no dura para siempre. Pincharlo con una aguja puede " -"forzarlo a que te obedezca." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "muñeco vudú puma" -msgstr[1] "muñecos vudú puma" -msgstr[2] "muñecos vudú puma" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid rune" +msgid_plural "Druid runes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Druid rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of nature and trees on it. It is " +"necessary for Druids to channel magic into their crafts." msgstr "" -"Es un efigie notablemente precisas de un puma muerto viviente, completado " -"con piel, huesos y órganos. La magia necromántica retrasa la putrefacción, " -"pero no dura para siempre. Pincharlo con una aguja puede forzarlo a que te " -"obedezca." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "poción Restoración Retorcida" -msgstr[1] "pociones Restoración Retorcida" -msgstr[2] "pociones Restoración Retorcida" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist rune" +msgid_plural "Animist runes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Animist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." +"This magical pebble has an insignia of summoners on it. It is necessary for" +" Animists to channel magic into their crafts." msgstr "" -"Este líquido de olor nauseabundo simula la regeneración de muertos " -"vivientes, acelerando tu corazón a niveles peligrosos. Tomarlo en peligro o " -"en condiciones críticas puede ser letal." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "poción Restoración Retorcida Mejorada" -msgstr[1] "pociones Restoración Retorcida Mejorada" -msgstr[2] "pociones Restoración Retorcida Mejorada" +#: data/mods/Magical_Nights/items/class_items.json +msgid "alchemist rune" +msgid_plural "alchemist runes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'alchemist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." +"This magical pebble has an insignia of alchemy and potions on it. While " +"versatile in use, the lack of attunement to any school prevents creation of " +"more advanced recipes." msgstr "" -"Este líquido de olor nauseabundo simula la regeneración de muertos " -"vivientes, acelerando tu corazón a niveles peligrosos. Tomarlo en peligro o " -"en condiciones críticas puede ser letal. Las técnicas mejoradas de infusión," -" disminuyen el esfuerzo del proceso." -#: data/mods/Magiclysm/items/class_runes.json -msgid "Biomancer rune" -msgid_plural "Biomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of rended flesh and bones on it. It is " -"necessary for Biomancers to channel magic into their crafts." +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Technomancer rune" -msgid_plural "Technomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of clockwork and gears on it. It is " -"necessary for Technomancers to channel magic into their crafts." +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Magus rune" -msgid_plural "Magi runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of crystal and mana orbs on it. It is " -"necessary for Magi to channel magic into their crafts." +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Earthshaper rune" -msgid_plural "Earthshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of steel and rocks on it. It is " -"necessary for Earthshapers to channel magic into their crafts." +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Kelvinist rune" -msgid_plural "Kelvinist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of ice and flames on it. It is " -"necessary for Kelvinists to channel magic into their crafts." +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Stormshaper rune" -msgid_plural "Stormshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of lightning and storm clouds on it. It" -" is necessary for Stormshapers to channel magic into their crafts." +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Druid rune" -msgid_plural "Druid runes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "cinturón de herramientas de tecnomante" +msgstr[1] "cinturones de herramientas de tecnomante" +msgstr[2] "cinturones de herramientas de tecnomante" -#. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of nature and trees on it. It is " -"necessary for Druids to channel magic into their crafts." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" +"Es un cinturón utilitario de cuero, que crea instantáneamente cualquier " +"herramienta que necesites. Hay que activarlo para enfundar y desenfundar un " +"arma." -#: data/mods/Magiclysm/items/class_runes.json -msgid "Animist rune" -msgid_plural "Animist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of summoners on it. It is necessary for" -" Animists to channel magic into their crafts." +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "alchemist rune" -msgid_plural "alchemist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of alchemy and potions on it. While " -"versatile in use, the lack of attunement to any school prevents creation of " -"more advanced recipes." +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "huevo de oso lechuza" @@ -232879,7 +232506,7 @@ msgstr[1] "huevos de oso lechuza" msgstr[2] "huevos de oso lechuza" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -232893,7 +232520,7 @@ msgstr "" "pequeño. Tal vez podrías abrirlo cuidadosamente para conseguir su bondadoso " "líquido dorado." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "yema de huevo de oso lechuza" @@ -232901,11 +232528,11 @@ msgstr[1] "yemas de huevo de oso lechuza" msgstr[2] "yemas de huevo de oso lechuza" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "Es el líquido interior de un huevo de oso lechuza. Buena comida." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "bola de pelo" @@ -232913,14 +232540,14 @@ msgstr[1] "bolas de pelo" msgstr[2] "bolas de pelo" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" "Es un bola grande y desagradable de saliva y pelos de animal. no te la " "tragues." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "carne de dragón" @@ -232928,7 +232555,7 @@ msgstr[1] "carne de dragón" msgstr[2] "carne de dragón" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" @@ -232938,7 +232565,7 @@ msgstr "" "manera que otras carnes, es obvio que todavía retiene algunas de sus " "propiedades mágicas." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "grithongo" @@ -232946,14 +232573,14 @@ msgstr[1] "grithongos" msgstr[2] "grithongos" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" "Son hongos cosechados de un aullador muerto. Puede usarse en la realización " "de pociones." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "carne purificada" @@ -232961,7 +232588,7 @@ msgstr[1] "carnes purificadas" msgstr[2] "carnes purificadas" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." @@ -232969,7 +232596,7 @@ msgstr "" "Idéntico a la carne de laboratorio preCataclismo. Debería ser excelente, " "pero de alguna manera, solo es comestible." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "carne impura" @@ -232977,7 +232604,7 @@ msgstr[1] "carnes impuras" msgstr[2] "carnes impuras" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " @@ -232987,7 +232614,7 @@ msgstr "" "querés ofrecerle esto a tus amigos, aunque si lo hacés, no van a notar la " "diferencia por un rato." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -232995,13 +232622,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -233009,13 +232636,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -233023,13 +232650,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -233037,4648 +232664,5297 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "cinturón de fuerza +2" -msgstr[1] "cinturones de fuerza +2" -msgstr[2] "cinturones de fuerza +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "cinturón de apuro" -msgstr[1] "cinturones de apuro" -msgstr[2] "cinturones de apuro" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" -msgstr[0] "sombrero de mago" -msgstr[1] "sombreros de mago" -msgstr[2] "sombreros de mago" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -"Es un sombrero puntiagudo azul con estrellas cosidas. Al usarlo, aumenta tu " -"regeneración de maná." -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "par de guantes mágicos de piedra" +msgstr[1] "pares de guantes mágicos de piedra" +msgstr[2] "pares de guantes mágicos de piedra" + +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" +"Es una sustancia mágica similar a la piedra pero flexible, que puede usarse " +"para protección o como arma." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" + +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "lámpara mágica" +msgstr[1] "lámparas mágicas" +msgstr[2] "lámparas mágicas" + +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "Es una fuente de luz mágica que ilumina un área pequeña." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "" + +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "luz mágica" +msgstr[1] "luces mágicas" +msgstr[2] "luces mágicas" + +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." +msgstr "Es una pequeña luz mágica que podés usar para leer." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "escudo grande de hielo mágico" +msgstr[1] "escudos grandes de hielo mágico" +msgstr[2] "escudos grandes de hielo mágico" + +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "" +"Es un escudo liviano pero resistente, fabricado íntegramente de hielo " +"mágico." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "coberturas de hielo resbaladizo" +msgstr[1] "coberturas de hielo resbaladizo" +msgstr[2] "coberturas de hielo resbaladizo" + +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" +"Es una revestimiento de hielo mágico resbaladizo que se usa en los pies. Es " +"bastante rápido para desplazarse en piso liso, pero muy difícil de usar en " +"terreno irregular." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "cinturón de herramientas de tecnomante" -msgstr[1] "cinturones de herramientas de tecnomante" -msgstr[2] "cinturones de herramientas de tecnomante" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "bolsa de carne" +msgstr[1] "bolsas de carne" +msgstr[2] "bolsas de carne" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -"Es un cinturón utilitario de cuero, que crea instantáneamente cualquier " -"herramienta que necesites. Hay que activarlo para enfundar y desenfundar un " -"arma." +"Es una gran bolsa de carne resistente en tu espalda, llena de pequeños " +"tentáculos que agarran cualquier cosa que pongas dentro. Cambia y se ajusta " +"para minimizar la incomodidad." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +"You squeeze the seed in your palm, and it begins to turn to a fine dust." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" -msgstr[0] "par de botas de siete leguas" -msgstr[1] "pares de botas de siete leguas" -msgstr[2] "pares de botas de siete leguas" - -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -"Son unas botas de cuero gastado y acero, que son extremadamente cómodas y " -"resistentes. Parece que tienen mucho uso y que lo seguirá teniendo. Hacen " -"que tu movimiento sea mucho más fácil." - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "par de botas de apuro" -msgstr[1] "pares de botas de apuro" -msgstr[2] "pares de botas de apuro" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "aura de ofuscamiento" +msgstr[1] "auras de ofuscamiento" +msgstr[2] "auras de ofuscamiento" + +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" +"Es una capa de magia envolvente e invisible que distorsiona la luz alrededor" +" de tu cuerpo. Te permite esquivar dos ataques extra por turno." -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" -msgstr[0] "par de botas aislantes" -msgstr[1] "pares de botas aislantes" -msgstr[2] "pares de botas aislantes" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "aura de resistencia al ácido" +msgstr[1] "auras de resistencia al ácido" +msgstr[2] "auras de resistencia al ácido" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." +msgstr "Es una capa envolvente e invisible que protege contra el ácido." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "aura de gran resistencia al ácido" +msgstr[1] "auras de gran resistencia al ácido" +msgstr[2] "auras de gran resistencia al ácido" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "armadura de escarcha" +msgstr[1] "armaduras de escarcha" +msgstr[2] "armaduras de escarcha" + +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "Es una fina capa de hielo mágico que cubre el cuerpo entero." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "cobertura de piedra" +msgstr[1] "cobertura de piedra" +msgstr[2] "cobertura de piedra" + +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -"Son unas botas de cuero con pequeñas runas que parecen rellenas de goma, " -"extremadamente cómodas y resistentes. Cuando las usás, sos inmune al daño " -"por electricidad." +"Es una fina capa de una piedra que casi parece fluida, y cubre el cuerpo " +"entero." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "quemadura de sobrecarga" +msgstr[1] "quemaduras de sobrecarga" +msgstr[2] "quemaduras de sobrecarga" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "Ay, ¡esto es muy elegante! Pero ya va a pasar, ¿no?" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "aura de protección" +msgstr[1] "auras de protección" +msgstr[2] "auras de protección" + +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" +"Es una capa envolvente e invisible de aura mágica que te protege del " +"ambiente." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" + +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." msgstr "" +"Es la sangre de un dragón, emite calor y al mirarla podés ver patrones " +"formándose y despareciendo como si estuvieras mirando un fuego." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" +"Es sangre que ha sido llena de energía arcana. Libera un débil brillo azul." + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "maná cristalizado" +msgstr[1] "maná cristalizado" +msgstr[2] "maná cristalizado" + +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" +"Es un poco de maná cristalizado. Puede ser puesto en cristales recargables " +"de maná, pero no puede ser descargado." + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "garrote +1s" -msgstr[1] "garrotes +1s" -msgstr[2] "garrotes +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" +msgstr[0] "conglomerado de oricalco" +msgstr[1] "conglomerados de oricalco" +msgstr[2] "conglomerados de oricalco" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" -msgstr[0] "garrote +2s" -msgstr[1] "garrotes +2s" -msgstr[2] "garrotes +2s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" +"Es un pedazo de oricalco crudo. Necesita ser reformado en un lingote para " +"poder utilizarse." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" +msgstr[0] "pedacito de oricalco" +msgstr[1] "pedacitos de oricalco" +msgstr[2] "pedacitos de oricalco" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" +"Es un pedacito de oricalco que se rompió de un pedazo más grande. Necesita " +"ser reformado en un lingote para poder utilizarse." + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" +msgstr[0] "mercurio líquido" +msgstr[1] "mercurio líquido" +msgstr[2] "mercurio líquido" + +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" +"Mercurio líquido elemental. Es conocido por su utilización en los " +"termómetros." + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" -msgstr[0] "espada larga +1s" -msgstr[1] "espadas largas +1s" -msgstr[2] "espadas largas +1s" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "espadas largas +1s" -msgstr[1] "espadas largas +2s" -msgstr[2] "espadas largas +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Mjölnir" +msgstr[1] "Mjölnirs" +msgstr[2] "Mjölnirs" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" -msgstr[0] "maza +1s" -msgstr[1] "mazas +1s" -msgstr[2] "mazas +1s" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "maza +2s" -msgstr[1] "mazas +2s" -msgstr[2] "mazas +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "Gungnir" +msgstr[1] "Gungnirs" +msgstr[2] "Gungnirs" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "martillo de guerra +1s" -msgstr[1] "martillos de guerra +1s" -msgstr[2] "martillos de guerra +1s" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" -msgstr[0] "martillo de guerra +2s" -msgstr[1] "martillos de guerra +2s" -msgstr[2] "martillos de guerra +2s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "bate +1s" -msgstr[1] "bates +1s" -msgstr[2] "bates +1s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "Laevateinn" +msgstr[1] "Laevateinns" +msgstr[2] "Laevateinns" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "bate +2s" -msgstr[1] "bates +2s" -msgstr[2] "bates +2s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" +msgstr[0] "suero concentrado de maná" +msgstr[1] "sueros concentrados de maná" +msgstr[2] "sueros concentrados de maná" + +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" +"Es una poción de maná muy concentrada. No estás seguro de qué efectos " +"tendrá..." + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" +msgstr[0] "muñeco vudú zombi" +msgstr[1] "muñecos vudú zombi" +msgstr[2] "muñecos vudú zombi" + +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"Es un efigie notablemente precisas de un humano muerto viviente, incluye " +"pedazos de hueso y órganos. La magia necromántica retrasa la putrefacción, " +"pero no dura para siempre. Pincharlo con una aguja puede forzarlo a que te " +"obedezca." + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" +msgstr[0] "muñeco vudú osificado" +msgstr[1] "muñecos vudú osificado" +msgstr[2] "muñecos vudú osificado" + +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" +"Es un efigie notablemente precisas de un humano muerto viviente, cubierto de" +" hueso e incluye pedazos de órganos. La magia necromántica retrasa la " +"putrefacción, pero no dura para siempre. Pincharlo con una aguja puede " +"forzarlo a que te obedezca." + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" +msgstr[0] "muñeco vudú puma" +msgstr[1] "muñecos vudú puma" +msgstr[2] "muñecos vudú puma" + +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"Es un efigie notablemente precisas de un puma muerto viviente, completado " +"con piel, huesos y órganos. La magia necromántica retrasa la putrefacción, " +"pero no dura para siempre. Pincharlo con una aguja puede forzarlo a que te " +"obedezca." + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" +"No podés comprar esto, ¿así que la tenés que guardar hasta el último jefe! " +"Pensandolo bien, ¡ni siquiera en ese momento la gastes!" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "Es una poción Gracia Gatuna. Incrementará tu destreza por 10 minutos." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "Es una poción Fuerza Ogro. Incrementará tu fuerza por 10 minutos." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" +"Es una poción Vista de Águila. Incrementará tu percepción por 10 minutos." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" +" Es una poción Astucia de Zorro. Incrementará tu inteligencia por 10 " +"minutos." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" +msgstr[0] "poción Restoración Retorcida" +msgstr[1] "pociones Restoración Retorcida" +msgstr[2] "pociones Restoración Retorcida" + +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" +"Este líquido de olor nauseabundo simula la regeneración de muertos " +"vivientes, acelerando tu corazón a niveles peligrosos. Tomarlo en peligro o " +"en condiciones críticas puede ser letal." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "poción Restoración Retorcida Mejorada" +msgstr[1] "pociones Restoración Retorcida Mejorada" +msgstr[2] "pociones Restoración Retorcida Mejorada" + +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" +"Este líquido de olor nauseabundo simula la regeneración de muertos " +"vivientes, acelerando tu corazón a niveles peligrosos. Tomarlo en peligro o " +"en condiciones críticas puede ser letal. Las técnicas mejoradas de infusión," +" disminuyen el esfuerzo del proceso." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" +msgstr[0] "Dragones Negros: Ruinas de Pantano" +msgstr[1] "copias de Dragones Negros: Ruinas de Pantano" +msgstr[2] "copias de Dragones Negros: Ruinas de Pantano" + +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" +"Este libro detalla los dragones negros: el más maléfico de los dragones, que" +" vive en ruinas generalmente en pantanos. Inmune al ácido y además escupe " +"ácido. El libro también detalla cómo preparar su pellejo para fabricar " +"armaduras que tengan algo de esa resistencia al ácido." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "Guía de Principiante en Alquimia" +msgstr[1] "copias de Guía de Principiante en Alquimia" +msgstr[2] "copias de Guía de Principiante en Alquimia" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" +"Es un tomo de tapa blanda acerca del arte de la magia líquida, pero no " +"incluye alcohol." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgstr[0] "Guía de Vinculación de Almas en Necromancia" +msgstr[1] "copias de Guía de Vinculación de Almas en Necromancia" +msgstr[2] "copias de Guía de Vinculación de Almas en Necromancia" + +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" +"Es un tomo de tapa blanda del arte de vincular las almas de los muertos " +"vivientes en muñecos, y también de emular su factor de curación." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" +msgstr[0] "Magitek Ilustrado" +msgstr[1] "copias de Magitek Ilustrado" +msgstr[2] "copias de Magitek Ilustrado" + +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" +"Es un tomo de tapa blanda del arte de combinar tecnología moderna con magia." +" Tiene una advertencia en la contratapa: 'Industrias Cannith no se hace " +"responsable de cualquier mal funcionamiento o accidente de cualquiera de los" +" productos aquí mencionado'." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" +msgstr[0] "Armas de Asgard y más" +msgstr[1] "copias de Armas de Asgard y más" +msgstr[2] "copias de Armas de Asgard y más" + +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" +"Es un libro decorado que parece estar escrito con runas nórdicas. Basándonos" +" en las detalladas ilustraciones, parece contener información acerca de la " +"fabricación de varias armas utilizadas por los dioses." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" +msgstr[0] "Cocinando con Veneno" +msgstr[1] "copias de Cocinando con Veneno" +msgstr[2] "copias de Cocinando con Veneno" + +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" +"Es un libro con tapas de cuero con una caldera estampada en la tapa. " +"Adentro, describe las maneras de purificar mágicamente la comida." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" +msgstr[0] "Metales Legendarios" +msgstr[1] "copias de Metales Legendarios" +msgstr[2] "copias de Metales Legendarios" + +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" +"Es un libro con una cubierta de latón. Dice enseñar cómo hacer metales " +"mágicos como el oricalco. Es una lectura áspera incluso para ser un libro de" +" alquimia." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" +msgstr[0] "Protección contra Bestias Mágicas" +msgstr[1] "copias de Protección contra Bestias Mágicas" +msgstr[2] "copias de Protección contra Bestias Mágicas" + +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" +"Es un libro con tapas de cuero con la imagen de un escudo aguantando el " +"fuego de un dragón en la tapa. Adentro, tiene muchas maneras de convertir la" +" piel y el pellejo de un monstruo en equipo de protección." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" +msgstr[0] "Pergamino para Invocar Esqueleto" +msgstr[1] "Pergaminos para Invocar Esqueletos" +msgstr[2] "Pergaminos para Invocar Esqueletos" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" - -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" - -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" - -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" - -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" - -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" -msgstr[0] "frasco sin fin" -msgstr[1] "frascos sin fin" -msgstr[2] "frascos sin fin" - -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" -"Abrís el frasco y descubrís que está lleno de un dulce, dulce ¡whisky!" - -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "El frasco todavía no se terminó de volver a llenar." - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" -msgstr[0] "anillo de protección +2" -msgstr[1] "anillos de protección +2" -msgstr[2] "anillos de protección +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" -msgstr[0] "anillo de protección +4" -msgstr[1] "anillos de protección +4" -msgstr[2] "anillos de protección +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" -msgstr[0] "anillo de protección +6" -msgstr[1] "anillos de protección +6" -msgstr[2] "anillos de protección +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" -msgstr[0] "anillo de protección +8" -msgstr[1] "anillos de protección +8" -msgstr[2] "anillos de protección +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" -msgstr[0] "token mágico" -msgstr[1] "tokens mágicos" -msgstr[2] "tokens mágicos" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" - -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" - -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" - -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" - -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" - -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" - -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" - -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" - -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" - -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" - -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This slim book almost seems to be made from ice, it's cold to the touch." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" +msgstr[0] "caldera de purificación" +msgstr[1] "calderas de purificación" +msgstr[2] "calderas de purificación" + +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" +"Esta caldera, hecha de quitina de araña demoníaca, parece absorber la luz. " +"Puede contener hasta 16 litros de material y absorberá las pociones. Puede " +"tener otras propiedades que hay que descubrir." + +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "pulsera de cobre de infusión" +msgstr[1] "pulseras de cobre de infusión" +msgstr[2] "pulseras de cobre de infusión" + +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" +"Esta pulsera tiene runas gravadas. Sentís un cierto aire místico cuando la " +"mirás. Podría ser útil para imbuir maná en un material." + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "pulsera de plata de infusión" +msgstr[1] "pulseras de plata de infusión" +msgstr[2] "pulseras de plata de infusión" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "diadema de cobre" +msgstr[1] "diademas de cobre" +msgstr[2] "diademas de cobre" + +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" +"Es una banda de madera con adornos de cobre, que se usa en la cabeza. Al " +"estar en contacto con tus sienes te hace sentir muy calmado." + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "sombrero de mago" +msgstr[1] "sombreros de mago" +msgstr[2] "sombreros de mago" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "" +"Es un sombrero puntiagudo azul con estrellas cosidas. Al usarlo, aumenta tu " +"regeneración de maná." + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" +msgstr "" + +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "" + +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "cinturón de fuerza +2" +msgstr[1] "cinturones de fuerza +2" +msgstr[2] "cinturones de fuerza +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "par de botas de siete leguas" +msgstr[1] "pares de botas de siete leguas" +msgstr[2] "pares de botas de siete leguas" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." +msgstr "" +"Son unas botas de cuero gastado y acero, que son extremadamente cómodas y " +"resistentes. Parece que tienen mucho uso y que lo seguirá teniendo. Hacen " +"que tu movimiento sea mucho más fácil." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "par de botas de apuro" +msgstr[1] "pares de botas de apuro" +msgstr[2] "pares de botas de apuro" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "par de botas aislantes" +msgstr[1] "pares de botas aislantes" +msgstr[2] "pares de botas aislantes" + +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." +msgstr "" +"Son unas botas de cuero con pequeñas runas que parecen rellenas de goma, " +"extremadamente cómodas y resistentes. Cuando las usás, sos inmune al daño " +"por electricidad." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" -msgstr[0] "par de guantes mágicos de piedra" -msgstr[1] "pares de guantes mágicos de piedra" -msgstr[2] "pares de guantes mágicos de piedra" - -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -"Es una sustancia mágica similar a la piedra pero flexible, que puede usarse " -"para protección o como arma." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "lámpara mágica" -msgstr[1] "lámparas mágicas" -msgstr[2] "lámparas mágicas" - -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "Es una fuente de luz mágica que ilumina un área pequeña." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "luz mágica" -msgstr[1] "luces mágicas" -msgstr[2] "luces mágicas" - -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "Es una pequeña luz mágica que podés usar para leer." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" -msgstr[0] "escudo grande de hielo mágico" -msgstr[1] "escudos grandes de hielo mágico" -msgstr[2] "escudos grandes de hielo mágico" - -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -"Es un escudo liviano pero resistente, fabricado íntegramente de hielo " -"mágico." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" -msgstr[0] "coberturas de hielo resbaladizo" -msgstr[1] "coberturas de hielo resbaladizo" -msgstr[2] "coberturas de hielo resbaladizo" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" +msgstr[0] "garrote +1s" +msgstr[1] "garrotes +1s" +msgstr[2] "garrotes +1s" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" -"Es una revestimiento de hielo mágico resbaladizo que se usa en los pies. Es " -"bastante rápido para desplazarse en piso liso, pero muy difícil de usar en " -"terreno irregular." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "garrote +2s" +msgstr[1] "garrotes +2s" +msgstr[2] "garrotes +2s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" -msgstr[0] "bolsa de carne" -msgstr[1] "bolsas de carne" -msgstr[2] "bolsas de carne" - -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" -"Es una gran bolsa de carne resistente en tu espalda, llena de pequeños " -"tentáculos que agarran cualquier cosa que pongas dentro. Cambia y se ajusta " -"para minimizar la incomodidad." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" +msgstr[0] "espada larga +1s" +msgstr[1] "espadas largas +1s" +msgstr[2] "espadas largas +1s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "espadas largas +1s" +msgstr[1] "espadas largas +2s" +msgstr[2] "espadas largas +2s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "maza +1s" +msgstr[1] "mazas +1s" +msgstr[2] "mazas +1s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "maza +2s" +msgstr[1] "mazas +2s" +msgstr[2] "mazas +2s" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" -msgstr[0] "aura de ofuscamiento" -msgstr[1] "auras de ofuscamiento" -msgstr[2] "auras de ofuscamiento" - -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" -"Es una capa de magia envolvente e invisible que distorsiona la luz alrededor" -" de tu cuerpo. Te permite esquivar dos ataques extra por turno." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" -msgstr[0] "aura de resistencia al ácido" -msgstr[1] "auras de resistencia al ácido" -msgstr[2] "auras de resistencia al ácido" - -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "Es una capa envolvente e invisible que protege contra el ácido." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" -msgstr[0] "aura de gran resistencia al ácido" -msgstr[1] "auras de gran resistencia al ácido" -msgstr[2] "auras de gran resistencia al ácido" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" -msgstr[0] "armadura de escarcha" -msgstr[1] "armaduras de escarcha" -msgstr[2] "armaduras de escarcha" - -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "Es una fina capa de hielo mágico que cubre el cuerpo entero." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" -msgstr[0] "cobertura de piedra" -msgstr[1] "cobertura de piedra" -msgstr[2] "cobertura de piedra" - -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" -"Es una fina capa de una piedra que casi parece fluida, y cubre el cuerpo " -"entero." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" -msgstr[0] "quemadura de sobrecarga" -msgstr[1] "quemaduras de sobrecarga" -msgstr[2] "quemaduras de sobrecarga" - -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "Ay, ¡esto es muy elegante! Pero ya va a pasar, ¿no?" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "martillo de guerra +1s" +msgstr[1] "martillos de guerra +1s" +msgstr[2] "martillos de guerra +1s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" -msgstr[0] "aura de protección" -msgstr[1] "auras de protección" -msgstr[2] "auras de protección" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "martillo de guerra +2s" +msgstr[1] "martillos de guerra +2s" +msgstr[2] "martillos de guerra +2s" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" -"Es una capa envolvente e invisible de aura mágica que te protege del " -"ambiente." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "bate +1s" +msgstr[1] "bates +1s" +msgstr[2] "bates +1s" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "bate +2s" +msgstr[1] "bates +2s" +msgstr[2] "bates +2s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" -"Es la sangre de un dragón, emite calor y al mirarla podés ver patrones " -"formándose y despareciendo como si estuvieras mirando un fuego." - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" -"Es sangre de una criatura corrompida. La superficie de este barro negro se " -"mueve lentamente como si fuera agitado por una leve brisa." - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" -"Es sangre que ha sido llena de energía arcana. Libera un débil brillo azul." - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "maná cristalizado" -msgstr[1] "maná cristalizado" -msgstr[2] "maná cristalizado" - -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" -"Es un poco de maná cristalizado. Puede ser puesto en cristales recargables " -"de maná, pero no puede ser descargado." - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Mjölnir" -msgstr[1] "Mjölnirs" -msgstr[2] "Mjölnirs" - -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "Gungnir" -msgstr[1] "Gungnirs" -msgstr[2] "Gungnirs" - -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "Laevateinn" -msgstr[1] "Laevateinns" -msgstr[2] "Laevateinns" - -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" -msgstr[0] "conglomerado de oricalco" -msgstr[1] "conglomerados de oricalco" -msgstr[2] "conglomerados de oricalco" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" -"Es un pedazo de oricalco crudo. Necesita ser reformado en un lingote para " -"poder utilizarse." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" -msgstr[0] "pedacito de oricalco" -msgstr[1] "pedacitos de oricalco" -msgstr[2] "pedacitos de oricalco" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" -"Es un pedacito de oricalco que se rompió de un pedazo más grande. Necesita " -"ser reformado en un lingote para poder utilizarse." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" -msgstr[0] "mercurio líquido" -msgstr[1] "mercurio líquido" -msgstr[2] "mercurio líquido" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" -"Mercurio líquido elemental. Es conocido por su utilización en los " -"termómetros." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" -msgstr[0] "suero concentrado de maná" -msgstr[1] "sueros concentrados de maná" -msgstr[2] "sueros concentrados de maná" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" -"Es una poción de maná muy concentrada. No estás seguro de qué efectos " -"tendrá..." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" -msgstr[0] "Dragones Negros: Ruinas de Pantano" -msgstr[1] "copias de Dragones Negros: Ruinas de Pantano" -msgstr[2] "copias de Dragones Negros: Ruinas de Pantano" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" -"Este libro detalla los dragones negros: el más maléfico de los dragones, que" -" vive en ruinas generalmente en pantanos. Inmune al ácido y además escupe " -"ácido. El libro también detalla cómo preparar su pellejo para fabricar " -"armaduras que tengan algo de esa resistencia al ácido." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" -msgstr[0] "Guía de Principiante en Alquimia" -msgstr[1] "copias de Guía de Principiante en Alquimia" -msgstr[2] "copias de Guía de Principiante en Alquimia" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" -"Es un tomo de tapa blanda acerca del arte de la magia líquida, pero no " -"incluye alcohol." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" -msgstr[0] "Guía de Vinculación de Almas en Necromancia" -msgstr[1] "copias de Guía de Vinculación de Almas en Necromancia" -msgstr[2] "copias de Guía de Vinculación de Almas en Necromancia" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" -"Es un tomo de tapa blanda del arte de vincular las almas de los muertos " -"vivientes en muñecos, y también de emular su factor de curación." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" -msgstr[0] "Magitek Ilustrado" -msgstr[1] "copias de Magitek Ilustrado" -msgstr[2] "copias de Magitek Ilustrado" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" -"Es un tomo de tapa blanda del arte de combinar tecnología moderna con magia." -" Tiene una advertencia en la contratapa: 'Industrias Cannith no se hace " -"responsable de cualquier mal funcionamiento o accidente de cualquiera de los" -" productos aquí mencionado'." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" -msgstr[0] "Armas de Asgard y más" -msgstr[1] "copias de Armas de Asgard y más" -msgstr[2] "copias de Armas de Asgard y más" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" -"Es un libro decorado que parece estar escrito con runas nórdicas. Basándonos" -" en las detalladas ilustraciones, parece contener información acerca de la " -"fabricación de varias armas utilizadas por los dioses." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" -msgstr[0] "Cocinando con Veneno" -msgstr[1] "copias de Cocinando con Veneno" -msgstr[2] "copias de Cocinando con Veneno" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" -"Es un libro con tapas de cuero con una caldera estampada en la tapa. " -"Adentro, describe las maneras de purificar mágicamente la comida." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" -msgstr[0] "Metales Legendarios" -msgstr[1] "copias de Metales Legendarios" -msgstr[2] "copias de Metales Legendarios" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" -"Es un libro con una cubierta de latón. Dice enseñar cómo hacer metales " -"mágicos como el oricalco. Es una lectura áspera incluso para ser un libro de" -" alquimia." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" -msgstr[0] "Protección contra Bestias Mágicas" -msgstr[1] "copias de Protección contra Bestias Mágicas" -msgstr[2] "copias de Protección contra Bestias Mágicas" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" -"Es un libro con tapas de cuero con la imagen de un escudo aguantando el " -"fuego de un dragón en la tapa. Adentro, tiene muchas maneras de convertir la" -" piel y el pellejo de un monstruo en equipo de protección." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" -msgstr[0] "Pergamino para Invocar Esqueleto" -msgstr[1] "Pergaminos para Invocar Esqueletos" -msgstr[2] "Pergaminos para Invocar Esqueletos" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" +msgstr[0] "frasco sin fin" +msgstr[1] "frascos sin fin" +msgstr[2] "frascos sin fin" + +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" +"Abrís el frasco y descubrís que está lleno de un dulce, dulce ¡whisky!" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "El frasco todavía no se terminó de volver a llenar." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" +msgstr[0] "anillo de protección +2" +msgstr[1] "anillos de protección +2" +msgstr[2] "anillos de protección +2" + +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" +msgstr[0] "anillo de protección +4" +msgstr[1] "anillos de protección +4" +msgstr[2] "anillos de protección +4" + +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" +msgstr[0] "anillo de protección +6" +msgstr[1] "anillos de protección +6" +msgstr[2] "anillos de protección +6" + +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" +msgstr[0] "anillo de protección +8" +msgstr[1] "anillos de protección +8" +msgstr[2] "anillos de protección +8" + +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" +msgstr[0] "token mágico" +msgstr[1] "tokens mágicos" +msgstr[2] "tokens mágicos" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" -msgstr[0] "caldera de purificación" -msgstr[1] "calderas de purificación" -msgstr[2] "calderas de purificación" - -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" -"Esta caldera, hecha de quitina de araña demoníaca, parece absorber la luz. " -"Puede contener hasta 16 litros de material y absorberá las pociones. Puede " -"tener otras propiedades que hay que descubrir." - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -237686,14 +237962,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -237701,20 +237977,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -237722,7 +238002,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -237731,7 +238011,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -237739,7 +238019,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -237747,7 +238027,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -237755,19 +238035,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -237775,14 +238055,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -237790,7 +238070,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -237799,7 +238079,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -237807,14 +238087,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -237822,14 +238102,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -237837,14 +238117,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -237852,14 +238132,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -237867,13 +238147,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -237881,7 +238161,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -237889,7 +238169,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -237897,12 +238177,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -237910,13 +238190,94 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -237924,7 +238285,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -237935,7 +238296,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -237943,17 +238304,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -237961,7 +238322,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -237971,7 +238332,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -237979,7 +238340,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -237988,7 +238349,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -237996,13 +238357,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -238010,16 +238371,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -238027,19 +238389,19 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -238047,7 +238409,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -238056,19 +238418,19 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -238076,7 +238438,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -238085,7 +238447,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -238093,14 +238455,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -238108,13 +238470,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -238122,13 +238484,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -238136,13 +238498,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -238150,144 +238512,192 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "Sanador" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -238295,222 +238705,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "Mata 150 Zombis" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "dulce" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "tecnólogo" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "sanador" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -238518,48 +238928,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -238567,12 +238977,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -238580,12 +238990,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "Druida" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -238593,103 +239003,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -238698,204 +239108,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "Regeneración de Maná" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "Tu regeneración de maná natural es más rápida de lo normal." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -238903,24 +239313,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "núcleo de energía de maná" @@ -238928,48 +239338,68 @@ msgstr[1] "núcleos de energía de maná" msgstr[2] "núcleos de energía de maná" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "Si ves esto es un bug." -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "Pantano" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Instalación Manual de Biónico" @@ -245913,6 +246343,10 @@ msgstr "Activar/Desactivar Examinar" msgid "Toggle safe fuel mod" msgstr "Alternar modo de combustible seguro" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "Alternar modo de inicio automático" @@ -246105,10 +246539,6 @@ msgstr "Soltar objeto al lado" msgid "View/Activate Bionics" msgstr "Ver/Activar Biónicos" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Ver/Activar Mutaciones" @@ -252287,6 +252717,7 @@ msgstr "BIÓNICOS" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -252355,6 +252786,10 @@ msgstr "ENCENDIDO" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -253212,6 +253647,10 @@ msgstr "%s no tiene una mano libre como para ponerse eso." msgid "Can't wear more than one %s!" msgstr "¡No se puede usar más de un/a %s!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -269250,7 +269689,12 @@ msgid "Test which group?" msgstr "¿Qué grupo querés probar?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -275332,7 +275776,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -280581,10 +281031,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "¡%1$s arroja al suelo al %2$s!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -284845,7 +285296,7 @@ msgstr "Predeterminados de Mundo" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -292833,6 +293284,11 @@ msgstr "La sembradora del %s se apaga debido a la baja temperatura." msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -292974,6 +293430,16 @@ msgstr "El motor del %s emite un sonido como si estornudara." msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -293571,11 +294037,6 @@ msgstr "Guardás meticulosamente el/a %s en su forma portátil." msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "%s plegado" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/es_ES.po b/lang/po/es_ES.po index 9df545668d77..5ea0f07a774d 100644 --- a/lang/po/es_ES.po +++ b/lang/po/es_ES.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Spanish (Spain) (https://app.transifex.com/bn-team/teams/113585/es_ES/)\n" "MIME-Version: 1.0\n" @@ -8687,6 +8687,17 @@ msgstr "" msgid "You can see through everything!" msgstr "¡Puedes ver a través de todas las cosas!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "Toma Xanax" @@ -12145,7 +12156,7 @@ msgstr "Encender" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "Apagar" @@ -12593,75 +12604,91 @@ msgstr "CARGADORES" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "MUNICIÓN" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "ARMAS" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "HERRAMIENTAS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "OTRAS HERRAMIENTAS" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "UTENSILIOS DE COCINA" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "ELECTRONICOS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "ROPA" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "COMIDA" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "INGREDIENTES CULINARIOS" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "FÁRMACOS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "LIBROS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "MAPAS" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MODIFICACIONES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "MUTÁGENOS" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "BIÓNICOS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "PARTES DE VEHÍCULOS" @@ -12675,51 +12702,89 @@ msgstr "PARTES DE VEHÍCULOS" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "OTROS" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "COMBUSTIBLE" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "SEMILLAS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "COSAS QUÍMICAS" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "BATERÍAS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "REPUESTOS" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "CHATARRA METÁLICA" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "CHATARRA ELECTRÓNICA" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "TELAS" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "OBJETOS DE VALOR" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "ROCAS" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "RECIPIENTES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "ARTEFACTOS" +#: data/json/item_category.json +msgid "MAPS" +msgstr "MAPAS" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "OBJETOS PUESTOS" @@ -13464,12 +13529,12 @@ msgstr "" msgid "Destination for corpses" msgstr "Lugar para los cadáveres" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "Botín: Mapas" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "Lugar para los mapas." @@ -13513,6 +13578,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "Botín: Objetos de valor" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "Lugar para los objetos de valor." + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "No Auto-recogida" @@ -13991,7 +14227,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Eskrima" @@ -14029,7 +14265,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Esgrima" @@ -14066,7 +14302,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -14240,7 +14476,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Krav Maga" @@ -14362,7 +14598,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "Manejo de Espada Medieval" @@ -14437,7 +14673,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Ninjutsu" @@ -14619,7 +14855,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Silat" @@ -15811,7 +16047,7 @@ msgid "Resin" msgstr "Resina" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "golpeado/a" @@ -15820,22 +16056,22 @@ msgid "gouged" msgstr "agujereado/a" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "raído/a" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "cortado/a" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "quebrado/a" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "destrozado/a" @@ -15848,7 +16084,7 @@ msgid "bent" msgstr "doblado/a" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "reventado/a" @@ -15860,7 +16096,7 @@ msgstr "destruido" msgid "Biosilicified Chitin" msgstr "Quitina Biosilicificada" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "desportillado/a" @@ -15873,7 +16109,7 @@ msgid "Brass" msgstr "Latón" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "arañado/a" @@ -15891,7 +16127,7 @@ msgstr "Cartón" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "desgarrado/a" @@ -15900,12 +16136,12 @@ msgid "torn" msgstr "despedazado/a" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "triturado/a" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "deshilachado/a" @@ -15965,7 +16201,7 @@ msgstr "Carne" msgid "bruised" msgstr "magullado/a" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "loncheado/a" @@ -16392,7 +16628,7 @@ msgstr "automático" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -21310,12 +21546,12 @@ msgstr "" "Ahora en lugar de quejarse por tus honorarios, tus clientes intentan comerte" " el cerebro. Pero no sabes cuál de las dos cosas es peor." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Cura" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Diaconisa" @@ -21348,18 +21584,18 @@ msgstr "" " Ahora que están todos muertos, deberías encontrar algo más tangible para " "protegerte." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Kannushi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Kannushi" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -21371,7 +21607,7 @@ msgstr "" "habitaban tu templo, y no sus cuerpos putrefactos." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -21382,12 +21618,12 @@ msgstr "" " sagradas. Te gustaba más cuando solamente los espíritus de los muertos " "habitaban tu templo, y no sus cuerpos putrefactos." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "Imán" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "Mourchida" @@ -21420,18 +21656,18 @@ msgstr "" "oración. Antes venían de todas partes para escucharte, ahora vienen para " "comerte el cerebro." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "Rabino" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "Rabina" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -21441,7 +21677,7 @@ msgstr "" "Cataclismo. ¡Ahora te vendría bien un Mesías!" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -21450,12 +21686,12 @@ msgstr "" "Estabas celebrando con tus feligreses en el templo cuando llegó el " "Cataclismo. ¡Ahora te vendría bien un Mesías!" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "Gurú" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "Gurú" @@ -21484,12 +21720,12 @@ msgstr "" " Comúnmente, podrías responder cualquier pregunta, pero ni siquiera estás " "segura de lo que se podría hacer con los voraces muertos vivientes." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "Pastor" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "Pastora" @@ -22372,15 +22608,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "Skater" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "Skater" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -22390,7 +22626,7 @@ msgstr "" "¡Te encanta el skate! Por lo menos ahora los adultos no te van a andar " "diciendo por dónde no puedes andar." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -22400,6 +22636,34 @@ msgstr "" "¡Te encanta el skate! Por lo menos ahora los adultos no te van a andar " "diciendo por dónde no puedes andar." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -29994,7 +30258,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "aguja curva" @@ -30112,7 +30375,6 @@ msgstr "Extraer bala" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "yunque" @@ -30180,7 +30442,6 @@ msgstr[1] "nada" msgstr[2] "nada" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "plástico de burbuja" @@ -30202,7 +30463,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "catre" @@ -30211,7 +30471,6 @@ msgstr[2] "catres" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "embudo" @@ -30220,7 +30479,6 @@ msgstr[2] "embudos" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "embudo improvisado" @@ -30240,8 +30498,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "trampa para oso" @@ -30275,7 +30532,6 @@ msgid "tripwire" msgstr "cuerda de trampa" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -30283,7 +30539,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "trampa de ballesta" @@ -30328,7 +30583,6 @@ msgid "Swinnng!" msgstr "¡Swinnng!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "mina" @@ -30347,7 +30601,6 @@ msgid "buried land mine" msgstr "mina enterrada" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "plataforma de teletransportación" @@ -30393,7 +30646,6 @@ msgid "ledge" msgstr "plataforma" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "trampa bomba" @@ -30406,7 +30658,6 @@ msgstr "pozo con cristales" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "embudo de cuero" @@ -30415,7 +30666,6 @@ msgstr[2] "embudos de cuero" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -30428,7 +30678,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "embudo de metal" @@ -30794,7 +31043,8 @@ msgstr "" msgid "Thunder Storm" msgstr "Lluvia con truenos" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Lluvia con rayos" @@ -30837,6 +31087,20 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -30916,7 +31180,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "¡chirrido de metal!" @@ -30946,7 +31211,8 @@ msgstr "¡chirrido de metal!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "¡clang!" @@ -31294,7 +31560,6 @@ msgstr "Podrías lavar tu ropa sucia si hubiera electricidad." #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -31405,8 +31670,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "¡whack!" @@ -31660,7 +31926,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "¡crunch!" @@ -31688,7 +31954,7 @@ msgstr "¡crunch!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "whump." @@ -31816,7 +32082,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -31877,7 +32142,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -32204,7 +32468,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "¡cristal rompiéndose!" @@ -32291,7 +32555,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -32318,7 +32582,7 @@ msgstr "¡smash!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "¡whump!" @@ -32489,7 +32753,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "tomp." @@ -32826,7 +33090,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "¡crash!" @@ -32843,7 +33107,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "brasero" @@ -32857,7 +33120,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "cocina de vagabundo" @@ -32873,7 +33135,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -32899,7 +33160,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "barril de fuego (100L)" @@ -33056,7 +33316,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "girasol" @@ -33945,7 +34204,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "purificador de agua" @@ -34369,7 +34627,6 @@ msgstr "taburete" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -34516,7 +34773,6 @@ msgstr "whack." #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -34542,7 +34798,6 @@ msgstr "¡rrrrip!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -35105,9 +35360,21 @@ msgstr "" "Es una mesa de trabajo resistente, hecha de metal. Es perfecta para fabricar" " cosas grandes y pesadas." +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "lona de cuero" @@ -35145,7 +35412,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "alfombra de fibra" @@ -35165,7 +35431,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "mesa de turista" @@ -35683,7 +35948,6 @@ msgstr "Se utiliza para trabajar el metal." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "destilador" @@ -35701,7 +35965,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "carbonera" @@ -35720,7 +35983,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "carbonera llena" @@ -35795,7 +36057,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -35836,7 +36097,6 @@ msgstr "Un horno fabricado para cocer ladrillos y hacer alfarería." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "escalera de mano" @@ -37486,7 +37746,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "tomp" @@ -37911,7 +38171,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "arena" @@ -38186,7 +38445,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "cemento" @@ -39994,7 +40252,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -40651,7 +40908,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "vía pequeña" @@ -41786,7 +42042,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "piedra sólida" @@ -42782,7 +43037,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "tapa de la alcantarilla" @@ -42960,6 +43214,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -43031,7 +43321,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SI ESTAS VIENDO ESTO, ES UN BUG." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "hilo" @@ -43046,7 +43335,6 @@ msgstr "" "costura." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "tendón" @@ -43059,7 +43347,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Un tendón duro cortado de un cadáver, puede ser usado como hilo." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "fibra vegetal" @@ -43074,7 +43361,6 @@ msgstr "" "como hilo." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "hilo de lana" @@ -43099,7 +43385,6 @@ msgid "A cleansing agent made into bars." msgstr "Es un agente limpiador hecho pastillas." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "cinta adhesiva" @@ -43114,7 +43399,6 @@ msgstr "" "cosas." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "papel de liar" @@ -43127,7 +43411,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Son tiras de papel fino para liarse unos cigarrillos." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "cable de cobre" @@ -43187,7 +43470,6 @@ msgstr[1] "pulpa acuosa de plutonio" msgstr[2] "pulpa acuosa de plutonio" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "piedra" @@ -43468,7 +43750,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "Es un pedazo de goma que puede ser útil, se moldea fácilmente." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "cobre" @@ -43523,7 +43804,6 @@ msgstr "" "del agua y del aire." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "premezcla de carburo de calcio" @@ -43785,7 +44065,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Mezcla de oxígeno y nitrógeno en proporciones adecuadas para bucear." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "yesca" @@ -43823,7 +44102,6 @@ msgid "A metal die used to play various role-playing games" msgstr "Un dado de metal usado para jugar a varios juegos de rol." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "bronce" @@ -44168,7 +44446,6 @@ msgstr "proyectil ferroso de riel" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "UPS" @@ -46655,7 +46932,6 @@ msgstr "" "blanqueadores de papel." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "pedazo de azufre" @@ -46670,7 +46946,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "cemento" @@ -46689,7 +46964,6 @@ msgstr "" "Solo hay que agregarle agua." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "caliza" @@ -46705,7 +46979,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "cal" @@ -46735,7 +47008,6 @@ msgstr "" "transformarla en vidrio. Si no, solo sirve para hacer cemento." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "tierra" @@ -46768,7 +47040,6 @@ msgstr "" "sus propiedades alcalinas pueden tener alguna utilidad." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "sal de roca" @@ -46783,7 +47054,6 @@ msgstr "" "de mesa." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "rodonita" @@ -46800,7 +47070,6 @@ msgstr "" "tiene adentro, que puede ser obtenido con un cincel." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "zincita" @@ -47275,7 +47544,6 @@ msgstr "" "propulsores de misiles, como el combustible de caramelo." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "nitro" @@ -47292,7 +47560,6 @@ msgstr "" "ser procesado en salitre." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -47750,7 +48017,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "rejilla de acero" @@ -47807,7 +48073,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "Es un pequeño perdigón de material fisible. Manejar con cuidado." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "cuenta de madera" @@ -49715,7 +49980,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -49729,7 +49993,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -49891,7 +50154,6 @@ msgstr "" "hojas para acostarse." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "pelaje" @@ -49906,7 +50168,6 @@ msgstr "" "abrigada." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "pelaje artificial" @@ -49921,7 +50182,6 @@ msgstr "" "hacerse ropa." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "pedazo de cuero" @@ -49936,7 +50196,6 @@ msgstr "" "resistente." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "pedazo de fieltro" @@ -49951,7 +50210,6 @@ msgstr "" " fibra de lana." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "pedazo de Nomex" @@ -49964,7 +50222,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "Un pequeño rollo de nomex, que es una tela ignífuga." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "superpegamento" @@ -49977,7 +50234,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Un tubo de pegamento potente. Se usa para fabricar muchas cosas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "pegamento de hueso" @@ -50017,7 +50273,6 @@ msgid "A token, representing fertilization of a plant." msgstr "Un símbolo, representando la fertilización de una planta." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "cadena de acero" @@ -50034,7 +50289,6 @@ msgstr "" "Puede enroscarse en el enemigo, lo que te permite un ataque desarmado extra." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "pedazo de quitina" @@ -50047,7 +50301,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "Un pedazo del exoesqueleto de un insecto. Es liviano y muy duradero." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -50082,7 +50335,6 @@ msgstr "" "grado alto. Te hace pensar en escamas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "pedazo de quitina biosilicificada" @@ -50100,7 +50352,6 @@ msgstr "" "ácido y sorprendentemente duro." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "paquete de trapos" @@ -50115,7 +50366,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "paquete de cueros" @@ -50133,7 +50383,6 @@ msgstr "" "desarmar para abrirlo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "paquete de fieltros" @@ -50229,7 +50478,6 @@ msgstr "" "de fósil." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "pendrive" @@ -50242,7 +50490,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "Es un pendrive con puerto USB. Útil para almacenar software." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "tarjeta de información" @@ -50259,7 +50506,6 @@ msgstr "" "Útil para guardar grandes cantidades de información." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -50275,7 +50521,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "candelabro" @@ -50337,7 +50582,6 @@ msgstr "" "idea." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "grifo para árbol" @@ -50356,7 +50600,6 @@ msgstr "" "invierno y comienzos de primavera para cosechar savia de arce." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "alambre" @@ -50373,7 +50616,6 @@ msgstr "" " usa en los alambrados." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "alambre de púas" @@ -50386,7 +50628,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "Un pedazo de alambre rígido, cubierto con púas puntiagudas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "malla de acero" @@ -50406,7 +50647,6 @@ msgstr "" "utiliza una tela metálica común para eso." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "varilla corrugada" @@ -50475,7 +50715,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "Es una bengala de magnesio usada. Prácticamente, basura." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "muelle" @@ -50538,7 +50777,6 @@ msgstr "" "espacio. Esta tienda de campaña está rota y no puede ser montada." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "resistencia térmica" @@ -50553,7 +50791,6 @@ msgstr "" "placa térmicas eléctricas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "termostato bimetálico" @@ -50569,7 +50806,6 @@ msgstr "" "bimetálica." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "televisor" @@ -50582,7 +50818,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "Es un televisor LCD grande , lleno de deliciosas piezas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "piloto" @@ -50631,7 +50866,6 @@ msgstr "" "explosivos estables luego de un impacto sólido." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "tostadora" @@ -50646,7 +50880,6 @@ msgstr "" "repuestos eléctricos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "microondas" @@ -50663,7 +50896,6 @@ msgstr "" "usar sus partes." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "ordenador portátil" @@ -50675,9 +50907,7 @@ msgstr[2] "ordenadores portátiles" msgid "A broken laptop, basically a paperweight now." msgstr "Un portátil roto, ahora es prácticamente un pisapapeles." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "ojobot roto" @@ -50694,9 +50924,7 @@ msgstr "" "Un ojobot roto. Ahora ya no es tan amenazador porque no puede llamar " "refuerzos. Puede ser destripado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "arañabot roto" @@ -50713,7 +50941,6 @@ msgstr "" "suelo con las patas flojas. Puede ser destripado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "robot defensor de laboratorio roto" @@ -50730,7 +50957,6 @@ msgstr "" " Puede ser desarmado para recuperar partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "policíabot roto" @@ -50747,7 +50973,6 @@ msgstr "" "quieto. Puede ser destripado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "enfermerobot roto" @@ -50764,7 +50989,6 @@ msgstr "" "Puede ser desarmado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "reposibot roto" @@ -50790,7 +51014,6 @@ msgstr "" "Puede ser desarmado para recuperar partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -50805,7 +51028,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "antidisturbot roto" @@ -50822,7 +51044,6 @@ msgstr "" "combustible. Puede ser destripado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "robot prototipo roto" @@ -50838,9 +51059,7 @@ msgstr "" "Es un robot prototipo roto, bastante más roto que antes. Puede ser desarmado" " para recuperar partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "minerobot roto" @@ -50858,7 +51077,6 @@ msgstr "" "nada. Puede ser destripado para recuperar las partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "mecha de reconocimiento roto" @@ -50874,7 +51092,6 @@ msgstr "" "Es un mecha, un traje exoesqueleto, roto. Parece que ya no podrá repararse." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "mecha de levantamiento roto" @@ -50882,7 +51099,6 @@ msgstr[1] "mechas de levantamiento rotos" msgstr[2] "mechas de levantamiento rotos" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "mecha de combate roto" @@ -50890,7 +51106,6 @@ msgstr[1] "mechas de combate rotos" msgstr[2] "mechas de combate rotos" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "desplegador de disturbios roto" @@ -50909,7 +51124,6 @@ msgstr "" "partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "desplegador militar roto" @@ -50928,9 +51142,7 @@ msgstr "" "manhacks desarmados en su interior, su potencial destructivo todavía causa " "un poco de miedo, incluso ahora. Puede ser desarmado para recuperar partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "manhack roto" @@ -50948,9 +51160,7 @@ msgstr "" "Un manhack roto. Ahora ya no es tan amenazador porque está todo flojito " "tirado en el suelo. Puede ser destripado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "grana-hack roto" @@ -50967,9 +51177,7 @@ msgstr "" "Un grana-hack roto. Ahora que está tirado quieto en el suelo no es tan " "amenazante. Puede ser destripado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "minibom-hack roto" @@ -50986,9 +51194,7 @@ msgstr "" "Un minibomba-hack magenta roto. Solamente al mirar los pedazos ya te hace " "temblar. Puede ser destripado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "lacrimo-hack roto" @@ -51005,9 +51211,7 @@ msgstr "" "Un lacrimo-hack roto. Ahora que está tirado quieto en el suelo no es tan " "amenazante. Puede ser destripado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "PEM-hack roto" @@ -51024,9 +51228,7 @@ msgstr "" "Un PEM-hack roto. Ahora que está tirado quieto en el suelo no es tan " "amenazante. Puede ser destripado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "destello-hack roto" @@ -51043,9 +51245,7 @@ msgstr "" "Un destello-hack roto. Ahora que está tirado quieto en el suelo no es tan " "amenazante. Puede ser destripado para recuperar las partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "C4-hack roto" @@ -51092,7 +51292,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "procesador" @@ -51107,7 +51306,6 @@ msgstr "" "avanzadas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "RAM" @@ -51121,7 +51319,6 @@ msgstr "" "Es un módulo de memoria. Útil para fabricar cosas electrónicas avanzadas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "transformador" @@ -51135,7 +51332,6 @@ msgstr "" "Una unidad de alimentación. Útil para fabricar muchas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "circuito amplificador" @@ -51152,7 +51348,6 @@ msgstr "" "fabricar muchas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "transpondedor" @@ -51169,7 +51364,6 @@ msgstr "" "comunicación." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "receptor de señal" @@ -51186,7 +51380,6 @@ msgstr "" " equipos de comunicación." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "pantalla LCD grande" @@ -51203,7 +51396,6 @@ msgstr "" "fabricar algunas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "pantalla LCD pequeña" @@ -51220,7 +51412,6 @@ msgstr "" "para fabricar algunas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "lente de alta calidad" @@ -51238,7 +51429,6 @@ msgstr "" "útil para encender un fuego." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "lente pequeño de alta calidad" @@ -51256,7 +51446,6 @@ msgstr "" "Puede usarse para fabricar otras cosas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "par de anteojos polarizados" @@ -51273,7 +51462,6 @@ msgstr "" " sol." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "biónico fundido" @@ -51332,7 +51520,6 @@ msgstr "" "elegante y de última tecnología." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "antena" @@ -51347,7 +51534,6 @@ msgstr "" "electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "micro motor" @@ -51364,7 +51550,6 @@ msgstr "" "control remoto. Útil para fabricar muchas cosas electrónicas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "placa de circuitos" @@ -51381,7 +51566,6 @@ msgstr "" "electrónicos en un sustrato no conductivo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "chatarra electrónica" @@ -51413,7 +51597,6 @@ msgstr "" "autónomo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "ventilador de escritorio" @@ -51426,7 +51609,6 @@ msgid "A small fan, used to propel air around a room." msgstr "Un ventilador pequeño, usado para tirar aire por toda la habitación." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "placa cerámica de armadura" @@ -51459,7 +51641,6 @@ msgstr "" "'Hoss'. El pez parece tener antenitas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "trapo" @@ -51497,7 +51678,6 @@ msgstr "" "Un trapo grande empapado con sangre. Se puede limpiar con agua hirviendo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "destapacañerías" @@ -51516,7 +51696,6 @@ msgstr "" " mugre de los cañones de las armas de fuego." #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "reloj" @@ -51542,7 +51721,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "Un pequeño surtido de engranajes y otros cacharros de relojería." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "tarjeta de memoria SD" @@ -51555,7 +51733,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "Una tarjeta de memoria usada. Vale la pena mirar qué tiene." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "tarjeta de memoria SD (vacía)" @@ -51573,7 +51750,6 @@ msgstr "" "usarla para guardar tu información." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "tarjeta de memoria SD (encriptada)" @@ -51591,7 +51767,6 @@ msgstr "" "contener algo importante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "tarjeta de memoria SD científica" @@ -51629,7 +51804,6 @@ msgstr "" " cloacas. No se puede abrir la alcantarilla sin una palanqueta." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "rama de pino" @@ -51646,7 +51820,6 @@ msgstr "" "puntiagudas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "piña" @@ -51688,7 +51861,6 @@ msgstr "" "que todavía no han sido comidas por animales." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "flores de manzanilla" @@ -51704,7 +51876,6 @@ msgstr "" "hierba medicinal." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "flor de loto" @@ -51712,7 +51883,6 @@ msgstr[1] "flores de loto" msgstr[2] "flores de loto" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "flor de euforbio" @@ -51729,7 +51899,6 @@ msgstr "" "que previene ataques de asma." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "masa de arcilla" @@ -51742,7 +51911,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "Una masa de arcilla fresca. Útil para fabricar algunas cosas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "ladrillo" @@ -51756,7 +51924,6 @@ msgstr "" "Un bloque de construcción endurecido al fuego, utilizado en albañilería." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "mortero" @@ -51769,7 +51936,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Es un poco de mortero, listo para ser usado en alguna construcción." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "ladrillo blando de adobe" @@ -51794,7 +51960,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "ladrillo de adobe" @@ -51811,7 +51976,6 @@ msgstr "" " y ser un ladrillo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "mezcla de adobe" @@ -51829,7 +51993,6 @@ msgstr "" " pesados." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "casca" @@ -51842,7 +52005,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "corteza de abedul" @@ -51856,7 +52018,6 @@ msgstr "" "Es un pedazo de corteza dura y resistente al agua, sacada de un abedul." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "cortezas de sauce" @@ -51873,7 +52034,6 @@ msgstr "" "aspirinas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "diamante" @@ -51886,7 +52046,6 @@ msgid "A sparkling diamond." msgstr "Un diamante brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "granate" @@ -51899,7 +52058,6 @@ msgid "A sparkling garnet." msgstr "Es un granate brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "amatista" @@ -51912,7 +52070,6 @@ msgid "A sparkling amethyst." msgstr "Es una amatista brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "aguamarina" @@ -51925,7 +52082,6 @@ msgid "A sparkling aquamarine." msgstr "Es una aguamarina brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "esmeralda" @@ -51938,7 +52094,6 @@ msgid "A sparkling emerald." msgstr "Es una esmeralda brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "alejandrita" @@ -51951,7 +52106,6 @@ msgid "A sparkling alexandrite." msgstr "Es una alejandrita brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "perla" @@ -51964,7 +52118,6 @@ msgid "A lustrous pearl." msgstr "Es una perla lustrosa." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "rubí" @@ -51977,7 +52130,6 @@ msgid "A sparkling ruby." msgstr "Es un rubí brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "peridoto" @@ -51990,7 +52142,6 @@ msgid "A sparkling peridot." msgstr "Es un peridoto brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "zafiro" @@ -52003,7 +52154,6 @@ msgid "A sparkling sapphire." msgstr "Es un zafiro brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "ópalo" @@ -52016,7 +52166,6 @@ msgid "A lustrous opal." msgstr "Es un ópalo lustroso." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "turmalina" @@ -52029,7 +52178,6 @@ msgid "A sparkling tourmaline." msgstr "Es una turmalina brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "citrino" @@ -52042,7 +52190,6 @@ msgid "A sparkling citrine." msgstr "Es un citrino brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "topacio" @@ -52055,7 +52202,6 @@ msgid "A sparkling blue topaz." msgstr "Es un topacio azul brillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "pellejo curado" @@ -52071,7 +52217,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "pelaje curado" @@ -52115,7 +52260,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "Una muñeca vieja de paja. Representa una mujer con un vestido." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "almohada" @@ -52128,7 +52272,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Es una almohada para descansar tu cabeza cuando duermes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "almohada de cuerpo" @@ -52146,7 +52289,6 @@ msgstr "" "atrás." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "almohada de plumón" @@ -52159,7 +52301,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "Es una almohada acolchada para descansar tu cabeza cuando duermes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "osito de peluche" @@ -52182,7 +52323,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "fajo de billetes" @@ -52241,7 +52381,7 @@ msgstr[2] "cigarros" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "Extinguir" @@ -52377,7 +52517,6 @@ msgstr "" " secadas para volverse fumables." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "tarjeta de crédito" @@ -52410,7 +52549,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "tarjeta de descuento plateada" @@ -52423,7 +52561,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Esta tarjeta te hace un pequeño descuento cuando compras combustible." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "tarjeta de descuento dorada" @@ -52436,7 +52573,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Esta tarjeta te hace un buen descuento cuando compras combustible." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "tarjeta de descuento platinada" @@ -52450,7 +52586,6 @@ msgstr "" "Esta tarjeta te hace un espléndido descuento cuando compras combustible." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "carné de científico" @@ -52469,7 +52604,6 @@ msgstr "" "acceso a un panel de control, si lo encuentras." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "carné de militar" @@ -52488,7 +52622,6 @@ msgstr "" "acceso a un panel de control, si lo encuentras." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "carné de industrial" @@ -52507,7 +52640,6 @@ msgstr "" "acceder a un panel de control, si encontrás alguno." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "fragmento de neopreno" @@ -52569,7 +52701,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "bombilla" @@ -52596,7 +52727,6 @@ msgid "A twisted shard of jagged metal." msgstr "Es un pedazo de metal retorcido y con puntas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "maceta de arcilla" @@ -52609,7 +52739,6 @@ msgid "A nice looking clay pot used for planting." msgstr "Es una linda maceta de arcilla en la que se puede plantar algo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "maceta de plástico" @@ -52773,7 +52902,6 @@ msgstr "" "soldadura." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "cabezal de amplificador" @@ -52790,9 +52918,7 @@ msgstr "" "amplificar instrumentos musicales. Básicamente, ahora solo sirve para " "recuperar sus partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "torreta rota" @@ -52808,9 +52934,7 @@ msgstr "" "Es una torreta rota. Mucho menos amenazante ahora que está ahí tirada en el " "piso. Puede ser desarmada para recuperar partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "torreta antidisturbios rota" @@ -52826,9 +52950,8 @@ msgstr "" "Es una torreta antidisturbios pero rota. Mucho menos amenazante ahora que " "está ahí tirada en el piso. Puede ser desarmada para recuperar partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "torreta láser rota" @@ -52836,7 +52959,6 @@ msgstr[1] "torretas láseres rotas" msgstr[2] "torretas láseres rotas" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "secubot roto" @@ -52853,7 +52975,6 @@ msgstr "" "para recuperar partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "M202A1 TALON roto" @@ -52872,7 +52993,6 @@ msgstr "" "para recuperar partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "ladrillo refractario" @@ -52943,7 +53063,6 @@ msgstr "" "asqueroso." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -52951,7 +53070,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -52959,7 +53077,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -53170,7 +53287,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -53345,7 +53461,6 @@ msgstr "" "bug." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "módulo de objetivo" @@ -53363,7 +53478,6 @@ msgstr "" "precisa." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "módulo de identificación" @@ -53380,7 +53494,6 @@ msgstr "" "imagen para identificar amigos y enemigos." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "módulo de reconocimiento" @@ -53397,7 +53510,6 @@ msgstr "" "vectores para encontrar el mejor camino disponible." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "módulo de memoria" @@ -53410,7 +53522,6 @@ msgid "Allows for storage and recovery of information." msgstr "Este módulo permite almacenar y recuperar información." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "matriz de sensores" @@ -53427,7 +53538,6 @@ msgstr "" "percibir el mundo circundante." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "sensores de automonitoreo" @@ -53444,7 +53554,6 @@ msgstr "" "percibir a sí mismo." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "núcleo de IA" @@ -53461,7 +53570,6 @@ msgstr "" " IA del robot." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "núcleo básico de IA" @@ -53474,7 +53582,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "Es un núcleo muy básico de IA con las mínimas habilidades cognitivas." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "núcleo avanzado de IA" @@ -53488,7 +53595,6 @@ msgstr "" "Es un núcleo avanzado de IA con impresionantes habilidades cognitivas." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "sistema de operación de armas" @@ -54014,7 +54120,6 @@ msgstr[1] "software" msgstr[2] "software" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "software variado" @@ -54027,7 +54132,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Software variado para pasar el tiempo. Probablemente sea inútil." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "hackPRO" @@ -54040,7 +54144,6 @@ msgid "A piece of hacking software." msgstr "Software de hackeo." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "MediSoft" @@ -54053,7 +54156,6 @@ msgid "A piece of medical software." msgstr "Software sobre medicina" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MatheMAX" @@ -54066,7 +54168,6 @@ msgid "A piece of mathematical software." msgstr "Software sobre matemáticas." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "información de infección" @@ -54079,7 +54180,6 @@ msgid "Medical data on zombie blood." msgstr "Información médica de sangre de zombi." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "dato de laboratorio" @@ -54092,7 +54192,6 @@ msgid "Research archives from a government laboratory." msgstr "Son archivos de investigación de un laboratorio gubernamental." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "información ferroviaria" @@ -54106,7 +54205,6 @@ msgstr "" "Es información de la logística de las rutas y horarios del subterráneo." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "información neural" @@ -54125,7 +54223,6 @@ msgstr "" "Cualquiera sea el caso, la idea de mantener perpetuamente una parte tuya dentro de una cápsula metálica te hace sentir incómodo." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "software variado" @@ -54869,7 +54966,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Cerrar cubierta" @@ -54903,7 +55000,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Abrir cubierta" @@ -59234,7 +59331,6 @@ msgstr "" "clavos o algún arma similar, o se puede usar para hacer munición." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "clavo" @@ -59942,7 +60038,8 @@ msgstr "" "flexibilidad, y un poco más de peso. Tiene cuatro bolsas para llevar " "cargadores." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "aljaba" @@ -59958,7 +60055,8 @@ msgstr "" "Es una aljaba de cuero que se usa en la cintura y puede almacenar hasta 20 " "flechas. Hay que activarla para guardar flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "aljaba de abedul" @@ -59975,7 +60073,8 @@ msgstr "" "cintura y puede almacenar hasta 20 flechas. Hay que usarla para guardar " "flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "aljaba grande" @@ -59994,7 +60093,8 @@ msgstr "" "caballo, más que por los que iban a pie, pero ninguno de ELLOS tuvo que " "pelearse contra zombis. Hay que activarlo para guardar flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "aljaba grande de abedul" @@ -60584,7 +60684,7 @@ msgstr[2] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Enfundas tu %s." @@ -60873,7 +60973,7 @@ msgstr[2] "cinturones de cuero" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "Metes tu %s en tu %s." @@ -60883,14 +60983,14 @@ msgstr "Metes tu %s en tu %s." #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "Qué es lo que quieres meter en el cinturón?" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "Cinturón de cuero. Útil para ajustar los pantalones." @@ -63947,7 +64047,7 @@ msgstr[2] "pares de guantes de supervivencia" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -73288,7 +73388,7 @@ msgstr[2] "mochilas de excursión" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "Enfundar cuchilla" @@ -82945,8 +83045,8 @@ msgstr[2] "lanzadores básico" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "único" @@ -83094,7 +83194,7 @@ msgstr[2] "escopetas básicas" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -83115,7 +83215,7 @@ msgstr[1] "escopetas de acción de bombeo" msgstr[2] "escopetas de acción de bombeo" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "chak chak." @@ -85237,8 +85337,7 @@ msgstr "" " se la prepara bien." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "sangre" @@ -85247,7 +85346,6 @@ msgstr[2] "sangre" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Sangre, probablemente de un humano. ¡Desagradable!" @@ -85484,8 +85582,7 @@ msgstr "" "muchas comidas y proyectos." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "sangre contaminada" @@ -98218,6 +98315,21 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -102921,7 +103033,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -102936,7 +103047,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -102984,7 +103094,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -103020,7 +103129,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -103035,7 +103143,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -103708,7 +103815,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "plato cerámico" @@ -103721,7 +103827,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "tazón de cerámica" @@ -103734,7 +103839,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "taza de cerámica" @@ -103747,7 +103851,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -103829,7 +103932,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "plato de hojalata" @@ -103842,7 +103944,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "taza de lata" @@ -103859,7 +103960,6 @@ msgstr "" "hace un sonido maravilloso cuando golpea las rejas." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "cuenco de peltre" @@ -103872,7 +103972,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "vaso" @@ -103885,7 +103984,6 @@ msgid "A tall drinking glass." msgstr "Un vaso alto." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -103900,7 +103998,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "tazón de cristal" @@ -103941,7 +104038,6 @@ msgstr "" "ml de líquido." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -103985,7 +104081,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -104028,7 +104123,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "olla" @@ -104041,7 +104135,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "Útil para hervir agua cuando se cocinan espaghetis y otras cosas." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -104055,7 +104148,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "olla de cobre" @@ -104073,7 +104165,6 @@ msgstr "" "en las comidas." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -104088,7 +104179,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -104103,7 +104193,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "olla de conservería" @@ -104126,7 +104215,6 @@ msgstr "" "que llenarla con piedras o algo para que el agua sobrepase los frascos." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "sartén de hierro fundido" @@ -104142,7 +104230,6 @@ msgstr "" "para cocinar." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "sartén de acero" @@ -104158,7 +104245,6 @@ msgstr "" "cocinar." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "sartén de cobre" @@ -104175,7 +104261,6 @@ msgstr "" "cuerpo a cuerpo decente y se usa para cocinar." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "olla improvisada" @@ -104193,7 +104278,6 @@ msgstr "" "utensilio adecuado." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "olla improvisada de cobre" @@ -104211,7 +104295,6 @@ msgstr "" "utensilio adecuado." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -104581,7 +104664,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "cuerda corta" @@ -104594,7 +104676,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "Es un pedazo de cuerda de algodón de 15 centímetros." #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "cuerda larga" @@ -106070,7 +106151,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "doble" @@ -109520,7 +109601,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "bajocañón" @@ -109885,7 +109966,7 @@ msgstr "" "aumenta el ruido y reduce un poco la precisión." #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "bocacha" @@ -110093,7 +110174,7 @@ msgstr "" " al cañón de un arma de fuego larga. Permite disparar pernos de ballesta." #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "riel" @@ -110234,7 +110315,7 @@ msgstr "" " es más lento para alinear el arco." #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "miras" @@ -114963,7 +115044,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -114971,7 +115051,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "cuchillo de carnicero" @@ -114988,7 +115067,6 @@ msgstr "" "es ideal para descuartizar cadáveres." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "cuchillo para carne" @@ -115005,7 +115083,6 @@ msgstr "" " de cuerpo a cuerpo, pero es decente para descuartizar cadáveres." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -115020,7 +115097,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -115037,7 +115113,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -115053,7 +115128,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -115069,7 +115143,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -115085,7 +115158,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -119166,7 +119238,6 @@ msgstr "" "lo combina con agua y mordiente." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "fragmento de cristal" @@ -119181,7 +119252,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "plancha de cristal" @@ -119205,7 +119275,6 @@ msgstr "" "ventanas." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "plancha de cristal reforzado" @@ -119219,7 +119288,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "Una plancha grande de cristal endurecido con alambre de acero." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "lámina de cristal reforzado" @@ -119233,7 +119301,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "Una pequeña lámina de cristal reforzado con alambre de acero." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -119342,7 +119409,6 @@ msgid "A roll of purple carpet." msgstr "Un rollo de alfombra púrpura." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "mirilla" @@ -119359,7 +119425,6 @@ msgstr "" "en una puerta." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -119372,7 +119437,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "tubo" @@ -119388,7 +119452,6 @@ msgstr "" "fabricar algunas cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "chatarra" @@ -119406,7 +119469,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "púa" @@ -119423,7 +119485,6 @@ msgstr "" "vehículo." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "tubería de cobre" @@ -119440,7 +119501,6 @@ msgstr "" "cuerpo, pero sirve si no tienes otra cosa. Útil para fabricar algunas cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "lingote de aluminio" @@ -119456,7 +119516,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "bismuto" @@ -119471,7 +119530,6 @@ msgstr "" "plomo." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "oro" @@ -119489,7 +119547,6 @@ msgstr "" "bastante, pero ahora su valor está muy disminuido." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "platino" @@ -119497,7 +119554,6 @@ msgstr[1] "platino" msgstr[2] "platino" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "zinc" @@ -119518,7 +119574,6 @@ msgstr "" "otras cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "plomo" @@ -119535,7 +119590,6 @@ msgstr "" "posee un gran número de usos incluyendo la fabricación de munición." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "polvo de magnesio" @@ -119552,7 +119606,6 @@ msgstr "" "inflamable. És útil para fabricar bengalas u objetos similares." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "plata" @@ -119569,7 +119622,6 @@ msgstr "" "ahora su valor está muy disminuido." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "lámina pequeña de metal" @@ -119582,7 +119634,6 @@ msgid "A small sheet of metal." msgstr "Una pequeña lámina de metal." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "trozo de acero" @@ -119599,7 +119650,6 @@ msgstr "" "útil para fabricar algunas cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "trozo de acero" @@ -119612,7 +119662,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "Es un pedazo pesado de acero, útil para fabricar algunas cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "bisagra de puerta" @@ -119629,7 +119678,6 @@ msgstr "" " Se usa para hacer puertas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "pedazo de cobre" @@ -119642,7 +119690,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "Es un pedazo chico de cobre, útil para fabricar o reparar cosas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -119657,7 +119704,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "estaño" @@ -119701,7 +119747,6 @@ msgstr "" "persiguiendo gatos." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "fragmento de cerámica" @@ -119772,7 +119817,6 @@ msgstr "" "escapar de la explosión." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "piedra afilada" @@ -119853,7 +119897,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "pedazo de plástico" @@ -119885,7 +119928,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -119901,8 +119943,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -119917,7 +119957,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -119932,7 +119971,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -119947,7 +119985,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "tronco" @@ -119962,7 +119999,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -119976,7 +120012,6 @@ msgstr "" "Es un pedazo de madera astillada que puede ser usada como brochette o leña." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "palo grueso" @@ -119989,7 +120024,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "palo largo" @@ -120006,7 +120040,6 @@ msgstr "" "puede romperse para hacer palitos útiles en alguna fabricación." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -120020,8 +120053,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "tablón" @@ -120040,7 +120072,6 @@ msgstr "" "todo tipo de construcción." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -120056,7 +120087,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -120073,7 +120103,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -120089,7 +120118,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -120130,7 +120158,6 @@ msgstr "" "contener hasta 500 ml." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "cafetera atómica" @@ -120148,7 +120175,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -120176,7 +120202,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "enlatadora" @@ -120193,7 +120218,6 @@ msgstr "" "para sellar latas de estaño automáticamente." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "cuchillo eléctrico (apagado)" @@ -120237,7 +120261,6 @@ msgstr "" "apagarlo." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "purificador de agua a carbón" @@ -120258,7 +120281,6 @@ msgstr "" " recogida de fuentes inseguras como los ríos, puede estar sucia." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "ahumador a carbón" @@ -120275,7 +120297,6 @@ msgstr "" " y para preservar la carne ahumándola." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "cocina de carbón" @@ -120292,7 +120313,6 @@ msgstr "" " piloto agregado. La puedes usar para cocinar comida, claro." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "olla de arcilla" @@ -120305,7 +120325,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "Una olla de arcilla con tapa que se usa para cocinar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "mortero de arcilla" @@ -120318,7 +120337,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "Es un simple mortero de mano hecho de arcilla, para moler grano." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "tetera de arcilla" @@ -120331,7 +120349,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "Una tetera de arcilla. Ahora lo único que necesitas es té y agua." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "cafetera" @@ -120351,7 +120368,6 @@ msgstr "" "bebida de tu elección." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "deshidratador de comida" @@ -120368,7 +120384,6 @@ msgstr "" "baterías, y puede ser muy importante para conservar comida." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "bote de huevos fermentados" @@ -120399,7 +120414,6 @@ msgstr "" " una vez que se complete el proceso de fermentación." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "cocina de hexamina" @@ -120416,7 +120430,6 @@ msgstr "" "diseñada para usar pequeñas pastillas de hexamina para cocinar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -120508,7 +120521,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "procesador de comida" @@ -120525,7 +120537,6 @@ msgstr "" "puré y mezclar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "cocina de gasolina" @@ -120559,7 +120570,6 @@ msgstr "" "usar una vez." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "placa térmica eléctrica" @@ -120647,7 +120657,6 @@ msgstr "" "disfrutarlo." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "sellador improvisado al vacío" @@ -120664,7 +120673,6 @@ msgstr "" "empaquetar comida al vacío y preservarla." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "kit de utensilios" @@ -120684,7 +120692,6 @@ msgstr "" "alimentado con químicos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "lata de utensilios" @@ -120704,7 +120711,6 @@ msgstr "" "modernos kits de utensilios." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "kit militar de utensilios" @@ -120728,7 +120734,6 @@ msgstr "" "alimentado con químicos. Compacto, duradero y liviano." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -120748,7 +120753,6 @@ msgstr "" "otros métodos más complejos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "multicocina" @@ -120783,7 +120787,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "cocina de queroseno" @@ -120800,7 +120803,6 @@ msgstr "" " comida." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "máquina de pasta" @@ -120817,7 +120819,6 @@ msgstr "" "Tiene diferentes cabezales para hacer distintas variedades de pasta." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "frasco de pickles fermentando" @@ -120848,7 +120849,6 @@ msgstr "" "sellar la jarra una vez que el proceso termine." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "kit de cocina de latas de refresco" @@ -120863,7 +120863,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "olla a presión" @@ -120882,7 +120881,6 @@ msgstr "" "También puede usarse para reacciones químicas sensibles a la presión." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "mortero" @@ -120895,7 +120893,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "Es un simple mortero de mano hecho de piedra, para moler grano." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "bote de chucrut fermentando" @@ -120954,7 +120951,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "kit de utensilios de supervivencia" @@ -120974,7 +120970,6 @@ msgstr "" "simples pero duraderos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "tetera" @@ -120988,7 +120983,6 @@ msgstr "" "Es una pequeña tetera de metal. Si quieres beber un té, la vas a necesitar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "sellador al vacío" @@ -121005,7 +120999,6 @@ msgstr "" "para empaquetar comida al vacío y preservarla." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "Gofrera de acero" @@ -121100,7 +121093,6 @@ msgstr "" "cama, es mejor que estar tirado en el suelo." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "bicicleta plegable" @@ -121118,6 +121110,23 @@ msgid "This is a bicycle folded into a relatively portable package." msgstr "" "Es una bicicleta plegada para que sea un paquete relativamente portátil." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -121126,7 +121135,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "bote inflable" @@ -121187,7 +121195,6 @@ msgstr "" "enrollada y lista para transportar." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -121221,7 +121228,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "UPS mejorado" @@ -121238,7 +121244,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "cámara" @@ -121257,7 +121262,6 @@ msgstr "" "transferirlas a una tarjeta de memoria. Usa baterías normales." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -121276,7 +121280,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "móvil" @@ -121309,7 +121312,6 @@ msgstr "" "luz, si es que está bien cargado. También tiene un reloj que incluye alarma." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -121325,7 +121327,6 @@ msgid "You stop lighting up the screen." msgstr "Dejás de encender la pantalla." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "portátil de control" @@ -121341,7 +121342,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "antena direccional" @@ -121372,7 +121372,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "lector electrónico" @@ -121387,9 +121386,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "electrohackeador" @@ -121411,7 +121408,6 @@ msgstr "" "de seguridad y otras cosas. Utiliza 25 cargas de batería por uso." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "contador geiger (apagado)" @@ -121432,7 +121428,6 @@ msgstr "" " apagado." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "contador geiger (encendido)" @@ -121454,7 +121449,6 @@ msgstr "" "terreno. Ahora está encendido." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -121488,7 +121482,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "reproductor de mp3 (apagado)" @@ -121524,7 +121517,6 @@ msgstr "" "rápidamente. Usalo para apagarlo. También obstruye tu audición." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "emisor de ruido (apagados)" @@ -121557,7 +121549,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "consola portátil de videojuegos" @@ -121574,7 +121565,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "móvil inteligente" @@ -121659,7 +121649,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "vibrador" @@ -121676,7 +121665,6 @@ msgstr "" "ayudarte a relajarte. Úsalo para tomarte un descanso y relajarte." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -121701,7 +121689,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -121717,7 +121704,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "palanqueta" @@ -121736,7 +121722,6 @@ msgstr "" "alcantarillas. También la puedes empuñar para reventar algunas cabezas." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -121754,7 +121739,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "ganzúa improvisada" @@ -121772,7 +121756,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "picahielo" @@ -121791,7 +121774,6 @@ msgstr "" "forzar puertas o levantar tapas de cámara de inspección." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "palanqueta improvisada" @@ -121808,7 +121790,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "equipo de cerrajero" @@ -122932,7 +122913,6 @@ msgstr "" "está siseando, arrojando muchísimo humo." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "magiclick" @@ -122949,7 +122929,6 @@ msgstr "" "funcionar ineficazmente como un encendedor normal." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "arco de rodamiento" @@ -122970,7 +122949,6 @@ msgstr "" "esta herramienta." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "arco de rodamiento de campamento" @@ -122991,7 +122969,6 @@ msgstr "" "utilizando esta herramienta." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "yesquero" @@ -123007,7 +122984,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "encendedor" @@ -123026,7 +123002,6 @@ msgstr "" "cócteles molotov. También lo puedes usar para prender fuego otras cosas." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "lupa" @@ -123043,7 +123018,6 @@ msgstr "" "Es una lupa. Puede ser útil para encender fuegos si el día está soleado." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "cajita de cerillas" @@ -123064,7 +123038,6 @@ msgstr "" "puedes usar para prender fuego otras cosas. " #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "encendedor recargable" @@ -123110,7 +123083,6 @@ msgstr "" "encendido." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "braserito" @@ -123144,7 +123116,6 @@ msgstr "" "largo, para encender fuegos sin herramientas más modernas." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "braserito (encendido)" @@ -123186,7 +123157,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -123216,7 +123186,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "hacha de bombero" @@ -123234,7 +123203,6 @@ msgstr "" "cuerpo a cuerpo, pero es un poco lenta entre hachazo y hachazo." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "barra halligan" @@ -123303,7 +123271,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -123318,7 +123285,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "trampa plástica de peces" @@ -123356,7 +123322,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "anzuelo" @@ -123369,7 +123334,6 @@ msgid "A simple fishing hook." msgstr "Es un simple anzuelo." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "anzuelo improvisado" @@ -123382,7 +123346,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "Es una anzuelo tallado de madera o hueso." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "caña básica para pescar" @@ -123399,7 +123362,6 @@ msgstr "" " palo con un pedazo de hilo y un anzuelo." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "caña profesional para pescar" @@ -123416,7 +123378,6 @@ msgstr "" "deberías ser capaz de pescar de todo." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -123433,7 +123394,6 @@ msgstr "" " que se necesita para empezar a cargar a mano tu propia munición." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -123452,7 +123412,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "quitador cinético de balas" @@ -123482,7 +123441,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "cuchillo de cobre" @@ -123517,7 +123475,6 @@ msgstr "" "buzos, es muy liviano y casi no ocupa lugar en el bolsillo." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "espátula para miel" @@ -123534,7 +123491,6 @@ msgstr "" "miel de las colmenas. También puede servir como arma de cuerpo a cuerpo." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "navaja" @@ -123583,7 +123539,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "palo cavador" @@ -123600,7 +123555,6 @@ msgstr "" "Puede ser usada para cavar pozos poco profundos." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "paleta" @@ -123616,7 +123570,6 @@ msgstr "" "gusanos." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "azada" @@ -123634,7 +123587,6 @@ msgstr "" "pozo." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -123667,7 +123619,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "guadaña" @@ -123686,7 +123637,6 @@ msgstr "" "incómoda de usar para cualquier cosa que no sea su propósito previsto." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "pala" @@ -123715,7 +123665,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "hoz" @@ -123734,7 +123683,6 @@ msgstr "" " usar para cualquier cosa que no sea su propósito previsto." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "cortasetos (apagado)" @@ -123785,7 +123733,6 @@ msgstr "" "listo para podar artísticamente algún zombi. Usalo para apagarlo." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "lámpara atómica" @@ -123808,7 +123755,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "lámpara atómica (cubierta)" @@ -123833,7 +123779,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -123843,7 +123788,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "Cierras la cubierta del velador." @@ -123858,7 +123803,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -123870,7 +123814,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "Abres la cubierta del lampara de noche." @@ -123928,7 +123872,6 @@ msgstr "" " vela está encendida." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "lámpara eléctrica (apagada)" @@ -123975,7 +123918,6 @@ msgid "You turn the lamp off." msgstr "Apagas la lámpara." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "linterna (apagada)" @@ -124162,7 +124104,6 @@ msgstr "" "menos media hora antes de apagarse." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "linterna reforzada (apagada)" @@ -124318,7 +124259,6 @@ msgid "The %s is extinguished" msgstr "Se apagó la %s." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -124366,7 +124306,6 @@ msgstr "" "oscuridad. Está prendida." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "lámpara inteligente (apagada)" @@ -124424,7 +124363,7 @@ msgstr[2] "antorchas" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "Encender antorcha" @@ -124432,7 +124371,7 @@ msgstr "Encender antorcha" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Enciendes la antorcha." @@ -124451,7 +124390,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "La antorcha se extinguió." @@ -124465,7 +124404,6 @@ msgstr "" "punta. Está encendida, y produce bastante luz." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -124542,7 +124480,6 @@ msgstr "" "especializado, y no puede ser administrado manualmente." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -124595,7 +124532,6 @@ msgstr "" "no usar más de dos dosis por hora." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "escalpelo" @@ -124632,7 +124568,6 @@ msgstr "" "pequeña inyección de energía." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "jeringa" @@ -124645,7 +124580,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "Una jeringa médica. Se usa para administrar drogas intravenosas." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "termómetro" @@ -124678,7 +124612,6 @@ msgstr "" "inyección de energía." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "equipo de extracción de sangre" @@ -124697,7 +124630,6 @@ msgstr "" "que tengas cerca." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "placa dosimétrica envuelta" @@ -124738,7 +124670,6 @@ msgstr "" "metalúrgicas." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "yunque de bronce" @@ -124755,7 +124686,6 @@ msgstr "" "cincel. Se usa para la mayoría de las fabricaciones metalúrgicas." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "cizallas" @@ -124773,7 +124703,6 @@ msgstr "" "gruesos." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "forja de carbón" @@ -124798,7 +124727,6 @@ msgstr "" "quemado incompleto de materiales orgánicos en ausencia de oxígeno." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "cincel para metal" @@ -124815,7 +124743,6 @@ msgstr "" "fabricaciones metalúrgicas." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "crisol" @@ -124831,7 +124758,6 @@ msgstr "" "Es un pequeño crisol metalúrgico. Se usa para trabajar más o menos el metal." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "crisol de arcilla" @@ -124848,7 +124774,6 @@ msgstr "" "usar para... trabajar metal." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "forja eléctrica" @@ -124866,7 +124791,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "carbonera terminada" @@ -124907,7 +124831,6 @@ msgstr "" "proceso de quemado." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "carbonera encendida" @@ -124951,7 +124874,6 @@ msgstr "" "conectar varias de estas planchas para hacer una armadura efectiva." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "equipo de estampado y matriz" @@ -124968,7 +124890,6 @@ msgstr "" "para algunas fabricaciones metalúrgicas." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "par de pinzas de metal" @@ -125012,7 +124933,6 @@ msgstr "" "Apretar el botón de arriba hace que se emita un bocinazo muy fuerte." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "reloj despertador" @@ -125159,7 +125079,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "herramienta de trinchera" @@ -125202,7 +125121,6 @@ msgstr "" "inflamable. Tienes que encenderlo fuego antes de dispararla." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "colchoneta de piel" @@ -125226,7 +125144,6 @@ msgstr "" "desenrollarlo y ponerlo en el suelo." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "gancho de agarre" @@ -125257,7 +125174,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "Un sencillo garfio de acero con mango circular de acero." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "inflador de mano" @@ -125320,7 +125236,6 @@ msgstr "" "auto." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "calefactor grande" @@ -125358,7 +125273,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -125470,7 +125384,6 @@ msgstr "" "puede ser desmontado para convertirlo en piezas útiles." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "colchoneta" @@ -125527,7 +125440,6 @@ msgstr "" "sarcófago de residuos peligrosos." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -125712,7 +125624,6 @@ msgstr "" "juntarse alrededor de ella." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "silbato multiherramienta" @@ -125861,7 +125772,6 @@ msgstr "" "alguna vez hubiera pertenecido al mejor de todos." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "jaula para gallinas" @@ -125880,7 +125790,6 @@ msgstr "" " vacío para largarlo." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "silbato para perros" @@ -125899,7 +125808,6 @@ msgstr "" "atacar a los enemigos si en ese momento están dóciles." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "tijera de esquilar" @@ -125912,7 +125820,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "Es un juego de tijeras diseñado para obtener lana de oveja." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -125925,7 +125832,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -125940,7 +125846,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "transportador de mascota" @@ -125957,7 +125862,6 @@ msgstr "" "un animal para capturarlo, y en un espacio vacío para largarlo." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -125972,7 +125876,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -126014,7 +125917,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "control de coche radiocontrol" @@ -126033,7 +125935,6 @@ msgstr "" " eran para el modelo deluxe?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "coche radiocontrol" @@ -126080,7 +125981,6 @@ msgstr "" "que estos puedan ser activados luego de recibir una señal de radio." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "radio (apagada)" @@ -126114,7 +126014,6 @@ msgstr "" "radio cercanas." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "radio bidireccional" @@ -126132,7 +126031,6 @@ msgstr "" "en día..." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "controlador remoto de vehículo" @@ -126227,7 +126125,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -126246,7 +126143,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "barómetro" @@ -126277,7 +126173,6 @@ msgstr "" "propia responsabilidad.\" Te parece que sientes que algo se mueve adentro." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "equipo de química" @@ -126297,7 +126192,6 @@ msgstr "" "químicas si es que te interesa." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "equipo básico de química" @@ -126317,7 +126211,6 @@ msgstr "" "calor." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "equipo de electrólisis" @@ -126352,7 +126245,6 @@ msgstr "" "aceites esenciales de materia orgánica." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "tanque de hidrógeno" @@ -126369,7 +126261,6 @@ msgstr "" "desde cero o levantar un zepelín, te puede venir muy bien." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "higrómetro" @@ -126383,7 +126274,6 @@ msgstr "" "Un higrómetro de plástico que puede medir la humedad relativa del aire." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "tanque de nitrógeno" @@ -126400,7 +126290,6 @@ msgstr "" " su falta de reactividad. No intentes respirarlo." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "cilindro de oxígeno" @@ -126417,7 +126306,6 @@ msgstr "" "marcada con un símbolo de O2 descolorido pero legible." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "rejilla de platino" @@ -126481,7 +126369,6 @@ msgstr "" " cuando es activado." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "Doppler Radar Turbo 2000" @@ -126500,7 +126387,6 @@ msgstr "" "meteorológica. Sin embargo, no hay rastros del FLDSMDFR." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "equipo básico de análisis de laboratorio" @@ -126523,7 +126409,6 @@ msgstr "" "a poder crear el químico deseado." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "pequeña balanza" @@ -126541,7 +126426,6 @@ msgstr "" "bastante precisa." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "espectrofotómetro" @@ -126558,7 +126442,6 @@ msgstr "" " de una muestra líquida en un tubo especial llamado cuvette." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "medidor de pH" @@ -126577,7 +126460,6 @@ msgstr "" "equipo) y la otra sonda en una sustancia, se puede calcular su acidez." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "voltímetro" @@ -126598,7 +126480,6 @@ msgstr "" "para realizar modificaciones en las conexiones a la red." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "aparato de punto de fusión" @@ -126622,7 +126503,6 @@ msgstr "" "identificar qué es y su grado de pureza." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "agitador vórtex" @@ -126646,7 +126526,6 @@ msgstr "" "sorprendentemente divertida de usar." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "detector de luz" @@ -126663,7 +126542,6 @@ msgstr "" "recibe en energía eléctrica para poder medirla." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "prisma de vidrio" @@ -126694,7 +126572,6 @@ msgid "" msgstr "Es un tubo pequeño de vidrio. ¿Qué más querrías saber sobre él?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "microscopio" @@ -126715,7 +126592,6 @@ msgstr "" "funcional. Por desgracia, de momento no sirve para mucho." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "microscopio de disección" @@ -126738,7 +126614,6 @@ msgstr "" "pero ¿qué harías tú con él?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -126757,7 +126632,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -126776,7 +126650,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -126797,7 +126670,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -126815,7 +126687,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -126878,7 +126749,6 @@ msgstr "" "refugio ha sido dañado y necesita ser reparado." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "tienda de campaña grande" @@ -126895,7 +126765,6 @@ msgstr "" "voluminosa." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "equipo de refugio" @@ -126908,7 +126777,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "Es un pequeño refugio hecho de palos y pieles. Usalo para ubicarlo." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "tienda de campaña" @@ -126990,7 +126858,6 @@ msgstr "" "hojas curadas de tabaco." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -127003,7 +126870,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -127016,7 +126882,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "tijera" @@ -127032,7 +126897,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "papel" @@ -127045,7 +126909,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Un pedazo de papel. Se puede usar para hacer fuego." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -127061,7 +126924,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -127076,7 +126938,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "agujas de tejer" @@ -127094,7 +126955,6 @@ msgstr "" "convertir el hilo en tela." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "aguja de hueso" @@ -127124,7 +126984,6 @@ msgstr "" "muchas tareas de sastrería, es necesaria para coser neopreno." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "aguja de madera" @@ -127141,8 +127000,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "costurero" @@ -127178,8 +127036,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "equipo de sastre" @@ -127196,7 +127053,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -127209,7 +127065,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "cepillo de fregar" @@ -127222,7 +127077,6 @@ msgid "This is a simple scrub brush." msgstr "Es un simple cepillo de fregar." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "cortadora eléctrica de pelo" @@ -127270,7 +127124,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "hojita de afeitar" @@ -127301,7 +127154,6 @@ msgstr "" " por uso." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "esponja" @@ -127346,7 +127198,6 @@ msgstr "" "agrega jabón. Necesita 1 unidad de jabón por uso." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "tabla de lavar" @@ -127363,7 +127214,6 @@ msgstr "" "si tenéis algún agente lavador." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -127406,7 +127256,6 @@ msgstr "" "enterrarla." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "trampa de cuchilla" @@ -127430,7 +127279,6 @@ msgstr "" "fuerza. La trampa tiene un área de efecto de 3x3." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "trampa de tabla con clavos" @@ -127483,7 +127331,6 @@ msgstr "" "pisa." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "abrojo metálico sueltos" @@ -127506,7 +127353,6 @@ msgstr "" "pie." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -127563,7 +127409,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -127592,7 +127437,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "trampa de cuerda" @@ -127631,7 +127475,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -127653,7 +127496,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "hacha para leña" @@ -127684,7 +127526,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "motosierra (apagada)" @@ -127726,7 +127567,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "La motosierra está encendida y hace mucho ruido. Usala para apagarla." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "sierra circular (apagada)" @@ -127776,7 +127616,6 @@ msgstr "" " está girando. Usala para apagarla." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "hacha de cobre" @@ -127809,7 +127648,6 @@ msgstr "" "usar para cortar cosas y como martillo." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "motosierra eléctrica (apagada)" @@ -127921,7 +127759,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "sierra para madera" @@ -127934,7 +127771,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "Es una sierra fina, útil para cortar objetos de madera." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -127943,7 +127779,6 @@ msgstr[2] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -128089,7 +127924,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -128104,7 +127938,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -128119,7 +127952,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "horno de ladrillos" @@ -128137,7 +127969,6 @@ msgstr "" "hecha de arcilla." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "cardadoras de mano" @@ -128155,7 +127986,6 @@ msgstr "" "para poder usarlas en la producción textil." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "espátula" @@ -128168,7 +127998,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "Una herramienta similar a un cincel, diseñado para sacar la pintura." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -128183,7 +128012,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -128199,7 +128027,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "hormigonera" @@ -128217,7 +128044,6 @@ msgstr "" "calentador incorporado." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "taladro inalámbrico" @@ -128233,7 +128059,6 @@ msgstr "" "puntas para el taladro." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "huso y aspa" @@ -128250,7 +128075,6 @@ msgstr "" "hilando fibra." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "martillo neumático eléctrico" @@ -128266,7 +128090,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "sierra de arco" @@ -128294,7 +128117,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "martillo" @@ -128328,7 +128150,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "taladro manual" @@ -128345,7 +128166,6 @@ msgstr "" "agotadora de utilizar." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "manguera de goma" @@ -128362,7 +128182,6 @@ msgstr "" " o para chuparle la gasolina a un vehículo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "gato hidráulico de botella" @@ -128377,7 +128196,6 @@ msgstr "" "vehículos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "gato hidráulico improvisado" @@ -128394,7 +128212,6 @@ msgstr "" "capaz de levantar vehículos si eres tan valiente como para usarlo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "gato hidráulico de tipo tijera" @@ -128409,7 +128226,6 @@ msgstr "" "vehículos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "martillo neumático" @@ -128428,7 +128244,6 @@ msgstr "" "adyacente (si tiene gasolina)." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -128443,7 +128258,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "fosas de carbonización eléctricas" @@ -128465,7 +128279,6 @@ msgstr "" "del vehículo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "equipo armero de reparación" @@ -128485,7 +128298,6 @@ msgstr "" "batería para cada vez que se usa." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "martillo improvisado" @@ -128500,7 +128312,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -128515,7 +128326,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "llana de metal" @@ -128532,7 +128342,6 @@ msgstr "" "la mezcla, en las obras." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "kit de reparación misceláneo" @@ -128565,7 +128374,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "molde de plástico" @@ -128582,7 +128390,6 @@ msgstr "" " de plástico." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "multi-herramienta" @@ -128599,7 +128406,6 @@ msgstr "" "herramientas pequeñas en los mangos del par de pinzas." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "soplete de acetileno" @@ -128622,7 +128428,6 @@ msgstr "" "de metales, se puede activar para destruir las barreras metálicas." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "brocha" @@ -128635,7 +128440,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "Un pincel ancho, adecuado para pintar paredes." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "pico" @@ -128652,7 +128456,6 @@ msgstr "" "habilidad) enemigos duros. ¡Picá la tierra!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -128667,7 +128470,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "tenaza" @@ -128683,7 +128485,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "pulidor eléctrico" @@ -128717,7 +128518,6 @@ msgstr "" "martillo serio." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "destornillador" @@ -128735,7 +128535,6 @@ msgstr "" "mayoría de las mecánicas, y tiene muchos otros usos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "juego de destornilladores" @@ -128752,7 +128551,6 @@ msgstr "" "garantiza tener la herramienta adecuada para un trabajo preciso." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "equipo de reparación de armas" @@ -128772,7 +128570,6 @@ msgstr "" "batería para cada vez que se usa." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -128807,7 +128604,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "caja de herramientas" @@ -128825,7 +128621,6 @@ msgstr "" "de construcción." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -128856,7 +128651,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "soldador de arco" @@ -128871,7 +128665,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "llana de madera" @@ -128888,7 +128681,6 @@ msgstr "" "las obras. También lo puedes usar para reventar algunas cabezas." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "fibra de lana" @@ -128905,7 +128697,6 @@ msgstr "" "trozos de fieltro o hilos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "navaja de precisión" @@ -128927,7 +128718,6 @@ msgstr "" "para poder descuartizar cadáveres." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "llave inglesa" @@ -128944,7 +128734,6 @@ msgstr "" "cuerpo a cuerpo, y es utilizada en muchas tareas mecánicas." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -128960,7 +128749,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -130410,6 +130198,18 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -130792,7 +130592,6 @@ msgstr "" " cerebro." #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -131299,6 +131098,14 @@ msgstr[2] "mesas de madera" msgid "A crude wooden table." msgstr "Es una simple mesa de madera." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -131657,6 +131464,32 @@ msgstr[2] "kits de rueditas" msgid "A set of casters, like on a shopping cart." msgstr "Un juego de ruedas, como en un carrito de la compra." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -132516,13 +132349,6 @@ msgstr "CEMENTO" msgid "FERTILIZER" msgstr "FERTILIZANTE" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "ROCAS" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -132851,13 +132677,6 @@ msgstr "PAPEL" msgid "PLASTIC" msgstr "PLÁSTICO" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "ELECTRONICOS" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -133418,7 +133237,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -133442,7 +133261,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Dolor" @@ -137897,7 +137716,7 @@ msgstr[2] "multicocinas malévolas" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "¡Esta cocina malévola tiene vida propia! ¡Cuidado!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "holograma" @@ -137906,7 +137725,7 @@ msgstr[2] "hologramas" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "Es una imagen hecha de luz, casi parece real." @@ -148892,9 +148711,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "Vamos a intercambiar objetos." @@ -149627,9 +149446,9 @@ msgstr "¿Qué estás haciendo aquí?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -149645,9 +149464,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "¿Puedo hacer algo por ti?" @@ -149675,25 +149494,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "¿Por qué no te vas a otro lugar?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "Vamos a negociar entonces." #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -149713,9 +149532,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -156409,7 +156228,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "Ey, ." @@ -166738,17 +166557,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -168061,7 +167880,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -173914,9 +173733,9 @@ msgstr "¿Tienes algún consejo de supervivencia?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "Adiós." @@ -184006,7 +183825,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Bosque" @@ -184376,7 +184194,7 @@ msgid "island" msgstr "isla" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "cabaña" @@ -184398,7 +184216,6 @@ msgstr "sótano de la cabaña" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "bosque" @@ -187151,7 +186968,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "orilla del lago" @@ -187198,7 +187014,7 @@ msgstr "ARMA" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "TODOS" @@ -187323,6 +187139,13 @@ msgstr "ELECTRÓNICA" msgid "CBMS" msgstr "MCB" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "HERRAMIENTAS" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -187336,7 +187159,7 @@ msgstr "ILUMINACIÓN" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "ARMADURA" @@ -187377,7 +187200,7 @@ msgstr "MEDICAMENTOS" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "MATERIALES" @@ -198189,7 +198012,7 @@ msgstr "armazón liviano plegable" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -198295,6 +198118,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "luces de espacio lateral" @@ -200220,6 +200050,24 @@ msgstr "" "Es un conjunto de pequeñas ruedas, puesta en ejes, como las que usan las " "sillas de oficina o los changuitos." +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "ruedas" @@ -200294,7 +200142,7 @@ msgstr "" "Reforzada con alambre para hacerla más resistente a las roturas que el " "vidrio normal." -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Bicicleta" @@ -200362,6 +200210,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "canoa" @@ -200507,8 +200359,8 @@ msgid "Wheelbarrow" msgstr "Carretilla" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Silla de ruedas Plegable" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -200850,7 +200702,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "Camioneta de Seguridad" @@ -207992,7 +207843,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -208000,8 +207851,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -209034,9 +208885,9 @@ msgstr[2] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -209050,7 +208901,7 @@ msgstr[2] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -227199,74 +227050,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "OTRAS HERRAMIENTAS" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "UTENSILIOS DE COCINA" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "INGREDIENTES CULINARIOS" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "CHATARRA METÁLICA" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "CHATARRA ELECTRÓNICA" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "TELAS" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "OBJETOS DE VALOR" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -227276,177 +227059,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "Botín: Objetos de valor" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "Lugar para los objetos de valor." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "Limitar Crecimiento Fúngico" @@ -228678,116 +228290,135 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" -msgstr[0] "MCB Generador de Energía a Sangre" -msgstr[1] "MCB Generador de Energía a Sangre" -msgstr[2] "MCB Generador de Energía a Sangre" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -228795,38 +228426,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -228834,48 +228466,58 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "Oricalco" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" -msgstr "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" @@ -228886,47 +228528,47 @@ msgstr "" "aprender hechizos y disminuye tu probabilidad de fallo de hechizos. Aprendes" " esta habilidad estudiando libros o hechizos." -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -228934,24 +228576,72 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "Aspirante a mago" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "Aspirante a maga" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -228961,7 +228651,7 @@ msgstr "" "mago, extrañamente sereno con el mundo cayendo a tu alrededor." #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -228970,18 +228660,18 @@ msgstr "" "Encontraste un folleto con colores brillantes que decía que puedes ser una " "maga, extrañamente serena con el mundo cayendo a tu alrededor." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "Pirómano Kelvinista" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "Pirómana Kelvinista" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -228991,7 +228681,7 @@ msgstr "" "deseas ejercerlo sobre el mundo." #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -229000,18 +228690,18 @@ msgstr "" "Has amado el fuego toda tu vida. Ahora has descubierto tu fuego interior y " "deseas ejercerlo sobre el mundo." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "Druida" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "Druida" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -229021,7 +228711,7 @@ msgstr "" "debe prosperar." #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -229031,7 +228721,7 @@ msgstr "" "debe prosperar." #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -229045,7 +228735,7 @@ msgstr "" "tangible para protegerte." #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -229059,7 +228749,7 @@ msgstr "" "tangible para protegerte." #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -229069,7 +228759,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -229079,7 +228769,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -229088,7 +228778,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -229097,7 +228787,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -229107,7 +228797,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -229116,18 +228806,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -229136,7 +228826,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -229144,18 +228834,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -229165,7 +228855,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -229174,18 +228864,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -229193,25 +228883,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -229219,59 +228909,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "Perdiendo la fe" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "Perdiendo la fe" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -229284,7 +229006,7 @@ msgstr "" "por completo." #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -229297,25 +229019,25 @@ msgstr "" "por completo." #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "Iglesia" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -229327,7 +229049,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -229338,25 +229060,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -229366,7 +229088,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -229376,592 +229098,645 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "Aura de protección" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -229973,245 +229748,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -230219,487 +229967,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -230707,321 +230475,365 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -231029,20 +230841,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -231050,74 +230862,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -231125,21 +230937,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "Ionización" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -231151,105 +230963,129 @@ msgstr "" "relámpagos naturales, la luz y el trueno producidos dejarán atónitos a tus " "enemigos." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -231257,16 +231093,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -231274,74 +231110,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -231349,350 +231185,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "Aterrado" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -231700,7 +231536,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -231708,7 +231544,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -231716,53 +231552,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "pulsera de cobre de infusión" -msgstr[1] "pulseras de cobre de infusión" -msgstr[2] "pulseras de cobre de infusión" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" -"Esta pulsera tiene runas grabadas en ella. Sientes un cierto aire místico " -"cuando la miras. Podría ser útil para imbuir maná en un material." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "pulsera de plata de infusión" -msgstr[1] "pulseras de plata de infusión" -msgstr[2] "pulseras de plata de infusión" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "diadema de cobre" -msgstr[1] "diademas de cobre" -msgstr[2] "diademas de cobre" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" -"Es una banda de madera con adornos de cobre, que se usa en la cabeza. Al " -"estar en contacto con tus sienes te hace sentir muy calmado." - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "poción de inicio" @@ -231770,7 +231566,7 @@ msgstr[1] "pociones de inicio" msgstr[2] "pociones de inicio" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." @@ -231778,7 +231574,7 @@ msgstr "" "Es alcohol fuerte, infundido con maná y concentrado en un líquido que puede " "estabilizar hechizos en forma líquida. Te lo podés tomar igual, si querés." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "poción superior de inicio" @@ -231786,7 +231582,7 @@ msgstr[1] "pociones superior de inicio" msgstr[2] "pociones superior de inicio" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." @@ -231794,7 +231590,7 @@ msgstr "" "Es etanol puro saturado con energía mágica. La energía pura concentrada " "dentro causa que la superficie de la poción forme olas continuamente." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "glándula suprarrenal grande" @@ -231802,7 +231598,7 @@ msgstr[1] "glándulas suprarrenales grandes" msgstr[2] "glándulas suprarrenales grandes" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." @@ -231811,7 +231607,7 @@ msgstr "" "adrenalina, cortisol y aldosterona. Este es enorme, ya sea natural o por " "mutación." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -231819,59 +231615,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -231879,14 +231629,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "esencia de dragón" @@ -231894,13 +231644,13 @@ msgstr[1] "esencias de dragón" msgstr[2] "esencias de dragón" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "Es la esencia mágica de un dragón, destilada en forma concentrada." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -231909,43 +231659,13 @@ msgstr[2] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -231953,14 +231673,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "alumentum" @@ -231968,19 +231688,14 @@ msgstr[1] "alumentum" msgstr[2] "alumentum" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -"El alumentum es carbón o carbón vegetal procesado mágicamente. Arde tanto " -"como el magnesio y por un tiempo significativamente más extenso. Uno de los " -"pocos materiales mágicos que todavía se produce en cantidad debido a su " -"utilidad." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -231988,47 +231703,47 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "sangre de dragón" msgstr[1] "sangre de dragón" msgstr[2] "sangre de dragón" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "flecha de oricalco" msgstr[1] "flechas de oricalco" msgstr[2] "flechas de oricalco" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "Ichaival" msgstr[1] "Ichaivals" msgstr[2] "Ichaivals" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -232036,7 +231751,7 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" @@ -232046,7 +231761,7 @@ msgstr "" "brillo misterioso. Tiene muy alta probabilidad de permanecer intacta una vez" " disparada, pero solo puede ser disparada desde un Ichaival." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "par de mangas de quitina demoníaca" @@ -232055,7 +231770,7 @@ msgstr[2] "pares de mangas de quitina demoníaca" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." @@ -232064,7 +231779,7 @@ msgstr "" "cuidadosamente limpiados y recortados. Son resistentes al fuego y muy " "duraderas." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "armadura de quitina demoníaca" @@ -232072,7 +231787,7 @@ msgstr[1] "armaduras de quitina demoníaca" msgstr[2] "armaduras de quitina demoníaca" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." @@ -232081,7 +231796,7 @@ msgstr "" "demoníacas, cuidadosamente limpiados y recortados. Es resistente al fuego y " "muy duradera." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "casco de quitina demoníaca" @@ -232089,7 +231804,7 @@ msgstr[1] "cascos de quitina demoníaca" msgstr[2] "cascos de quitina demoníaca" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." @@ -232098,7 +231813,7 @@ msgstr "" "cuidadosamente limpiados y recortados. Cubre toda la cabeza, es resistente " "al fuego y muy duradero." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "par de guantes de quitina demoníaca" @@ -232107,7 +231822,7 @@ msgstr[2] "pares de guantes de quitina demoníaca" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." @@ -232116,7 +231831,7 @@ msgstr "" "cuidadosamente limpiados y recortados. Son resistentes al fuego y muy " "duraderos." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "par de botas de quitina demoníaca" @@ -232125,7 +231840,7 @@ msgstr[2] "pares de botas de quitina demoníaca" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." @@ -232134,7 +231849,7 @@ msgstr "" "cuidadosamente limpiados y recortados. Son resistentes al fuego y muy " "duraderas." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -232143,13 +231858,13 @@ msgstr[2] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -232157,42 +231872,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" -"Utilizando la última tecnología en tecnomancia, este biónico es capaz de " -"convertir la energía interna almacenada en la sangre en energía biónica. " -"Cuanto más fuerte sea la sangre, mejor. Puede contener hasta 100 ml de " -"sangre." - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -232200,13 +231886,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "pellejo crudo de dragón negro" @@ -232214,7 +231900,7 @@ msgstr[1] "pellejos crudos de dragón negro" msgstr[2] "pellejos crudos de dragón negro" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " @@ -232224,7 +231910,7 @@ msgstr "" "negro. Es un pedazo lo suficientemente grande como para hacer protecciones, " "y con las escamas suficientes para hacer una armadura." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -232232,24 +231918,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -232257,13 +231943,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "par de botas negras de escamas de dragón" @@ -232272,14 +231958,14 @@ msgstr[2] "pares de botas negras de escamas de dragón" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" "Son unas botas hechas con escamas negras de dragón. Protegen mucho y son " "sorprendentemente livianas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "par de botas negras de pellejo de dragón" @@ -232288,14 +231974,14 @@ msgstr[2] "pares de botas negras de pellejo de dragón" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" "Son unas botas hechas con pellejo negro de dragón. Protegen mucho y son " "sorprendentemente livianas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "casco negro de escamas de dragón" @@ -232303,7 +231989,7 @@ msgstr[1] "cascos negros de escamas de dragón" msgstr[2] "cascos negros de escamas de dragón" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." @@ -232311,7 +231997,7 @@ msgstr "" "Es un casco hecho con escamas negras de dragón, unidas con pellejo negro de " "dragón. Viene con un visor que cubre toda la cara." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "casco negro de pellejo de dragón" @@ -232319,7 +232005,7 @@ msgstr[1] "cascos negros de pellejo de dragón" msgstr[2] "cascos negros de pellejo de dragón" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." @@ -232327,7 +232013,7 @@ msgstr "" "Es un casco hecho de pellejo negro de dragón. Protege bien la cabeza pero no" " te cubre la cara." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "armadura negra de escamas de dragón" @@ -232335,7 +232021,7 @@ msgstr[1] "armaduras negras de escamas de dragón" msgstr[2] "armaduras negras de escamas de dragón" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" @@ -232345,7 +232031,7 @@ msgstr "" "accesorios para cubrir tu torso, piernas y brazos, con el beneficio de ser " "muy liviana y flexible." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "armadura negra de pellejo de dragón" @@ -232353,7 +232039,7 @@ msgstr[1] "armaduras negras de pellejo de dragón" msgstr[2] "armaduras negras de pellejo de dragón" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " @@ -232363,7 +232049,7 @@ msgstr "" "accesorios para cubrir tu torso, piernas y brazos, con el beneficio de ser " "muy liviana y flexible." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "par de guantes negros de escamas de dragón" @@ -232372,20 +232058,20 @@ msgstr[2] "pares de guantes negros de escamas de dragón" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "Es un par de guantes resistentes hechos de escamas negras de dragón." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "par de guantes negros de pellejo de dragón" msgstr[1] "pares de guantes negros de pellejo de dragón" msgstr[2] "pares de guantes negros de pellejo de dragón" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "par de botas XL negras de escamas de dragón" @@ -232394,7 +232080,7 @@ msgstr[2] "pares de botas XL negras de escamas de dragón" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." @@ -232403,7 +232089,7 @@ msgstr "" " adaptarse a los cuerpos más extraños. Protegen mucho y son soprendentemente" " livianas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "par de botas XL negras de pellejo de dragón" @@ -232412,7 +232098,7 @@ msgstr[2] "pares de botas XL negras de pellejo de dragón" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." @@ -232421,7 +232107,7 @@ msgstr "" "adaptarse a los cuerpos más extraños. Protegen mucho y son soprendentemente " "livianas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "par de guantes negros XL de escamas de dragón" @@ -232430,7 +232116,7 @@ msgstr[2] "pares de guantes negros XL de escamas de dragón" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." @@ -232438,7 +232124,7 @@ msgstr "" "Es un par de guantes resistentes hechos de escamas negras de dragón que " "pueden cubrir tus manos o lo que sea que tengas en lugar de manos." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "par de guantes negros XL de pellejo de dragón" @@ -232447,7 +232133,7 @@ msgstr[2] "pares de guantes negros XL de pellejo de dragón" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " @@ -232458,7 +232144,7 @@ msgstr "" "extremas. Tiene el tamaño como para ser usado con las anatomías más " "extrañas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "casco negro XL de escamas de dragón" @@ -232466,7 +232152,7 @@ msgstr[1] "cascos negros XL de escamas de dragón" msgstr[2] "cascos negros XL de escamas de dragón" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" @@ -232476,7 +232162,7 @@ msgstr "" "negro de dragón. Viene con el visor completo y es lo suficientemente grande " "para que entre en las cabezas más extrañas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "casco negro XL de pellejo de dragón" @@ -232484,7 +232170,7 @@ msgstr[1] "cascos negros XL de pellejo de dragón" msgstr[2] "cascos negros XL de pellejo de dragón" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " @@ -232494,7 +232180,7 @@ msgstr "" "bien, y no cubre tu cara pero es lo suficientemente grande para entrar en " "las cabezas más extrañas." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "armadura negra XL de escamas de dragón" @@ -232502,7 +232188,7 @@ msgstr[1] "armaduras negras XL de escamas de dragón" msgstr[2] "armaduras negras XL de escamas de dragón" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -232512,7 +232198,7 @@ msgstr "" " los accesorios para cubrir tu torso, piernas y brazos, y con tamaño " "suficiente para cubrir los cuerpos más extraños." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "armadura negra XL de pellejo de dragón" @@ -232520,7 +232206,7 @@ msgstr[1] "armaduras negras XL de pellejo de dragón" msgstr[2] "armaduras negras XL de pellejo de dragón" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -232530,7 +232216,7 @@ msgstr "" "los accesorios para cubrir tu torso, piernas y brazos, y con tamaño " "suficiente para cubrir los cuerpos más extraños." -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -232539,12 +232225,12 @@ msgstr[2] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -232552,7 +232238,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -232560,13 +232246,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -232574,331 +232260,272 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer rune" +msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Biomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" +"This magical pebble has an insignia of rended flesh and bones on it. It is " +"necessary for Biomancers to channel magic into their crafts." msgstr "" -"No podés comprar esto, ¿así que la tenés que guardar hasta el último jefe! " -"Pensandolo bien, ¡ni siquiera en ese momento la gastes!" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer rune" +msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Technomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This magical pebble has an insignia of clockwork and gears on it. It is " +"necessary for Technomancers to channel magic into their crafts." +msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus rune" +msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "Es una poción Gracia Gatuna. Incrementará tu destreza por 10 minutos." +"This magical pebble has an insignia of crystal and mana orbs on it. It is " +"necessary for Magi to channel magic into their crafts." +msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper rune" +msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Earthshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "Es una poción Fuerza Ogro. Incrementará tu fuerza por 10 minutos." +"This magical pebble has an insignia of steel and rocks on it. It is " +"necessary for Earthshapers to channel magic into their crafts." +msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist rune" +msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Kelvinist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." +"This magical pebble has an insignia of ice and flames on it. It is " +"necessary for Kelvinists to channel magic into their crafts." msgstr "" -"Es una poción Vista de Águila. Incrementará tu percepción por 10 minutos." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper rune" +msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" -" Es una poción Astucia de Zorro. Incrementará tu inteligencia por 10 " -"minutos." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "muñeco vudú zombi" -msgstr[1] "muñecos vudú zombi" -msgstr[2] "muñecos vudú zombi" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" -"Es un efigie notablemente precisas de un humano muerto viviente, incluye " -"pedazos de hueso y órganos. La magia necromántica retrasa la putrefacción, " -"pero no dura para siempre. Pincharlo con una aguja puede forzarlo a que te " -"obedezca." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "muñeco vudú osificado" -msgstr[1] "muñecos vudú osificado" -msgstr[2] "muñecos vudú osificado" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Stormshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." +"This magical pebble has an insignia of lightning and storm clouds on it. It" +" is necessary for Stormshapers to channel magic into their crafts." msgstr "" -"Es un efigie notablemente precisas de un humano muerto viviente, cubierto de" -" hueso e incluye pedazos de órganos. La magia necromántica retrasa la " -"putrefacción, pero no dura para siempre. Pincharlo con una aguja puede " -"forzarlo a que te obedezca." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "muñeco vudú puma" -msgstr[1] "muñecos vudú puma" -msgstr[2] "muñecos vudú puma" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid rune" +msgid_plural "Druid runes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Druid rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of nature and trees on it. It is " +"necessary for Druids to channel magic into their crafts." msgstr "" -"Es un efigie notablemente precisas de un puma muerto viviente, completado " -"con piel, huesos y órganos. La magia necromántica retrasa la putrefacción, " -"pero no dura para siempre. Pincharlo con una aguja puede forzarlo a que te " -"obedezca." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "poción Restoración Retorcida" -msgstr[1] "pociones Restoración Retorcida" -msgstr[2] "pociones Restoración Retorcida" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist rune" +msgid_plural "Animist runes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Animist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." +"This magical pebble has an insignia of summoners on it. It is necessary for" +" Animists to channel magic into their crafts." msgstr "" -"Este líquido de olor nauseabundo simula la regeneración de muertos " -"vivientes, acelerando tu corazón a niveles peligrosos. Tomarlo en peligro o " -"en condiciones críticas puede ser letal." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "poción Restoración Retorcida Mejorada" -msgstr[1] "pociones Restoración Retorcida Mejorada" -msgstr[2] "pociones Restoración Retorcida Mejorada" +#: data/mods/Magical_Nights/items/class_items.json +msgid "alchemist rune" +msgid_plural "alchemist runes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'alchemist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." +"This magical pebble has an insignia of alchemy and potions on it. While " +"versatile in use, the lack of attunement to any school prevents creation of " +"more advanced recipes." msgstr "" -"Este líquido de olor nauseabundo simula la regeneración de muertos " -"vivientes, acelerando tu corazón a niveles peligrosos. Tomarlo en peligro o " -"en condiciones críticas puede ser letal. Las técnicas mejoradas de infusión," -" disminuyen el esfuerzo del proceso." -#: data/mods/Magiclysm/items/class_runes.json -msgid "Biomancer rune" -msgid_plural "Biomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of rended flesh and bones on it. It is " -"necessary for Biomancers to channel magic into their crafts." +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Technomancer rune" -msgid_plural "Technomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of clockwork and gears on it. It is " -"necessary for Technomancers to channel magic into their crafts." +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Magus rune" -msgid_plural "Magi runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of crystal and mana orbs on it. It is " -"necessary for Magi to channel magic into their crafts." +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Earthshaper rune" -msgid_plural "Earthshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of steel and rocks on it. It is " -"necessary for Earthshapers to channel magic into their crafts." +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Kelvinist rune" -msgid_plural "Kelvinist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of ice and flames on it. It is " -"necessary for Kelvinists to channel magic into their crafts." +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Stormshaper rune" -msgid_plural "Stormshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of lightning and storm clouds on it. It" -" is necessary for Stormshapers to channel magic into their crafts." +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Druid rune" -msgid_plural "Druid runes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "cinturón de herramientas de tecnomante" +msgstr[1] "cinturones de herramientas de tecnomante" +msgstr[2] "cinturones de herramientas de tecnomante" -#. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of nature and trees on it. It is " -"necessary for Druids to channel magic into their crafts." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" +"Es un cinturón utilitario de cuero, que crea instantáneamente cualquier " +"herramienta que necesites. Hay que activarlo para enfundar y desenfundar un " +"arma." -#: data/mods/Magiclysm/items/class_runes.json -msgid "Animist rune" -msgid_plural "Animist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of summoners on it. It is necessary for" -" Animists to channel magic into their crafts." +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "alchemist rune" -msgid_plural "alchemist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of alchemy and potions on it. While " -"versatile in use, the lack of attunement to any school prevents creation of " -"more advanced recipes." +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "huevo de oso lechuza" @@ -232906,7 +232533,7 @@ msgstr[1] "huevos de oso lechuza" msgstr[2] "huevos de oso lechuza" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -232920,7 +232547,7 @@ msgstr "" "pequeño. Tal vez podrías abrirlo cuidadosamente para conseguir su bondadoso " "líquido dorado." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "yema de huevo de oso lechuza" @@ -232928,11 +232555,11 @@ msgstr[1] "yemas de huevo de oso lechuza" msgstr[2] "yemas de huevo de oso lechuza" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "Es el líquido interior de un huevo de oso lechuza. Buena comida." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "bola de pelo" @@ -232940,14 +232567,14 @@ msgstr[1] "bolas de pelo" msgstr[2] "bolas de pelo" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" "Es un bola grande y desagradable de saliva y pelos de animal. no te la " "tragues." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "carne de dragón" @@ -232955,7 +232582,7 @@ msgstr[1] "carne de dragón" msgstr[2] "carne de dragón" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" @@ -232965,7 +232592,7 @@ msgstr "" "manera que otras carnes, es obvio que todavía retiene algunas de sus " "propiedades mágicas." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "grithongo" @@ -232973,14 +232600,14 @@ msgstr[1] "grithongos" msgstr[2] "grithongos" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" "Son hongos cosechados de un aullador muerto. Puede usarse en la realización " "de pociones." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "carne purificada" @@ -232988,7 +232615,7 @@ msgstr[1] "carnes purificadas" msgstr[2] "carnes purificadas" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." @@ -232996,7 +232623,7 @@ msgstr "" "Idéntico a la carne de laboratorio preCataclismo. Debería ser excelente, " "pero de alguna manera, solo es comestible." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "carne impura" @@ -233004,7 +232631,7 @@ msgstr[1] "carnes impuras" msgstr[2] "carnes impuras" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " @@ -233014,7 +232641,7 @@ msgstr "" "querés ofrecerle esto a tus amigos, aunque si lo hacés, no van a notar la " "diferencia por un rato." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -233022,13 +232649,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -233036,13 +232663,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -233050,13 +232677,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -233064,4648 +232691,5297 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "cinturón de fuerza +2" -msgstr[1] "cinturones de fuerza +2" -msgstr[2] "cinturones de fuerza +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "cinturón de apuro" -msgstr[1] "cinturones de apuro" -msgstr[2] "cinturones de apuro" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" -msgstr[0] "sombrero de mago" -msgstr[1] "sombreros de mago" -msgstr[2] "sombreros de mago" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -"Es un sombrero puntiagudo azul con estrellas cosidas. Al usarlo, aumenta tu " -"regeneración de maná." -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "par de guantes mágicos de piedra" +msgstr[1] "pares de guantes mágicos de piedra" +msgstr[2] "pares de guantes mágicos de piedra" + +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" +"Es una sustancia mágica similar a la piedra pero flexible, que puede usarse " +"para protección o como arma." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" + +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "lámpara mágica" +msgstr[1] "lámparas mágicas" +msgstr[2] "lámparas mágicas" + +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "Es una fuente de luz mágica que ilumina un área pequeña." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "" + +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "luz mágica" +msgstr[1] "luces mágicas" +msgstr[2] "luces mágicas" + +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." +msgstr "Es una pequeña luz mágica que podés usar para leer." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "escudo grande de hielo mágico" +msgstr[1] "escudos grandes de hielo mágico" +msgstr[2] "escudos grandes de hielo mágico" + +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "" +"Es un escudo liviano pero resistente, fabricado íntegramente de hielo " +"mágico." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "coberturas de hielo resbaladizo" +msgstr[1] "coberturas de hielo resbaladizo" +msgstr[2] "coberturas de hielo resbaladizo" + +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" +"Es una revestimiento de hielo mágico resbaladizo que se usa en los pies. Es " +"bastante rápido para desplazarse en piso liso, pero muy difícil de usar en " +"terreno irregular." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "cinturón de herramientas de tecnomante" -msgstr[1] "cinturones de herramientas de tecnomante" -msgstr[2] "cinturones de herramientas de tecnomante" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "bolsa de carne" +msgstr[1] "bolsas de carne" +msgstr[2] "bolsas de carne" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -"Es un cinturón utilitario de cuero, que crea instantáneamente cualquier " -"herramienta que necesites. Hay que activarlo para enfundar y desenfundar un " -"arma." +"Es una gran bolsa de carne resistente en tu espalda, llena de pequeños " +"tentáculos que agarran cualquier cosa que pongas dentro. Cambia y se ajusta " +"para minimizar la incomodidad." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +"You squeeze the seed in your palm, and it begins to turn to a fine dust." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" -msgstr[0] "par de botas de siete leguas" -msgstr[1] "pares de botas de siete leguas" -msgstr[2] "pares de botas de siete leguas" - -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -"Son unas botas de cuero gastado y acero, que son extremadamente cómodas y " -"resistentes. Parece que tienen mucho uso y que lo seguirá teniendo. Hacen " -"que tu movimiento sea mucho más fácil." - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "par de botas de apuro" -msgstr[1] "pares de botas de apuro" -msgstr[2] "pares de botas de apuro" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "aura de ofuscamiento" +msgstr[1] "auras de ofuscamiento" +msgstr[2] "auras de ofuscamiento" + +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" +"Es una capa de magia envolvente e invisible que distorsiona la luz alrededor" +" de tu cuerpo. Te permite esquivar dos ataques extra por turno." -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" -msgstr[0] "par de botas aislantes" -msgstr[1] "pares de botas aislantes" -msgstr[2] "pares de botas aislantes" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "aura de resistencia al ácido" +msgstr[1] "auras de resistencia al ácido" +msgstr[2] "auras de resistencia al ácido" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." +msgstr "Es una capa envolvente e invisible que protege contra el ácido." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "aura de gran resistencia al ácido" +msgstr[1] "auras de gran resistencia al ácido" +msgstr[2] "auras de gran resistencia al ácido" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "armadura de escarcha" +msgstr[1] "armaduras de escarcha" +msgstr[2] "armaduras de escarcha" + +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "Es una fina capa de hielo mágico que cubre el cuerpo entero." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "cobertura de piedra" +msgstr[1] "cobertura de piedra" +msgstr[2] "cobertura de piedra" + +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -"Son unas botas de cuero con pequeñas runas que parecen rellenas de goma, " -"extremadamente cómodas y resistentes. Cuando las usás, sos inmune al daño " -"por electricidad." +"Es una fina capa de una piedra que casi parece fluida, y cubre el cuerpo " +"entero." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "quemadura de sobrecarga" +msgstr[1] "quemaduras de sobrecarga" +msgstr[2] "quemaduras de sobrecarga" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "Ay, ¡esto es muy elegante! Pero ya va a pasar, ¿no?" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "aura de protección" +msgstr[1] "auras de protección" +msgstr[2] "auras de protección" + +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" +"Es una capa envolvente e invisible de aura mágica que te protege del " +"ambiente." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" + +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." msgstr "" +"Es la sangre de un dragón, emite calor y al mirarla podés ver patrones " +"formándose y despareciendo como si estuvieras mirando un fuego." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" +"Es sangre que ha sido llena de energía arcana. Libera un débil brillo azul." + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "maná cristalizado" +msgstr[1] "maná cristalizado" +msgstr[2] "maná cristalizado" + +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" +"Es un poco de maná cristalizado. Puede ser puesto en cristales recargables " +"de maná, pero no puede ser descargado." + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "garrote +1s" -msgstr[1] "garrotes +1s" -msgstr[2] "garrotes +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" +msgstr[0] "conglomerado de oricalco" +msgstr[1] "conglomerados de oricalco" +msgstr[2] "conglomerados de oricalco" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" -msgstr[0] "garrote +2s" -msgstr[1] "garrotes +2s" -msgstr[2] "garrotes +2s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" +"Es un pedazo de oricalco crudo. Necesita ser reformado en un lingote para " +"poder utilizarse." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" +msgstr[0] "pedacito de oricalco" +msgstr[1] "pedacitos de oricalco" +msgstr[2] "pedacitos de oricalco" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" +"Es un pedacito de oricalco que se rompió de un pedazo más grande. Necesita " +"ser reformado en un lingote para poder utilizarse." + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" +msgstr[0] "mercurio líquido" +msgstr[1] "mercurio líquido" +msgstr[2] "mercurio líquido" + +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" +"Mercurio líquido elemental. Es conocido por su utilización en los " +"termómetros." + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" -msgstr[0] "espada larga +1s" -msgstr[1] "espadas largas +1s" -msgstr[2] "espadas largas +1s" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "espadas largas +1s" -msgstr[1] "espadas largas +2s" -msgstr[2] "espadas largas +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Mjölnir" +msgstr[1] "Mjölnirs" +msgstr[2] "Mjölnirs" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" -msgstr[0] "maza +1s" -msgstr[1] "mazas +1s" -msgstr[2] "mazas +1s" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "maza +2s" -msgstr[1] "mazas +2s" -msgstr[2] "mazas +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "Gungnir" +msgstr[1] "Gungnirs" +msgstr[2] "Gungnirs" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "martillo de guerra +1s" -msgstr[1] "martillos de guerra +1s" -msgstr[2] "martillos de guerra +1s" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" -msgstr[0] "martillo de guerra +2s" -msgstr[1] "martillos de guerra +2s" -msgstr[2] "martillos de guerra +2s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "bate +1s" -msgstr[1] "bates +1s" -msgstr[2] "bates +1s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "Laevateinn" +msgstr[1] "Laevateinns" +msgstr[2] "Laevateinns" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "bate +2s" -msgstr[1] "bates +2s" -msgstr[2] "bates +2s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" +msgstr[0] "suero concentrado de maná" +msgstr[1] "sueros concentrados de maná" +msgstr[2] "sueros concentrados de maná" + +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" +"Es una poción de maná muy concentrada. No estás seguro de qué efectos " +"tendrá..." + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" +msgstr[0] "muñeco vudú zombi" +msgstr[1] "muñecos vudú zombi" +msgstr[2] "muñecos vudú zombi" + +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"Es un efigie notablemente precisas de un humano muerto viviente, incluye " +"pedazos de hueso y órganos. La magia necromántica retrasa la putrefacción, " +"pero no dura para siempre. Pincharlo con una aguja puede forzarlo a que te " +"obedezca." + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" +msgstr[0] "muñeco vudú osificado" +msgstr[1] "muñecos vudú osificado" +msgstr[2] "muñecos vudú osificado" + +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" +"Es un efigie notablemente precisas de un humano muerto viviente, cubierto de" +" hueso e incluye pedazos de órganos. La magia necromántica retrasa la " +"putrefacción, pero no dura para siempre. Pincharlo con una aguja puede " +"forzarlo a que te obedezca." + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" +msgstr[0] "muñeco vudú puma" +msgstr[1] "muñecos vudú puma" +msgstr[2] "muñecos vudú puma" + +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"Es un efigie notablemente precisas de un puma muerto viviente, completado " +"con piel, huesos y órganos. La magia necromántica retrasa la putrefacción, " +"pero no dura para siempre. Pincharlo con una aguja puede forzarlo a que te " +"obedezca." + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" +"No podés comprar esto, ¿así que la tenés que guardar hasta el último jefe! " +"Pensandolo bien, ¡ni siquiera en ese momento la gastes!" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "Es una poción Gracia Gatuna. Incrementará tu destreza por 10 minutos." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "Es una poción Fuerza Ogro. Incrementará tu fuerza por 10 minutos." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" +"Es una poción Vista de Águila. Incrementará tu percepción por 10 minutos." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" +" Es una poción Astucia de Zorro. Incrementará tu inteligencia por 10 " +"minutos." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" +msgstr[0] "poción Restoración Retorcida" +msgstr[1] "pociones Restoración Retorcida" +msgstr[2] "pociones Restoración Retorcida" + +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" +"Este líquido de olor nauseabundo simula la regeneración de muertos " +"vivientes, acelerando tu corazón a niveles peligrosos. Tomarlo en peligro o " +"en condiciones críticas puede ser letal." + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "poción Restoración Retorcida Mejorada" +msgstr[1] "pociones Restoración Retorcida Mejorada" +msgstr[2] "pociones Restoración Retorcida Mejorada" + +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" +"Este líquido de olor nauseabundo simula la regeneración de muertos " +"vivientes, acelerando tu corazón a niveles peligrosos. Tomarlo en peligro o " +"en condiciones críticas puede ser letal. Las técnicas mejoradas de infusión," +" disminuyen el esfuerzo del proceso." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" +msgstr[0] "Dragones Negros: Ruinas de Pantano" +msgstr[1] "copias de Dragones Negros: Ruinas de Pantano" +msgstr[2] "copias de Dragones Negros: Ruinas de Pantano" + +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" +"Este libro detalla los dragones negros: el más maléfico de los dragones, que" +" vive en ruinas generalmente en pantanos. Inmune al ácido y además escupe " +"ácido. El libro también detalla cómo preparar su pellejo para fabricar " +"armaduras que tengan algo de esa resistencia al ácido." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "Guía de Principiante en Alquimia" +msgstr[1] "copias de Guía de Principiante en Alquimia" +msgstr[2] "copias de Guía de Principiante en Alquimia" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" +"Es un tomo de tapa blanda acerca del arte de la magia líquida, pero no " +"incluye alcohol." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgstr[0] "Guía de Vinculación de Almas en Necromancia" +msgstr[1] "copias de Guía de Vinculación de Almas en Necromancia" +msgstr[2] "copias de Guía de Vinculación de Almas en Necromancia" + +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" +"Es un tomo de tapa blanda del arte de vincular las almas de los muertos " +"vivientes en muñecos, y también de emular su factor de curación." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" +msgstr[0] "Magitek Ilustrado" +msgstr[1] "copias de Magitek Ilustrado" +msgstr[2] "copias de Magitek Ilustrado" + +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" +"Es un tomo de tapa blanda del arte de combinar tecnología moderna con magia." +" Tiene una advertencia en la contratapa: 'Industrias Cannith no se hace " +"responsable de cualquier mal funcionamiento o accidente de cualquiera de los" +" productos aquí mencionado'." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" +msgstr[0] "Armas de Asgard y más" +msgstr[1] "copias de Armas de Asgard y más" +msgstr[2] "copias de Armas de Asgard y más" + +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" +"Es un libro decorado que parece estar escrito con runas nórdicas. Basándonos" +" en las detalladas ilustraciones, parece contener información acerca de la " +"fabricación de varias armas utilizadas por los dioses." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" +msgstr[0] "Cocinando con Veneno" +msgstr[1] "copias de Cocinando con Veneno" +msgstr[2] "copias de Cocinando con Veneno" + +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" +"Es un libro con tapas de cuero con una caldera estampada en la tapa. " +"Adentro, describe las maneras de purificar mágicamente la comida." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" +msgstr[0] "Metales Legendarios" +msgstr[1] "copias de Metales Legendarios" +msgstr[2] "copias de Metales Legendarios" + +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" +"Es un libro con una cubierta de latón. Dice enseñar cómo hacer metales " +"mágicos como el oricalco. Es una lectura áspera incluso para ser un libro de" +" alquimia." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" +msgstr[0] "Protección contra Bestias Mágicas" +msgstr[1] "copias de Protección contra Bestias Mágicas" +msgstr[2] "copias de Protección contra Bestias Mágicas" + +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" +"Es un libro con tapas de cuero con la imagen de un escudo aguantando el " +"fuego de un dragón en la tapa. Adentro, tiene muchas maneras de convertir la" +" piel y el pellejo de un monstruo en equipo de protección." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" +msgstr[0] "Pergamino para Invocar Esqueleto" +msgstr[1] "Pergaminos para Invocar Esqueletos" +msgstr[2] "Pergaminos para Invocar Esqueletos" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" - -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" - -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" - -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" - -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" - -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" -msgstr[0] "frasco sin fin" -msgstr[1] "frascos sin fin" -msgstr[2] "frascos sin fin" - -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" -"Abrís el frasco y descubrís que está lleno de un dulce, dulce ¡whisky!" - -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "El frasco todavía no se terminó de volver a llenar." - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" -msgstr[0] "anillo de protección +2" -msgstr[1] "anillos de protección +2" -msgstr[2] "anillos de protección +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" -msgstr[0] "anillo de protección +4" -msgstr[1] "anillos de protección +4" -msgstr[2] "anillos de protección +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" -msgstr[0] "anillo de protección +6" -msgstr[1] "anillos de protección +6" -msgstr[2] "anillos de protección +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" -msgstr[0] "anillo de protección +8" -msgstr[1] "anillos de protección +8" -msgstr[2] "anillos de protección +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" -msgstr[0] "token mágico" -msgstr[1] "tokens mágicos" -msgstr[2] "tokens mágicos" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" - -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" - -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" - -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" - -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" - -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" - -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" - -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" - -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" - -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" - -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This slim book almost seems to be made from ice, it's cold to the touch." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" +msgstr[0] "caldera de purificación" +msgstr[1] "calderas de purificación" +msgstr[2] "calderas de purificación" + +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" +"Esta caldera, hecha de quitina de araña demoníaca, parece absorber la luz. " +"Puede contener hasta 16 litros de material y absorberá las pociones. Puede " +"tener otras propiedades que hay que descubrir." + +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "pulsera de cobre de infusión" +msgstr[1] "pulseras de cobre de infusión" +msgstr[2] "pulseras de cobre de infusión" + +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" +"Esta pulsera tiene runas grabadas en ella. Sientes un cierto aire místico " +"cuando la miras. Podría ser útil para imbuir maná en un material." + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "pulsera de plata de infusión" +msgstr[1] "pulseras de plata de infusión" +msgstr[2] "pulseras de plata de infusión" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "diadema de cobre" +msgstr[1] "diademas de cobre" +msgstr[2] "diademas de cobre" + +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" +"Es una banda de madera con adornos de cobre, que se usa en la cabeza. Al " +"estar en contacto con tus sienes te hace sentir muy calmado." + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "sombrero de mago" +msgstr[1] "sombreros de mago" +msgstr[2] "sombreros de mago" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "" +"Es un sombrero puntiagudo azul con estrellas cosidas. Al usarlo, aumenta tu " +"regeneración de maná." + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" +msgstr "" + +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "" + +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "cinturón de fuerza +2" +msgstr[1] "cinturones de fuerza +2" +msgstr[2] "cinturones de fuerza +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "par de botas de siete leguas" +msgstr[1] "pares de botas de siete leguas" +msgstr[2] "pares de botas de siete leguas" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." +msgstr "" +"Son unas botas de cuero gastado y acero, que son extremadamente cómodas y " +"resistentes. Parece que tienen mucho uso y que lo seguirá teniendo. Hacen " +"que tu movimiento sea mucho más fácil." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "par de botas de apuro" +msgstr[1] "pares de botas de apuro" +msgstr[2] "pares de botas de apuro" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "par de botas aislantes" +msgstr[1] "pares de botas aislantes" +msgstr[2] "pares de botas aislantes" + +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." +msgstr "" +"Son unas botas de cuero con pequeñas runas que parecen rellenas de goma, " +"extremadamente cómodas y resistentes. Cuando las usás, sos inmune al daño " +"por electricidad." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" -msgstr[0] "par de guantes mágicos de piedra" -msgstr[1] "pares de guantes mágicos de piedra" -msgstr[2] "pares de guantes mágicos de piedra" - -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -"Es una sustancia mágica similar a la piedra pero flexible, que puede usarse " -"para protección o como arma." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "lámpara mágica" -msgstr[1] "lámparas mágicas" -msgstr[2] "lámparas mágicas" - -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "Es una fuente de luz mágica que ilumina un área pequeña." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "luz mágica" -msgstr[1] "luces mágicas" -msgstr[2] "luces mágicas" - -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "Es una pequeña luz mágica que podés usar para leer." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" -msgstr[0] "escudo grande de hielo mágico" -msgstr[1] "escudos grandes de hielo mágico" -msgstr[2] "escudos grandes de hielo mágico" - -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -"Es un escudo liviano pero resistente, fabricado íntegramente de hielo " -"mágico." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" -msgstr[0] "coberturas de hielo resbaladizo" -msgstr[1] "coberturas de hielo resbaladizo" -msgstr[2] "coberturas de hielo resbaladizo" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" +msgstr[0] "garrote +1s" +msgstr[1] "garrotes +1s" +msgstr[2] "garrotes +1s" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" -"Es una revestimiento de hielo mágico resbaladizo que se usa en los pies. Es " -"bastante rápido para desplazarse en piso liso, pero muy difícil de usar en " -"terreno irregular." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "garrote +2s" +msgstr[1] "garrotes +2s" +msgstr[2] "garrotes +2s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" -msgstr[0] "bolsa de carne" -msgstr[1] "bolsas de carne" -msgstr[2] "bolsas de carne" - -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" -"Es una gran bolsa de carne resistente en tu espalda, llena de pequeños " -"tentáculos que agarran cualquier cosa que pongas dentro. Cambia y se ajusta " -"para minimizar la incomodidad." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" +msgstr[0] "espada larga +1s" +msgstr[1] "espadas largas +1s" +msgstr[2] "espadas largas +1s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "espadas largas +1s" +msgstr[1] "espadas largas +2s" +msgstr[2] "espadas largas +2s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "maza +1s" +msgstr[1] "mazas +1s" +msgstr[2] "mazas +1s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "maza +2s" +msgstr[1] "mazas +2s" +msgstr[2] "mazas +2s" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" -msgstr[0] "aura de ofuscamiento" -msgstr[1] "auras de ofuscamiento" -msgstr[2] "auras de ofuscamiento" - -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" -"Es una capa de magia envolvente e invisible que distorsiona la luz alrededor" -" de tu cuerpo. Te permite esquivar dos ataques extra por turno." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" -msgstr[0] "aura de resistencia al ácido" -msgstr[1] "auras de resistencia al ácido" -msgstr[2] "auras de resistencia al ácido" - -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "Es una capa envolvente e invisible que protege contra el ácido." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" -msgstr[0] "aura de gran resistencia al ácido" -msgstr[1] "auras de gran resistencia al ácido" -msgstr[2] "auras de gran resistencia al ácido" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" -msgstr[0] "armadura de escarcha" -msgstr[1] "armaduras de escarcha" -msgstr[2] "armaduras de escarcha" - -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "Es una fina capa de hielo mágico que cubre el cuerpo entero." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" -msgstr[0] "cobertura de piedra" -msgstr[1] "cobertura de piedra" -msgstr[2] "cobertura de piedra" - -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" -"Es una fina capa de una piedra que casi parece fluida, y cubre el cuerpo " -"entero." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" -msgstr[0] "quemadura de sobrecarga" -msgstr[1] "quemaduras de sobrecarga" -msgstr[2] "quemaduras de sobrecarga" - -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "Ay, ¡esto es muy elegante! Pero ya va a pasar, ¿no?" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "martillo de guerra +1s" +msgstr[1] "martillos de guerra +1s" +msgstr[2] "martillos de guerra +1s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" -msgstr[0] "aura de protección" -msgstr[1] "auras de protección" -msgstr[2] "auras de protección" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "martillo de guerra +2s" +msgstr[1] "martillos de guerra +2s" +msgstr[2] "martillos de guerra +2s" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" -"Es una capa envolvente e invisible de aura mágica que te protege del " -"ambiente." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "bate +1s" +msgstr[1] "bates +1s" +msgstr[2] "bates +1s" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "bate +2s" +msgstr[1] "bates +2s" +msgstr[2] "bates +2s" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" -"Es la sangre de un dragón, emite calor y al mirarla podés ver patrones " -"formándose y despareciendo como si estuvieras mirando un fuego." - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" -"Es sangre de una criatura corrompida. La superficie de este barro negro se " -"mueve lentamente como si fuera agitado por una leve brisa." - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" -"Es sangre que ha sido llena de energía arcana. Libera un débil brillo azul." - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "maná cristalizado" -msgstr[1] "maná cristalizado" -msgstr[2] "maná cristalizado" - -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" -"Es un poco de maná cristalizado. Puede ser puesto en cristales recargables " -"de maná, pero no puede ser descargado." - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Mjölnir" -msgstr[1] "Mjölnirs" -msgstr[2] "Mjölnirs" - -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "Gungnir" -msgstr[1] "Gungnirs" -msgstr[2] "Gungnirs" - -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "Laevateinn" -msgstr[1] "Laevateinns" -msgstr[2] "Laevateinns" - -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" -msgstr[0] "conglomerado de oricalco" -msgstr[1] "conglomerados de oricalco" -msgstr[2] "conglomerados de oricalco" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" -"Es un pedazo de oricalco crudo. Necesita ser reformado en un lingote para " -"poder utilizarse." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" -msgstr[0] "pedacito de oricalco" -msgstr[1] "pedacitos de oricalco" -msgstr[2] "pedacitos de oricalco" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" -"Es un pedacito de oricalco que se rompió de un pedazo más grande. Necesita " -"ser reformado en un lingote para poder utilizarse." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" -msgstr[0] "mercurio líquido" -msgstr[1] "mercurio líquido" -msgstr[2] "mercurio líquido" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" -"Mercurio líquido elemental. Es conocido por su utilización en los " -"termómetros." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" -msgstr[0] "suero concentrado de maná" -msgstr[1] "sueros concentrados de maná" -msgstr[2] "sueros concentrados de maná" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" -"Es una poción de maná muy concentrada. No estás seguro de qué efectos " -"tendrá..." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" -msgstr[0] "Dragones Negros: Ruinas de Pantano" -msgstr[1] "copias de Dragones Negros: Ruinas de Pantano" -msgstr[2] "copias de Dragones Negros: Ruinas de Pantano" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" -"Este libro detalla los dragones negros: el más maléfico de los dragones, que" -" vive en ruinas generalmente en pantanos. Inmune al ácido y además escupe " -"ácido. El libro también detalla cómo preparar su pellejo para fabricar " -"armaduras que tengan algo de esa resistencia al ácido." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" -msgstr[0] "Guía de Principiante en Alquimia" -msgstr[1] "copias de Guía de Principiante en Alquimia" -msgstr[2] "copias de Guía de Principiante en Alquimia" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" -"Es un tomo de tapa blanda acerca del arte de la magia líquida, pero no " -"incluye alcohol." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" -msgstr[0] "Guía de Vinculación de Almas en Necromancia" -msgstr[1] "copias de Guía de Vinculación de Almas en Necromancia" -msgstr[2] "copias de Guía de Vinculación de Almas en Necromancia" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" -"Es un tomo de tapa blanda del arte de vincular las almas de los muertos " -"vivientes en muñecos, y también de emular su factor de curación." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" -msgstr[0] "Magitek Ilustrado" -msgstr[1] "copias de Magitek Ilustrado" -msgstr[2] "copias de Magitek Ilustrado" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" -"Es un tomo de tapa blanda del arte de combinar tecnología moderna con magia." -" Tiene una advertencia en la contratapa: 'Industrias Cannith no se hace " -"responsable de cualquier mal funcionamiento o accidente de cualquiera de los" -" productos aquí mencionado'." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" -msgstr[0] "Armas de Asgard y más" -msgstr[1] "copias de Armas de Asgard y más" -msgstr[2] "copias de Armas de Asgard y más" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" -"Es un libro decorado que parece estar escrito con runas nórdicas. Basándonos" -" en las detalladas ilustraciones, parece contener información acerca de la " -"fabricación de varias armas utilizadas por los dioses." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" -msgstr[0] "Cocinando con Veneno" -msgstr[1] "copias de Cocinando con Veneno" -msgstr[2] "copias de Cocinando con Veneno" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" -"Es un libro con tapas de cuero con una caldera estampada en la tapa. " -"Adentro, describe las maneras de purificar mágicamente la comida." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" -msgstr[0] "Metales Legendarios" -msgstr[1] "copias de Metales Legendarios" -msgstr[2] "copias de Metales Legendarios" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" -"Es un libro con una cubierta de latón. Dice enseñar cómo hacer metales " -"mágicos como el oricalco. Es una lectura áspera incluso para ser un libro de" -" alquimia." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" -msgstr[0] "Protección contra Bestias Mágicas" -msgstr[1] "copias de Protección contra Bestias Mágicas" -msgstr[2] "copias de Protección contra Bestias Mágicas" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" -"Es un libro con tapas de cuero con la imagen de un escudo aguantando el " -"fuego de un dragón en la tapa. Adentro, tiene muchas maneras de convertir la" -" piel y el pellejo de un monstruo en equipo de protección." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" -msgstr[0] "Pergamino para Invocar Esqueleto" -msgstr[1] "Pergaminos para Invocar Esqueletos" -msgstr[2] "Pergaminos para Invocar Esqueletos" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" +msgstr[0] "frasco sin fin" +msgstr[1] "frascos sin fin" +msgstr[2] "frascos sin fin" + +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" +"Abrís el frasco y descubrís que está lleno de un dulce, dulce ¡whisky!" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "El frasco todavía no se terminó de volver a llenar." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" +msgstr[0] "anillo de protección +2" +msgstr[1] "anillos de protección +2" +msgstr[2] "anillos de protección +2" + +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" +msgstr[0] "anillo de protección +4" +msgstr[1] "anillos de protección +4" +msgstr[2] "anillos de protección +4" + +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" +msgstr[0] "anillo de protección +6" +msgstr[1] "anillos de protección +6" +msgstr[2] "anillos de protección +6" + +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" +msgstr[0] "anillo de protección +8" +msgstr[1] "anillos de protección +8" +msgstr[2] "anillos de protección +8" + +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" +msgstr[0] "token mágico" +msgstr[1] "tokens mágicos" +msgstr[2] "tokens mágicos" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" -msgstr[0] "caldera de purificación" -msgstr[1] "calderas de purificación" -msgstr[2] "calderas de purificación" - -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" -"Esta caldera, hecha de quitina de araña demoníaca, parece absorber la luz. " -"Puede contener hasta 16 litros de material y absorberá las pociones. Puede " -"tener otras propiedades que hay que descubrir." - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -237713,14 +237989,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -237728,20 +238004,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -237749,7 +238029,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -237758,7 +238038,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -237766,7 +238046,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -237774,7 +238054,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -237782,19 +238062,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -237802,14 +238082,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -237817,7 +238097,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -237826,7 +238106,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -237834,14 +238114,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -237849,14 +238129,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -237864,14 +238144,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -237879,14 +238159,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -237894,13 +238174,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -237908,7 +238188,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -237916,7 +238196,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -237924,12 +238204,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -237937,13 +238217,94 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -237951,7 +238312,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -237962,7 +238323,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -237970,17 +238331,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -237988,7 +238349,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -237998,7 +238359,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -238006,7 +238367,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -238015,7 +238376,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -238023,13 +238384,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -238037,16 +238398,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -238054,19 +238416,19 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -238074,7 +238436,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -238083,19 +238445,19 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -238103,7 +238465,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -238112,7 +238474,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -238120,14 +238482,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -238135,13 +238497,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -238149,13 +238511,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -238163,13 +238525,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -238177,144 +238539,192 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "Sanador" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -238322,222 +238732,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "Mata 150 Zombis" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "dulce" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "tecnólogo" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "sanador" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -238545,48 +238955,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -238594,12 +239004,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -238607,12 +239017,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "Druida" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -238620,103 +239030,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -238725,204 +239135,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "Regeneración de Maná" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "Tu regeneración de maná natural es más rápida de lo normal." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -238930,24 +239340,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "núcleo de energía de maná" @@ -238955,48 +239365,68 @@ msgstr[1] "núcleos de energía de maná" msgstr[2] "núcleos de energía de maná" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "Ver esto es un bug." -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "Pantano" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Instalación Manual de Biónico" @@ -245930,6 +246360,10 @@ msgstr "Alternar examinar" msgid "Toggle safe fuel mod" msgstr "Alternar modo de combustible seguro" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "Alternar modo de inicio automático" @@ -246122,10 +246556,6 @@ msgstr "Soltar objeto al lado" msgid "View/Activate Bionics" msgstr "Ver/Activar Biónicos" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Ver/Activar Mutaciones" @@ -252288,6 +252718,7 @@ msgstr "BIÓNICOS" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -252356,6 +252787,10 @@ msgstr "ENCENDIDO" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -253212,6 +253647,10 @@ msgstr "%s no tiene una mano libre como para ponerse eso." msgid "Can't wear more than one %s!" msgstr "¡No puedes llevar más de un/a %s!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -269260,7 +269699,12 @@ msgid "Test which group?" msgstr "¿Qué grupo quieres probar?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -275344,7 +275788,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -280595,10 +281045,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "¡%1$s arroja al suelo al %2$s!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -284862,7 +285313,7 @@ msgstr "Mundo por defecto" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -292851,6 +293302,11 @@ msgstr "La sembradora del %s se apaga debido a la baja temperatura." msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -292992,6 +293448,16 @@ msgstr "El motor de %s emite un sonido como si estornudara." msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -293588,11 +294054,6 @@ msgstr "Guardas meticulosamente el/la %s en su forma portátil." msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "%s plegado" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/fr.po b/lang/po/fr.po index 939d23707558..5e163baa8da4 100644 --- a/lang/po/fr.po +++ b/lang/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: 0Monet, 2024\n" "Language-Team: French (https://app.transifex.com/bn-team/teams/113585/fr/)\n" "MIME-Version: 1.0\n" @@ -7769,6 +7769,17 @@ msgstr "" msgid "You can see through everything!" msgstr "Vous pouvez voir à travers n'importe quoi !" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -11137,7 +11148,7 @@ msgstr "Allumer" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "Éteindre" @@ -11585,75 +11596,91 @@ msgstr "CHARGEURS" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "MUNITIONS" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "ARMES" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "OUTILS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "VÊTEMENTS" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "NOURRITURE" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "MÉDICAMENTS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "LIVRES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MODS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "MUTAGÈNES" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "BIONIQUES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "PIÈCES DE VÉHICULES" @@ -11667,51 +11694,89 @@ msgstr "PIÈCES DE VÉHICULES" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "AUTRES" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "CARBURANT" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "GRAINES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "PRODUITS CHIMIQUES" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "PIÈCES DE RECHANGE" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "CONTENEURS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "ARTÉFACTS" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "OBJETS PORTÉS" @@ -12454,12 +12519,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12501,6 +12566,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "Pas de prise automatique" @@ -12958,7 +13194,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Eskrima" @@ -12993,7 +13229,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Escrime" @@ -13030,7 +13266,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -13204,7 +13440,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Krav Maga" @@ -13322,7 +13558,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13397,7 +13633,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Ninjutsu" @@ -13579,7 +13815,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Silat" @@ -14767,7 +15003,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "cabossé" @@ -14776,22 +15012,22 @@ msgid "gouged" msgstr "crevé" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "rayé" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "coupé" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "fendu" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "brisé" @@ -14804,7 +15040,7 @@ msgid "bent" msgstr "tordu" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "brisé" @@ -14816,7 +15052,7 @@ msgstr "détruite" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "ébréché" @@ -14829,7 +15065,7 @@ msgid "Brass" msgstr "Laiton" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "marqué" @@ -14847,7 +15083,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "troué" @@ -14856,12 +15092,12 @@ msgid "torn" msgstr "déchiré" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "lacéré" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "en lambeaux" @@ -14921,7 +15157,7 @@ msgstr "Chair" msgid "bruised" msgstr "contusionné" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "tranché" @@ -15346,7 +15582,7 @@ msgstr "auto" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19942,12 +20178,12 @@ msgstr "" "Au lieu de se plaindre de vos honoraires, vos clients essayent de manger " "votre cervelle. Vous ne savez dire lequel est le pire." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Prêtre" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Prêtresse" @@ -19980,18 +20216,18 @@ msgstr "" "sont tous morts vous devriez trouver quelque chose de plus tangible pour " "vous protéger." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Kannushi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Kannushi" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20003,7 +20239,7 @@ msgstr "" "esprits des morts habitaient le sanctuaire, et non leurs corps pourrissants." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20014,12 +20250,12 @@ msgstr "" "exécutant des rituels et des tâches sacrées. Vous préfériez quand seuls les " "esprits des morts habitaient le sanctuaire, et non leurs corps pourrissants." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "Imam" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "Mourchida" @@ -20052,18 +20288,18 @@ msgstr "" "prières. Avant le cataclysme ils venaient de loin pour vous écouter, mais " "maintenant c'est pour manger votre cervelle." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "Rabbin" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "Rabbin" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -20071,19 +20307,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "Gourou" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "Gourou" @@ -20112,12 +20348,12 @@ msgstr "" "temps normal vous pourriez répondre à toute question, mais là vous ne savez " "pas quoi faire avec ces zombies affamés." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "Prédicateur" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "Prédicatrice" @@ -20952,15 +21188,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "Skateur" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "Skateuse" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20970,7 +21206,7 @@ msgstr "" "Vous adorez le skate! Au moins les gens ne peuvent plus vous dire que vous " "ne pouvez rouler ici." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20980,6 +21216,34 @@ msgstr "" "Vous adorez le skate! Au moins les gens ne peuvent plus vous dire que vous " "ne pouvez rouler ici." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -28379,7 +28643,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "aiguille incurvée" @@ -28497,7 +28760,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "enclume" @@ -28565,7 +28827,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "papier bulle" @@ -28587,7 +28848,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "lit de camp" @@ -28596,7 +28856,6 @@ msgstr[2] "lits de camp" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "entonnoir" @@ -28605,7 +28864,6 @@ msgstr[2] "entonnoirs" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "entonnoir de fortune" @@ -28625,8 +28883,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "piège à ours" @@ -28660,7 +28917,6 @@ msgid "tripwire" msgstr "fil de détente" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -28668,7 +28924,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "piège arbalète" @@ -28713,7 +28968,6 @@ msgid "Swinnng!" msgstr "Vlannn!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "mine terrestre" @@ -28732,7 +28986,6 @@ msgid "buried land mine" msgstr "mine terrestre enterrée" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "socle de téléportation" @@ -28778,7 +29031,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "chausse-trape" @@ -28791,7 +29043,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "entonnoir en cuir" @@ -28800,7 +29051,6 @@ msgstr[2] "entonnoirs en cuir" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -28813,7 +29063,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "entonnoir en métal" @@ -29179,7 +29428,8 @@ msgstr "" msgid "Thunder Storm" msgstr "Orage" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Orage et éclairs" @@ -29222,6 +29472,20 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -29301,7 +29565,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "crissement de métal!" @@ -29331,7 +29596,8 @@ msgstr "crissement de métal!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "clong!" @@ -29679,7 +29945,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -29790,8 +30055,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "clac!" @@ -30045,7 +30311,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "crac!" @@ -30073,7 +30339,7 @@ msgstr "crac!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "boum." @@ -30201,7 +30467,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -30262,7 +30527,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -30589,7 +30853,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "bris de verre!" @@ -30676,7 +30940,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -30703,7 +30967,7 @@ msgstr "fracas!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "boum!" @@ -30872,7 +31136,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "grand coup." @@ -31209,7 +31473,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "fracas!" @@ -31226,7 +31490,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "brasero" @@ -31240,7 +31503,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -31256,7 +31518,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -31279,7 +31540,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -31434,7 +31694,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -32297,7 +32556,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "purificateur d'eau" @@ -32715,7 +32973,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -32859,7 +33116,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -32885,7 +33141,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -33436,9 +33691,21 @@ msgstr "" "Un établi solide fait de métal. Il est parfait pour fabriquer des objets " "larges et lourds. " +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -33473,7 +33740,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -33490,7 +33756,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -33989,7 +34254,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "alambic" @@ -34005,7 +34269,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "four à charbon" @@ -34022,7 +34285,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "four à charbon rempli" @@ -34090,7 +34352,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -34129,7 +34390,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -35622,7 +35882,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -36012,7 +36272,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "sable" @@ -36269,7 +36528,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "ciment" @@ -37917,7 +38175,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -38555,7 +38812,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -39589,7 +39845,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "pierre brute" @@ -40511,7 +40766,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "plaque d'égout" @@ -40689,6 +40943,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -40760,7 +41050,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SI VOUS VOYEZ CELA, C'EST UN BOGUE." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "fil" @@ -40775,7 +41064,6 @@ msgstr "" "couture." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -40789,7 +41077,6 @@ msgstr "" "Un tendon vigoureux découpé d'un corps, utilisable en tant que fil à coudre." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -40803,7 +41090,6 @@ msgstr "" "Fibre mince et résistante d'origine végétale. Peut être utilisée comme fil." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "fil de laine" @@ -40828,7 +41114,6 @@ msgid "A cleansing agent made into bars." msgstr "Du nettoyant en barre." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -40843,7 +41128,6 @@ msgstr "" "innombrables." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -40856,7 +41140,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Ce sont des bandes de papier fin conçues pour rouler des cigarettes." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -40907,7 +41190,6 @@ msgstr[1] "suspension de plutonium aqueuse" msgstr[2] "suspension de plutonium aqueuse" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -41188,7 +41470,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -41243,7 +41524,6 @@ msgstr "" "l'air ou l'eau." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "carbure de calcium pré-mixé" @@ -41502,7 +41782,6 @@ msgstr "" "plongée." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "amadou" @@ -41539,7 +41818,6 @@ msgid "A metal die used to play various role-playing games" msgstr "Un dé en métal utilisé pour jouer à différents JdR" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "bronze" @@ -41884,7 +42162,6 @@ msgstr "projectile ferreux pour canon électrique" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "onduleur" @@ -44068,7 +44345,6 @@ msgstr "" "humains comme les bactéries, ou oxydé pour créer du décolorant à papiers." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "des morceaux de soufre" @@ -44083,7 +44359,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "ciment" @@ -44100,7 +44375,6 @@ msgstr "" "Un liant très utile pour la maçonnerie. Il faut juste y ajouter de l'eau." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "calcaire" @@ -44116,7 +44390,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "chaux vive" @@ -44146,7 +44419,6 @@ msgstr "" "n'est bon qu'a en faire du ciment." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "terre" @@ -44179,7 +44451,6 @@ msgstr "" "propriétés alcalines pourraient être utiles." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "sel gemme" @@ -44193,7 +44464,6 @@ msgstr "" "Une poignée de sels gemme. Il pourrait être transformé en sel de table." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -44208,7 +44478,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -44669,7 +44938,6 @@ msgstr "" "combustibles simples de roquettes, tel que le rocket candy." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "nitre" @@ -44686,7 +44954,6 @@ msgstr "" "être raffiné en salpêtre." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -45125,7 +45392,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -45178,7 +45444,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -46989,7 +47254,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -47003,7 +47267,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -47160,7 +47423,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "morceau de fourrure" @@ -47175,7 +47437,6 @@ msgstr "" "chauds." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -47188,7 +47449,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "morceau de cuir" @@ -47203,7 +47463,6 @@ msgstr "" "solides." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "morceau de feutre" @@ -47217,7 +47476,6 @@ msgstr "" "Un petit morceau de feutre. Peut être démonté pour obtenir de la laine." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "morceau de Nomex" @@ -47230,7 +47488,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "Un petit morceau de tissu Nomex, résistant au feu." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -47243,7 +47500,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Un tube de colle forte. Utile dans de nombreuses fabrications." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "colle d'os" @@ -47280,7 +47536,6 @@ msgid "A token, representing fertilization of a plant." msgstr "un jeton, représentant la fertilisation d'une plante" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "chaîne en acier" @@ -47298,7 +47553,6 @@ msgstr "" " arme en bonus." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "morceau de chitine" @@ -47311,7 +47565,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "Un morceau d'exosquelette d'insecte. Il est léger et très résistant." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -47344,7 +47597,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "Morceau de chitine biocalcifiées" @@ -47362,7 +47614,6 @@ msgstr "" "et remarquablement solide." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "paquet de chiffons" @@ -47377,7 +47628,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "paquet de cuir" @@ -47393,7 +47643,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -47485,7 +47734,6 @@ msgstr "" "fossile." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "clé USB" @@ -47498,7 +47746,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "Une clé USB. Utile pour conserver des logiciels." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -47513,7 +47760,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -47529,7 +47775,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "chandelier" @@ -47589,7 +47834,6 @@ msgstr "" "idée." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "spile d'arbre" @@ -47608,7 +47852,6 @@ msgstr "" "de l'hiver et le début du printemps pour récolter la sève." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "câble" @@ -47625,7 +47868,6 @@ msgstr "" " ce que l'on trouve dans les grillages en câbe d'acier." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "fil barbelé" @@ -47638,7 +47880,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "Une longueur de fil rigide garni de barbillons pointues." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -47654,7 +47895,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "barre d'armature" @@ -47724,7 +47964,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "Un fusée au magnésium usagée. En gros, un déchet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "ressort" @@ -47788,7 +48027,6 @@ msgstr "" "est cassée et ne peut plus être déployée." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "élément chauffant" @@ -47803,7 +48041,6 @@ msgstr "" "plaques de cuisson." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -47817,7 +48054,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "télévision" @@ -47830,7 +48066,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "veilleuse" @@ -47875,7 +48110,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "grille-pain" @@ -47890,7 +48124,6 @@ msgstr "" "rechange." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "four micro onde" @@ -47907,7 +48140,6 @@ msgstr "" "baked beans. La ferraille du micro-onde sera utile." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "ordinateur portable" @@ -47920,9 +48152,7 @@ msgid "A broken laptop, basically a paperweight now." msgstr "" "Un ordinateur portable cassé, maintenant ce n'est plus qu'un presse papier." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "eyebot cassé" @@ -47939,9 +48169,7 @@ msgstr "" "Un eyebot cassé. Beaucoup moins menaçant maintenant qu'il ne peut appeler " "des renforts. On peut en récupérer les pièces." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "skitterbot cassé" @@ -47958,7 +48186,6 @@ msgstr "" "silencieux. On peut en récupérer les pièces." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -47973,7 +48200,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "robot policier cassé" @@ -47990,7 +48216,6 @@ msgstr "" "immobile et silencieux. On peut en récupérer les pièces." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -48005,7 +48230,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -48027,7 +48251,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -48042,7 +48265,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "robot anti-émeutes cassé" @@ -48059,7 +48281,6 @@ msgstr "" "plus de gaz. On peut en récupérer les pièces." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -48073,9 +48294,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "robot mineur cassé" @@ -48093,7 +48312,6 @@ msgstr "" "forer quoi que ce soit. Pourrait être démembré pour pièces." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -48108,7 +48326,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" @@ -48116,7 +48333,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" @@ -48124,7 +48340,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -48140,7 +48355,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -48156,9 +48370,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "man hax cassé" @@ -48176,9 +48388,7 @@ msgstr "" "Un robot-lames cassé. Nettement moins menaçant maintenant qu'il est immobile" " et silencieux. On peut en récupérer les pièces." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "hack «grenade» cassé" @@ -48195,9 +48405,7 @@ msgstr "" "Un hack-grenade cassé. Nettement moins menaçant maintenant qu'elle est au " "sol. On peut en récupérer les pièces." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "hacks-grenade cassé" @@ -48214,9 +48422,7 @@ msgstr "" "Un hack-magenta cassé. Le simple fait de regarder l'épave vous fait " "frissonner. On peut en récupérer les pièces." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "hacks-lacrymogène cassé" @@ -48233,9 +48439,7 @@ msgstr "" "Un hack-lacrymogène cassé. Nettement moins menaçant maintenant qu'elle est " "au sol. On peut en récupérer les pièces." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "hacks-EMP cassé" @@ -48252,9 +48456,7 @@ msgstr "" "Un hack-EMP cassé. Nettement moins menaçant maintenant qu'elle est au sol. " "On peut en récupérer les pièces." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "hack-flashbang cassé" @@ -48271,9 +48473,7 @@ msgstr "" "Un hack-flashbang cassé. Nettement moins menaçant maintenant qu'elle est au " "sol. On peut en récupérer les pièces." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "hack-C-4 cassé" @@ -48320,7 +48520,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "carte processeur" @@ -48333,7 +48532,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "Un processeur, utile dans la fabrication électronique complexe." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "mémoire vive (RAM)" @@ -48347,7 +48545,6 @@ msgstr "" "Une barrette de mémoire, utile dans la fabrication électronique complexe." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "convertisseur de puissance" @@ -48362,7 +48559,6 @@ msgstr "" "électroniques." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "circuit amplificateur" @@ -48379,7 +48575,6 @@ msgstr "" " de bricolages électroniques." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "circuit transpondeur" @@ -48396,7 +48591,6 @@ msgstr "" "communications." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "récepteur de signal" @@ -48413,7 +48607,6 @@ msgstr "" " les équipements de communication." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -48428,7 +48621,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "petit écran LCD" @@ -48445,7 +48637,6 @@ msgstr "" "certaines fabrications électroniques." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "lentille de haute qualité" @@ -48463,7 +48654,6 @@ msgstr "" "lumière." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "petite lentille de haute qualité" @@ -48481,7 +48671,6 @@ msgstr "" "diffusion de la lumière. Pourrait être utile pour l'artisanat." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "paire de verres teintés" @@ -48496,7 +48685,6 @@ msgid "" msgstr "Une paire de lunettes teintées, comme celles pour le soleil." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "implant détruit" @@ -48546,7 +48734,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "antenne" @@ -48560,7 +48747,6 @@ msgstr "" "Une fine tige d'aluminium, utile pour beaucoup de recettes électroniques." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "micro moteur" @@ -48577,7 +48763,6 @@ msgstr "" "Utile dans beaucoup de recettes électroniques." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "circuit imprimé" @@ -48594,7 +48779,6 @@ msgstr "" "électroniques sur un substrat isolant. " #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "débri électronique" @@ -48625,7 +48809,6 @@ msgstr "" "Un système conçu pour convertir une station radio en répéteur autonome." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "ventilateur de bureau" @@ -48639,7 +48822,6 @@ msgstr "" "Un petit ventilateur, utilisé pour souffler de l'air à travers une pièce." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "plaque d'armure en céramique" @@ -48670,7 +48852,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "chiffon" @@ -48709,7 +48890,6 @@ msgstr "" "bouillante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -48725,7 +48905,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "horloge" @@ -48751,7 +48930,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "Un petit assortiment d'engrenages et autres petits mécanismes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "carte mémoire SD" @@ -48764,7 +48942,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "Une carte mémoire, utilisée. Ça pourrais valoir le coup." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "carte mémoire SD (vierge)" @@ -48782,7 +48959,6 @@ msgstr "" "l'utiliser pour stocker vos données." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "carte mémoire SD (cryptée)" @@ -48800,7 +48976,6 @@ msgstr "" "peu de chance, le contenu vaut le coup." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "Carte mémoire scientifique" @@ -48836,7 +49011,6 @@ msgstr "" "impossible de le soulever de la bouche d'égout sans un pied-de-biche." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "branche de pin" @@ -48852,7 +49026,6 @@ msgstr "" "Une branche de sapin, suintant de la sève collante et aux épines hérissées." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "pomme de pin" @@ -48892,7 +49065,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -48906,7 +49078,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" @@ -48914,7 +49085,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -48929,7 +49099,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "morceau d'argile" @@ -48942,7 +49111,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "De l'argile fraiche. Utile pour certaines recettes artisanales." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "brique" @@ -48955,7 +49123,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "Une brique cuite dans le feu. Utile pour la maçonnerie." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "mortier" @@ -48968,7 +49135,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Du mortier, prêt a être utilisé pour la construction." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -48993,7 +49159,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -49008,7 +49173,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -49023,7 +49187,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -49036,7 +49199,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "écorce de bouleau" @@ -49049,7 +49211,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "Une feuille solide et résistante a l'eau d'écorce de bouleau" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -49066,7 +49227,6 @@ msgstr "" "d'aspirine." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "diamant" @@ -49079,7 +49239,6 @@ msgid "A sparkling diamond." msgstr "Un diamant éclatant." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -49092,7 +49251,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -49105,7 +49263,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -49118,7 +49275,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -49131,7 +49287,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -49144,7 +49299,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -49157,7 +49311,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -49170,7 +49323,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -49183,7 +49335,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -49196,7 +49347,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -49209,7 +49359,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -49222,7 +49371,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -49235,7 +49383,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -49248,7 +49395,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "cuir traité" @@ -49264,7 +49410,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "fourrure traitée" @@ -49308,7 +49453,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "Une poupée en paille qui représente une femme en robe." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "oreiller" @@ -49321,7 +49465,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Un oreiller pour y reposer votre tête durant votre sommeil." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "oreiller de corps" @@ -49339,7 +49482,6 @@ msgstr "" "l'arrière." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "oreiller en duvet" @@ -49352,7 +49494,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "Un oreiller douillet pour y reposer votre tête durant votre sommeil." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "ours en peluche" @@ -49375,7 +49516,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "paquet d'argent" @@ -49435,7 +49575,7 @@ msgstr[2] "cigares" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "Éteindre" @@ -49568,7 +49708,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "carte de crédit" @@ -49600,7 +49739,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -49613,7 +49751,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "carte de réduction d'essence gold" @@ -49626,7 +49763,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -49639,7 +49775,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "carte d'identification scientifique" @@ -49658,7 +49793,6 @@ msgstr "" "vous pouviez en trouver une." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "carte d'identification militaire" @@ -49677,7 +49811,6 @@ msgstr "" "terminal, si vous le trouviez." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -49693,7 +49826,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -49755,7 +49887,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "ampoule" @@ -49782,7 +49913,6 @@ msgid "A twisted shard of jagged metal." msgstr "Un éclat tordu et dentelé de métal" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "pot de fleurs en argile" @@ -49795,7 +49925,6 @@ msgid "A nice looking clay pot used for planting." msgstr "Un joli pot en argile utilisé pour la plantation." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -49943,7 +50072,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -49957,9 +50085,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -49973,9 +50099,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -49989,9 +50113,8 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" @@ -49999,7 +50122,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -50014,7 +50136,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -50031,7 +50152,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -50093,7 +50213,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -50101,7 +50220,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -50109,7 +50227,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -50317,7 +50434,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -50486,7 +50602,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -50501,7 +50616,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -50516,7 +50630,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -50531,7 +50644,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -50544,7 +50656,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -50559,7 +50670,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -50574,7 +50684,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -50589,7 +50698,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -50602,7 +50710,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -50615,7 +50722,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -51134,7 +51240,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "divers logiciels" @@ -51147,7 +51252,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Un logiciel divers de divertissement. Probablement inutile." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "hackPRO" @@ -51160,7 +51264,6 @@ msgid "A piece of hacking software." msgstr "Un logiciel de hacking." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "MediSoft" @@ -51173,7 +51276,6 @@ msgid "A piece of medical software." msgstr "Un logiciel médical." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MatheMAX" @@ -51186,7 +51288,6 @@ msgid "A piece of mathematical software." msgstr "Un logiciel de mathématiques." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -51199,7 +51300,6 @@ msgid "Medical data on zombie blood." msgstr "Des données médicales sur le sang des zombies." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -51212,7 +51312,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -51225,7 +51324,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -51241,7 +51339,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -51941,7 +52038,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Fermer le cache" @@ -51975,7 +52072,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Ouvrir le cache" @@ -56163,7 +56260,6 @@ msgstr "" "similaire ou utilisé pour fabriquer des munitions." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -56843,7 +56939,8 @@ msgstr "" "une protection accrue mais moins de souplesse et un poids plus lourd. Elle a" " quatre pochettes permettant de transporter des chargeurs." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "carquois" @@ -56859,7 +56956,8 @@ msgstr "" "Un carquois de cuir porté a la hanche pouvant contenir 20 flèches. Activer " "pour stocker des flèches." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "carquois d'écorce de bouleau" @@ -56875,7 +56973,8 @@ msgstr "" "Un carquois tissé à partir de bandes d'écorce de bouleau, porté à la taille," " pouvant contenir 20 flèches. Activer pour stocker les flèches." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "gros carquois" @@ -56894,7 +56993,8 @@ msgstr "" " piétons, mais aucun d'entre EUX n'avaient à combattre des zombies. Activer " "pour stocker des flèches." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "grand carquois d'écorce de bouleau" @@ -57445,7 +57545,7 @@ msgstr[2] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Vous rengainez votre %s" @@ -57729,7 +57829,7 @@ msgstr[2] "ceintures en cuir" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "Mettre votre %s dans votre %s" @@ -57739,14 +57839,14 @@ msgstr "Mettre votre %s dans votre %s" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "Que mettre dans votre ceinture" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "Une ceinture en cuir. Utile pour faire tenir votre pantalon." @@ -60690,7 +60790,7 @@ msgstr[2] "gants du survivant" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -69374,7 +69474,7 @@ msgstr[2] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "Rengainer lame" @@ -78376,8 +78476,8 @@ msgstr[2] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -78525,7 +78625,7 @@ msgstr[2] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -78546,7 +78646,7 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -80549,8 +80649,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "sang" @@ -80559,7 +80658,6 @@ msgstr[2] "sang" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Du sang, peut-être du sang humain. Dégoûtant!" @@ -80780,8 +80878,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "sang contaminé" @@ -92950,6 +93047,21 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -97585,7 +97697,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -97600,7 +97711,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -97648,7 +97758,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -97684,7 +97793,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -97699,7 +97807,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -98364,7 +98471,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "assiette en céramique" @@ -98377,7 +98483,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "bol en céramique" @@ -98390,7 +98495,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "tasse en céramique" @@ -98403,7 +98507,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -98485,7 +98588,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "assiette en étain" @@ -98498,7 +98600,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -98513,7 +98614,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "bol en étain" @@ -98526,7 +98626,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -98539,7 +98638,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -98554,7 +98652,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "bol en verre" @@ -98593,7 +98690,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -98637,7 +98733,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -98680,7 +98775,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "casserolle" @@ -98694,7 +98788,6 @@ msgstr "" "Utile pour faire bouillir de l'eau pour cuire des spaghettis ou autre." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -98708,7 +98801,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "casserole en cuivre" @@ -98723,7 +98815,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -98738,7 +98829,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -98753,7 +98843,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -98771,7 +98860,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -98787,7 +98875,6 @@ msgstr "" "pour cuisiner." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -98801,7 +98888,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -98816,7 +98902,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "pot de fortune" @@ -98831,7 +98916,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "pot en cuivre de fortune" @@ -98846,7 +98930,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -99200,7 +99283,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -99213,7 +99295,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "ficelle longue" @@ -100594,7 +100675,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -103814,7 +103895,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "sous-canon" @@ -104158,7 +104239,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "gueule" @@ -104344,7 +104425,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "rail" @@ -104474,7 +104555,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "viseur" @@ -108998,7 +109079,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -109006,7 +109086,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "couteau de boucher" @@ -109023,7 +109102,6 @@ msgstr "" "pour dépecer les cadavres." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "couteau à steak" @@ -109040,7 +109118,6 @@ msgstr "" "mêlée médiocre, mais convient pour le dépecage des cadavres." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -109055,7 +109132,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -109072,7 +109148,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -109088,7 +109163,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -109104,7 +109178,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -109120,7 +109193,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -113000,7 +113072,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "éclat de verre" @@ -113015,7 +113086,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "feuille de verre" @@ -113038,7 +113108,6 @@ msgstr "" "Une grande feuille de verre, fragile mais utile pour réparer des fenêtres." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "feuille de verre renforcé" @@ -113052,7 +113121,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "Une grande feuille de verre renforcée avec des fibres d'acier." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "carreau de verre renforcé " @@ -113067,7 +113135,6 @@ msgstr "" "Un petit carreau de verre renforcé avec un maillage de câbles en acier." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -113176,7 +113243,6 @@ msgid "A roll of purple carpet." msgstr "Un rouleau de tapis pourpre." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "judas" @@ -113193,7 +113259,6 @@ msgstr "" " installé sur une porte." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -113206,7 +113271,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "tuyau" @@ -113222,7 +113286,6 @@ msgstr "" "fabrications artisanales." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -113240,7 +113303,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "pointe" @@ -113257,7 +113319,6 @@ msgstr "" "installée sur un véhicule." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "tuyau en cuivre" @@ -113275,7 +113336,6 @@ msgstr "" "bricolages." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "lingot d'alumnium" @@ -113291,7 +113351,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "bismuth" @@ -113305,7 +113364,6 @@ msgstr "" "Un métal dense mais friable souvent utilisé comme alternative au plomb." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "or" @@ -113323,7 +113381,6 @@ msgstr "" "fortune mais désormais sa valeur s'est grandement réduite." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "platine" @@ -113331,7 +113388,6 @@ msgstr[1] "platine" msgstr[2] "platine" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "zinc" @@ -113348,7 +113404,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "plomb" @@ -113366,7 +113421,6 @@ msgstr "" "de munitions." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "poudres de magnesium" @@ -113383,7 +113437,6 @@ msgstr "" "pour fabriquer fusées et objets similaires." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "argent" @@ -113398,7 +113451,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -113411,7 +113463,6 @@ msgid "A small sheet of metal." msgstr "Une petite tôle de métal." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -113428,7 +113479,6 @@ msgstr "" "pour fabriquer des objets." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -113441,7 +113491,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "Une grosse pièce d'acier. Utile dans quelques recette de fabrication." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -113458,7 +113507,6 @@ msgstr "" "mettre des vis. Utile à la fabrication des portes." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "débris de cuivre" @@ -113471,7 +113519,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "Petits morceaux de cuivre, utilisables pour artisanat ou réparations." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -113486,7 +113533,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -113529,7 +113575,6 @@ msgstr "" "Un balai au manche long. Très mauvaise arme sauf si vous chassez les chats." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "tesson de céramique" @@ -113600,7 +113645,6 @@ msgstr "" "éloigner de la plupart des explosions." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "pierre pointue" @@ -113678,7 +113722,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "morceau de plastique" @@ -113710,7 +113753,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -113726,8 +113768,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -113742,7 +113782,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -113757,7 +113796,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -113772,7 +113810,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "bûche" @@ -113787,7 +113824,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -113801,7 +113837,6 @@ msgstr "" "Un éclat de bois, pourrait être utilisé comme brochettes ou petit bois." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "bâton lourd" @@ -113814,7 +113849,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "bâton long" @@ -113831,7 +113865,6 @@ msgstr "" "lourds pour la fabrication." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -113845,8 +113878,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -113862,7 +113894,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -113878,7 +113909,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -113895,7 +113925,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -113911,7 +113940,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -113952,7 +113980,6 @@ msgstr "" "500ml de liquide." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "cafetière atomique" @@ -113970,7 +113997,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -113998,7 +114024,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "sertisseuse de conserve" @@ -114013,7 +114038,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "découpeur électrique (off)" @@ -114057,7 +114081,6 @@ msgstr "" "l'arrêter." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "purificateur d'eau au charbon" @@ -114077,7 +114100,6 @@ msgstr "" "vous pourrez démonter le purificateur pour le recycler." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "fumoir au charbon" @@ -114094,7 +114116,6 @@ msgstr "" "end et la préservation de la viande en la fumant." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -114109,7 +114130,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "pot en argile" @@ -114122,7 +114142,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "Un simple pot en argile avec un couvercle. Utile pour la cuisine." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "moulin en argile" @@ -114135,7 +114154,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "Une meule à main en argile pour moudre le grain." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "théière en argile" @@ -114148,7 +114166,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "Une théière en argile. Il ne vous manque plus que le thé et l'eau." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "cafetière" @@ -114167,7 +114184,6 @@ msgstr "" "électrique. Vous pouvez faire du café ou d'autres boissons avec." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "déshydrateur alimentaire" @@ -114185,7 +114201,6 @@ msgstr "" "nourriture." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -114212,7 +114227,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -114227,7 +114241,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -114319,7 +114332,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -114334,7 +114346,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "réchaud à essence" @@ -114366,7 +114377,6 @@ msgstr "" "fois." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "plaque chauffante" @@ -114448,7 +114458,6 @@ msgid "" msgstr "Un bocal fermé contenant de la choucroute. Utilisez le pour l'ouvrir." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "emballeur sous vide rudimentaire" @@ -114465,7 +114474,6 @@ msgstr "" "nourriture sous vide." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "kit gamelle" @@ -114483,7 +114491,6 @@ msgstr "" "nature. Ce modèle utilise une plaque chauffante fonctionnant avec piles." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -114499,7 +114506,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "kit gamelle militaire" @@ -114520,7 +114526,6 @@ msgstr "" "plaque chauffante à piles." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -114540,7 +114545,6 @@ msgstr "" "méthodes plus complexes." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -114571,7 +114575,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "réchaud à huile" @@ -114586,7 +114589,6 @@ msgid "" msgstr "Un réchaud à huile pour cuire la nourriture." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "extrudeur de pâtes" @@ -114603,7 +114605,6 @@ msgstr "" "têtes pour des formes de pâtes variées." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -114630,7 +114631,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "réchaud canette" @@ -114645,7 +114645,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -114661,7 +114660,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "moulin" @@ -114674,7 +114672,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "Ceci est une meule basique, avec laquelle on moud le grain à la main." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -114731,7 +114728,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "kit gamelle de survivant" @@ -114749,7 +114745,6 @@ msgstr "" "à huile et divers matériaux." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "théière" @@ -114764,7 +114759,6 @@ msgstr "" "elle." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "emballeur sous vide" @@ -114781,7 +114775,6 @@ msgstr "" " vide." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "gaufrier" @@ -114872,7 +114865,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "vélo pliant" @@ -114889,6 +114881,23 @@ msgstr "Vous dépliez le vélo avec soin et le préparez pour une balade facile. msgid "This is a bicycle folded into a relatively portable package." msgstr "Ceci est un vélo plié dans un sac relativement transportable." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -114897,7 +114906,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -114947,7 +114955,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -114981,7 +114988,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "onduleur amélioré" @@ -114998,7 +115004,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -115014,7 +115019,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -115033,7 +115037,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "téléphone portable" @@ -115068,7 +115071,6 @@ msgstr "" "application d'horloge qui comprend une alarme." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -115084,7 +115086,6 @@ msgid "You stop lighting up the screen." msgstr "Vous éteignez l'écran." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -115100,7 +115101,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "antenne directionnelle" @@ -115132,7 +115132,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -115147,9 +115146,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "électrohack" @@ -115167,7 +115164,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "compteur geiger (off)" @@ -115187,7 +115183,6 @@ msgstr "" "sur les radiations ambientes." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "compteur geiger (on)" @@ -115208,7 +115203,6 @@ msgstr "" "l'éteindre ou pour lancer un scan sur vous ou sur le terrain." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -115242,7 +115236,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "lecteur mp3 (off)" @@ -115275,7 +115268,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "émetteur de son (off)" @@ -115308,7 +115300,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "console portable" @@ -115325,7 +115316,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "smartphone" @@ -115410,7 +115400,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "vibrateur" @@ -115427,7 +115416,6 @@ msgstr "" "Utilisez le pour vous relaxer un peu." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -115452,7 +115440,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -115468,7 +115455,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "pied de biche" @@ -115487,7 +115473,6 @@ msgstr "" "bouches d'égout. Vous pourriez aussi le brandir pour frapper des têtes." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -115505,7 +115490,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "crochet à serrures improvisé" @@ -115523,7 +115507,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -115539,7 +115522,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "pied de biche de fortune" @@ -115556,7 +115538,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "kit de serrurier" @@ -116631,7 +116612,6 @@ msgstr "" "Un échantillon de rocket candy en feu, qui produit de gros nuages de fumée." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "allume-feu électrique" @@ -116648,7 +116628,6 @@ msgstr "" "inefficace." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "perceuse à arc" @@ -116667,7 +116646,6 @@ msgstr "" "Il est plutôt lent et difficle d'allumer des feux avec cet outil." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "perceuse à arc améliorée" @@ -116687,7 +116665,6 @@ msgstr "" " des feux avec cet outil." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -116703,7 +116680,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "briquet" @@ -116722,7 +116698,6 @@ msgstr "" "Molotov. Vous pouvez également l'utiliser pour enflammer des objets proches." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "loupe" @@ -116739,7 +116714,6 @@ msgstr "" "C'est une loupe. Elle peut servir à allumer des feux par temps ensoleillé." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "boîte d'allumettes" @@ -116760,7 +116734,6 @@ msgstr "" "enflammer des objets proches." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "briquet rechargeable" @@ -116806,7 +116779,6 @@ msgstr "" "est allumé." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -116837,7 +116809,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -116876,7 +116847,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -116906,7 +116876,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "hache incendie" @@ -116923,7 +116892,6 @@ msgstr "" "une arme de mêlée puissante, mais un peu lente." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "barre Halligan" @@ -116989,7 +116957,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -117004,7 +116971,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "piège à poissons en plastique" @@ -117041,7 +117007,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "hameçon" @@ -117054,7 +117019,6 @@ msgid "A simple fishing hook." msgstr "Un simple hameçon de pêche." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "hameçon de fortune" @@ -117067,7 +117031,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "Un hameçon improvisé dans du bois ou des ossements." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "canne à pêche de base" @@ -117084,7 +117047,6 @@ msgstr "" "juste un bâton avec une ficelle et un hameçon." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "canne à pêche pro" @@ -117101,7 +117063,6 @@ msgstr "" "Avec cela, vous devriez pouvoir tous les attraper." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -117118,7 +117079,6 @@ msgstr "" "d'un lot de matrices pour tous les types de munitions." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -117137,7 +117097,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "extracteur de balle cinétique" @@ -117166,7 +117125,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "couteau en cuivre" @@ -117196,7 +117154,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -117211,7 +117168,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "couteau de poche" @@ -117260,7 +117216,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "bâton-pelle" @@ -117278,7 +117233,6 @@ msgstr "" "pas plus." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "déplantoir" @@ -117294,7 +117248,6 @@ msgstr "" "vers." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "houe" @@ -117309,7 +117262,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -117342,7 +117294,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "faux" @@ -117358,7 +117309,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "pelle" @@ -117386,7 +117336,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "faucille" @@ -117402,7 +117351,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "taille-haie (off)" @@ -117452,7 +117400,6 @@ msgstr "" " l'autre dans un mouvement de vibration. Activez le pour l'éteindre." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "lampe atomique" @@ -117475,7 +117422,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "lampe atomique (couverte)" @@ -117500,7 +117446,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -117510,7 +117455,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "Vous fermez le cache de la veilleuse." @@ -117525,7 +117470,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -117537,7 +117481,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "Vous ouvrez le cache de la veilleuse." @@ -117596,7 +117540,6 @@ msgstr "" "pas mal de temps. Elle est allumée." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "lanterne électrique (off)" @@ -117643,7 +117586,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "lampe de poche (off)" @@ -117825,7 +117767,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "lampe torche renforcée (off)" @@ -117976,7 +117917,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -118020,7 +117960,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -118076,7 +118015,7 @@ msgstr[2] "torches" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "Allumer la torche" @@ -118084,7 +118023,7 @@ msgstr "Allumer la torche" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Vous allumez la torche." @@ -118103,7 +118042,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "La torche est éteinte." @@ -118117,7 +118056,6 @@ msgstr "" "La torche brûle en produisant beaucoup de lumière." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -118193,7 +118131,6 @@ msgstr "" " peut être administrée manuellement." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -118246,7 +118183,6 @@ msgstr "" "heure." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "scalpel" @@ -118277,7 +118213,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "seringue" @@ -118291,7 +118226,6 @@ msgstr "" "Une seringue médicale. Utile pour l'injection d'héroïne et autres drogues." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "thermomètre" @@ -118323,7 +118257,6 @@ msgstr "" "fournir une brève bouffée d'énergie." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "Kit de prélèvement sanguin" @@ -118342,7 +118275,6 @@ msgstr "" " de vous ou d'un corps au dessus duquel vous vous trouvez. " #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "détecteur de radiation emballé" @@ -118382,7 +118314,6 @@ msgstr "" "fabrication en métallurgie." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -118397,7 +118328,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "paire de coupe-boulons" @@ -118415,7 +118345,6 @@ msgstr "" "ou des câbles en métal épais." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "forge au charbon" @@ -118440,7 +118369,6 @@ msgstr "" " la décomposition thermique de matières organiques en l'absence d'oxygène." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "ciseau de forgeron" @@ -118456,7 +118384,6 @@ msgstr "" "Un ciseau pour travailler le métal. Utile pour certaines fabrications." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "creuset" @@ -118473,7 +118400,6 @@ msgstr "" "certaines recettes de travail du métal." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "creuset en argile" @@ -118489,7 +118415,6 @@ msgstr "" "Un creuset primitif en argile. Vous pourriez l'utiliser pour la métallurgie." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "forge électrique" @@ -118507,7 +118432,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "four à charbon prêt" @@ -118548,7 +118472,6 @@ msgstr "" "lentement." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "four à charbon allumé" @@ -118589,7 +118512,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "lot de matrices" @@ -118607,7 +118529,6 @@ msgstr "" "certaines recette de fabrication." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "pince en métal" @@ -118649,7 +118570,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "réveil" @@ -118796,7 +118716,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "pelle de l'armée" @@ -118839,7 +118758,6 @@ msgstr "" "hampe, près de la pointe. Vous devez l'allumer avant de tirer." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "tapis de sol en fourrure" @@ -118863,7 +118781,6 @@ msgstr "" " et le placer sur le sol." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "grappin" @@ -118891,7 +118808,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -118953,7 +118869,6 @@ msgstr "" " voiture." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -118991,7 +118906,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -119096,7 +119010,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "tapis de sol" @@ -119149,7 +119062,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -119329,7 +119241,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -119475,7 +119386,6 @@ msgstr "" "qu'il a dû appartenir au meilleur." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "cage à poulets" @@ -119491,7 +119401,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "sifflet à chien" @@ -119510,7 +119419,6 @@ msgstr "" " ils attaqueront les ennemis s'ils sont déjà dociles." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -119523,7 +119431,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -119536,7 +119443,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -119551,7 +119457,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "transporteur d'animaux" @@ -119566,7 +119471,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -119581,7 +119485,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -119623,7 +119526,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "radio-commande" @@ -119642,7 +119544,6 @@ msgstr "" "peut-être pour le modèle 'deluxe'?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "voiture radio-commandée" @@ -119685,7 +119586,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "radio (off)" @@ -119718,7 +119618,6 @@ msgstr "" "les émissions envoyées par les tours radio les plus proches." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -119733,7 +119632,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -119827,7 +119725,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -119846,7 +119743,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "baromètre" @@ -119877,7 +119773,6 @@ msgstr "" " l'impression que quelque chose bouge à l'intérieur." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "kit de chimie" @@ -119893,7 +119788,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -119909,7 +119803,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -119939,7 +119832,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -119954,7 +119846,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "hygromètre" @@ -119968,7 +119859,6 @@ msgstr "" "Un hygromètre en plastique, qui vous indique l'humidité relative de l'air." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -119983,7 +119873,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -119998,7 +119887,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -120057,7 +119945,6 @@ msgstr "" "distance quand vous l'activez." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -120073,7 +119960,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -120091,7 +119977,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -120106,7 +119991,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -120121,7 +120005,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -120137,7 +120020,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -120154,7 +120036,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -120173,7 +120054,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -120191,7 +120071,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -120206,7 +120085,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -120235,7 +120113,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -120252,7 +120129,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -120270,7 +120146,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -120289,7 +120164,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -120308,7 +120182,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -120329,7 +120202,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -120347,7 +120219,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -120410,7 +120281,6 @@ msgstr "" "l'installer. Celui-ci semble abîmé et à besoin d'être réparé." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "grande tente" @@ -120427,7 +120297,6 @@ msgstr "" "encombrante." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "kit d'abri" @@ -120442,7 +120311,6 @@ msgstr "" "l'installer." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "tente" @@ -120521,7 +120389,6 @@ msgstr "" "Une pipe taillée dans le bois. Utile pour fumer des feuilles de tabac." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -120534,7 +120401,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -120547,7 +120413,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "paire de ciseaux" @@ -120563,7 +120428,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -120576,7 +120440,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Un morceau de papier, utile pour faire des feux." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -120592,7 +120455,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -120607,7 +120469,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "aiguille à tricoter" @@ -120625,7 +120486,6 @@ msgstr "" " à partir du fil et de la laine." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "aiguille en os" @@ -120656,7 +120516,6 @@ msgstr "" "pour coudre du néoprène." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "aiguille en bois" @@ -120673,8 +120532,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "kit de couture" @@ -120709,8 +120567,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "kit de couturier" @@ -120727,7 +120584,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -120740,7 +120596,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -120753,7 +120608,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "tondeuse à cheveux électrique" @@ -120801,7 +120655,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "lame de rasoir" @@ -120831,7 +120684,6 @@ msgstr "" "l'utiliser avec du savon. Il consomme 1 unité de savon par utilisation." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -120874,7 +120726,6 @@ msgstr "" "consomme 1 unité de savon par utilisation." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "planche à laver" @@ -120891,7 +120742,6 @@ msgstr "" "des vêtements sales si ceux-ci sont fournis avec un agent nettoyant." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -120933,7 +120783,6 @@ msgstr "" "dessus. Vous pourriez l'enterrer avec une pelle." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "piège lame" @@ -120954,7 +120803,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "piège à clous" @@ -121005,7 +120853,6 @@ msgstr "" "avertissant par du son si quelqu'un marche dessus." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "chausse-trape détendu" @@ -121028,7 +120875,6 @@ msgstr "" "dessus, elle aura une épine dans le pied." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -121082,7 +120928,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -121111,7 +120956,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "piège corde tendue" @@ -121149,7 +120993,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -121171,7 +121014,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "hache à bois" @@ -121203,7 +121045,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "tronçonneuse (off)" @@ -121247,7 +121088,6 @@ msgstr "" "l'éteindre." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "scie circulaire (off)" @@ -121291,7 +121131,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "hache en cuivre" @@ -121322,7 +121161,6 @@ msgstr "" "des choses ou comme marteau." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "tronçonneuse électrique (off)" @@ -121434,7 +121272,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "scie à bois" @@ -121447,7 +121284,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "Une fine scie utilisée pour découper des objets en bois." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -121456,7 +121292,6 @@ msgstr[2] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -121602,7 +121437,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -121617,7 +121451,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -121632,7 +121465,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "four à briques" @@ -121649,7 +121481,6 @@ msgstr "" "mais il peut servir pour cuire tout ce qui est en argile." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "paire de cardes à main" @@ -121667,7 +121498,6 @@ msgstr "" "utilisées dans la production de textiles." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "couteau de peintre" @@ -121680,7 +121510,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "Un outil pour enlever la peinture." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -121695,7 +121524,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -121711,7 +121539,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "bétonnière" @@ -121726,7 +121553,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "perceuse sans fil" @@ -121740,7 +121566,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "quenouille et broche" @@ -121755,7 +121580,6 @@ msgid "" msgstr "Une paire de tiges en bois qui servent à filer la laine en fil." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "marteau-piqueur électrique" @@ -121771,7 +121595,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "scie à métaux" @@ -121799,7 +121622,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "marteau" @@ -121830,7 +121652,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "chignole" @@ -121847,7 +121668,6 @@ msgstr "" "épuisera rapidement." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "tuyau en caoutchouc" @@ -121864,7 +121684,6 @@ msgstr "" "fabrication ou pour siphonner du carburant d'un véhicule." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "cric bouteille" @@ -121877,7 +121696,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "Un cric bouteille hydraulique transportable pour lever les véhicules." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -121892,7 +121710,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "cric losange" @@ -121905,7 +121722,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "Un cric losange compact pour lever les véhicules." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "marteau-piqueur" @@ -121924,7 +121740,6 @@ msgstr "" "terrain dur proche de vous." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -121939,7 +121754,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "four électrique" @@ -121956,7 +121770,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "kit de réparation d'armurier" @@ -121975,7 +121788,6 @@ msgstr "" "longtemps. Il consomme 100 charges de piles par utilisation." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "marteau rudimentaire" @@ -121990,7 +121802,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -122005,7 +121816,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "lisseur métallique" @@ -122022,7 +121832,6 @@ msgstr "" "construction." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -122055,7 +121864,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "moule en plastique" @@ -122072,7 +121880,6 @@ msgstr "" "des objets en plastique." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "outil multi-fonction" @@ -122089,7 +121896,6 @@ msgstr "" "d'une pince." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "torche à acétylène" @@ -122107,7 +121913,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "pinceau" @@ -122120,7 +121925,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "Un pinceau large, idéal pour peindre les murs." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "pioche" @@ -122137,7 +121941,6 @@ msgstr "" "compétence nécessaire) les cibles difficiles. Frapper la terre!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -122152,7 +121955,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "pince" @@ -122168,7 +121970,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "polisseur électrique" @@ -122201,7 +122002,6 @@ msgstr "" " pas être comparée à un bon marteau, mais c'est suffisant." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "tournevis" @@ -122219,7 +122019,6 @@ msgstr "" "possède de nombreux autres usages." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "ensemble de tournevis" @@ -122236,7 +122035,6 @@ msgstr "" "bon pour les tâches plus précises." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "kit de réparation d'arme à feu" @@ -122255,7 +122053,6 @@ msgstr "" "longtemps. Il consomme 100 charges de piles par utilisation." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -122290,7 +122087,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "boîte à outils" @@ -122308,7 +122104,6 @@ msgstr "" "construction domestiques." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -122339,7 +122134,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -122354,7 +122148,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "lisseur en bois" @@ -122371,7 +122164,6 @@ msgstr "" " vous en servir pour casser des crânes." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -122386,7 +122178,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "couteau X-Acto" @@ -122406,7 +122197,6 @@ msgstr "" " les mains des plus habiles. Il est trop petit pour servir au dépeuçage." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "clé à molette" @@ -122423,7 +122213,6 @@ msgstr "" " et est utile dans de nombreuses recettes de fabrication." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -122439,7 +122228,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -123807,6 +123595,18 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -124179,7 +123979,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -124656,6 +124455,14 @@ msgstr[2] "tables en bois" msgid "A crude wooden table." msgstr "Une simple table en bois." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -125008,6 +124815,32 @@ msgstr[2] "jeux de roulettes" msgid "A set of casters, like on a shopping cart." msgstr "Une roulettes, similaires à celles d'un chariot de supermarché." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -125863,13 +125696,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -126189,13 +126015,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -126749,7 +126568,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -126773,7 +126592,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Douleur" @@ -131018,7 +130837,7 @@ msgstr[2] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -131027,7 +130846,7 @@ msgstr[2] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -141425,9 +141244,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "Échangeons des objets." @@ -142160,9 +141979,9 @@ msgstr "Que faites vous ici?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -142178,9 +141997,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "Je peux faire quelque chose pour vous?" @@ -142208,25 +142027,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "Échangeons." #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -142246,9 +142065,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -148747,7 +148566,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -158425,17 +158244,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -159635,7 +159454,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -165330,9 +165149,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -174803,7 +174622,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Forêt" @@ -175171,7 +174989,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "cabane" @@ -175193,7 +175011,6 @@ msgstr "sous-sol de cabane" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "forêt" @@ -177946,7 +177763,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -177993,7 +177809,7 @@ msgstr "ARME" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "TOUS" @@ -178118,6 +177934,13 @@ msgstr "ÉLECTRONIQUE" msgid "CBMS" msgstr "MBCS" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "OUTILS" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -178131,7 +177954,7 @@ msgstr "ÉCLAIRAGE" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "ARMURE" @@ -178172,7 +177995,7 @@ msgstr "MÉDICAL" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "MATÉRIAUX" @@ -188116,7 +187939,7 @@ msgstr "châssis léger pliable" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -188195,6 +188018,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "lumières couloir" @@ -189928,6 +189758,24 @@ msgstr "" "Un jeu de petites roues montées sur pivots, tels que ceux utilisés sur les " "fauteuils de bureau ou les caddies de supermarchés. " +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "roues" @@ -190001,7 +189849,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Vélo" @@ -190069,6 +189917,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -190214,8 +190066,8 @@ msgid "Wheelbarrow" msgstr "Brouette" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Fauteuil roulant pliable" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -190557,7 +190409,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -197489,7 +197340,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -197497,8 +197348,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -198472,9 +198323,9 @@ msgstr[2] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -198488,7 +198339,7 @@ msgstr[2] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -216469,74 +216320,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -216546,177 +216329,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -217942,116 +217554,135 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -218059,38 +217690,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -218098,95 +217730,105 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -218194,24 +217836,72 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -218219,25 +217909,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -218245,25 +217935,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -218271,7 +217961,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -218279,7 +217969,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -218289,7 +217979,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -218299,7 +217989,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -218309,7 +217999,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -218319,7 +218009,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -218328,7 +218018,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -218337,7 +218027,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -218347,7 +218037,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -218356,18 +218046,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -218376,7 +218066,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -218384,18 +218074,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -218405,7 +218095,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -218414,18 +218104,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -218433,25 +218123,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -218459,59 +218149,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -218520,7 +218242,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -218529,25 +218251,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "Église" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -218559,7 +218281,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -218570,25 +218292,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -218598,7 +218320,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -218608,592 +218330,645 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -219205,245 +218980,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -219451,487 +219199,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -219939,321 +219707,365 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -220261,20 +220073,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -220282,74 +220094,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -220357,21 +220169,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -220379,105 +220191,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -220485,16 +220321,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -220502,74 +220338,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -220577,350 +220413,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "Terrifié" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -220928,7 +220764,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -220936,7 +220772,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -220944,49 +220780,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" @@ -220994,13 +220794,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" @@ -221008,13 +220808,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" @@ -221022,13 +220822,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -221036,59 +220836,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -221096,14 +220850,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" @@ -221111,13 +220865,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -221126,43 +220880,13 @@ msgstr[2] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -221170,14 +220894,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" @@ -221185,15 +220909,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -221201,47 +220924,47 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "sang de dragon" msgstr[1] "sang de dragon" msgstr[2] "sang de dragon" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -221249,14 +220972,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -221265,13 +220988,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" @@ -221279,13 +221002,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" @@ -221293,13 +221016,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -221308,13 +221031,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -221323,13 +221046,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -221338,13 +221061,13 @@ msgstr[2] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -221352,38 +221075,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -221391,13 +221089,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" @@ -221405,14 +221103,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -221420,24 +221118,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -221445,13 +221143,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -221460,12 +221158,12 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -221474,12 +221172,12 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" @@ -221487,13 +221185,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" @@ -221501,13 +221199,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" @@ -221515,14 +221213,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" @@ -221530,14 +221228,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -221546,20 +221244,20 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -221568,13 +221266,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -221583,13 +221281,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -221598,13 +221296,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -221613,14 +221311,14 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" @@ -221628,14 +221326,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" @@ -221643,14 +221341,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" @@ -221658,14 +221356,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" @@ -221673,14 +221371,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -221689,12 +221387,12 @@ msgstr[2] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -221702,7 +221400,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -221710,13 +221408,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -221724,180 +221422,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" @@ -221905,13 +221436,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" @@ -221919,13 +221450,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" @@ -221933,13 +221464,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" @@ -221947,13 +221478,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" @@ -221961,13 +221492,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" @@ -221975,13 +221506,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" @@ -221989,13 +221520,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" @@ -222003,13 +221534,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" @@ -222017,14 +221548,143 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" @@ -222032,7 +221692,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -222041,7 +221701,7 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" @@ -222049,11 +221709,11 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" @@ -222061,12 +221721,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" @@ -222074,14 +221734,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" @@ -222089,12 +221749,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" @@ -222102,13 +221762,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" @@ -222116,14 +221776,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -222131,13 +221791,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -222145,13 +221805,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -222159,13 +221819,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -222173,4583 +221833,5209 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "" + +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "" + +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "" + +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" + +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" + +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." msgstr "" +"Le sang d'un dragon, il dégage de la chaleur et en le regardant vous voyez " +"des motifs se former et disparaître comme si vous regardiez un vrai feu." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "mana cristallisé" +msgstr[1] "manas cristallisés" +msgstr[2] "manas cristallisés" + +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" +"Du mana cristallisé. Il peut être rechargé dans des cristaux de mana " +"rechargeable, mais ne peut jamais être déchargé." + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Mjölnir" +msgstr[1] "Mjölnirs" +msgstr[2] "Mjölnirs" + +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." msgstr "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." msgstr "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" - -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" -"Le sang d'un dragon, il dégage de la chaleur et en le regardant vous voyez " -"des motifs se former et disparaître comme si vous regardiez un vrai feu." - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "mana cristallisé" -msgstr[1] "manas cristallisés" -msgstr[2] "manas cristallisés" - -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" -"Du mana cristallisé. Il peut être rechargé dans des cristaux de mana " -"rechargeable, mais ne peut jamais être déchargé." - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Mjölnir" -msgstr[1] "Mjölnirs" -msgstr[2] "Mjölnirs" - -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" - -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -226757,14 +227043,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -226772,20 +227058,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -226793,7 +227083,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -226802,7 +227092,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -226810,7 +227100,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -226818,7 +227108,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -226826,19 +227116,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -226846,14 +227136,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -226861,7 +227151,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -226870,7 +227160,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -226878,14 +227168,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -226893,14 +227183,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -226908,14 +227198,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -226923,14 +227213,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -226938,13 +227228,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -226952,7 +227242,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -226960,7 +227250,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -226968,12 +227258,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -226981,13 +227271,94 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -226995,7 +227366,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -227006,7 +227377,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -227014,17 +227385,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -227032,7 +227403,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -227042,7 +227413,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -227050,7 +227421,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -227059,7 +227430,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -227067,13 +227438,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -227081,16 +227452,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -227098,19 +227470,19 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -227118,7 +227490,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -227127,19 +227499,19 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -227147,7 +227519,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -227156,7 +227528,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -227164,14 +227536,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -227179,13 +227551,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -227193,13 +227565,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -227207,13 +227579,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -227221,144 +227593,192 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "Bonjour ." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "Je dois purger cet endroit avant de partir." -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -227366,222 +227786,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "As-tu trouvé quelque chose ?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -227589,48 +228009,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -227638,12 +228058,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -227651,12 +228071,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -227664,103 +228084,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -227769,204 +228189,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -227974,24 +228394,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" @@ -227999,48 +228419,68 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "Voir ceci est un bug." -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -234606,6 +235046,10 @@ msgstr "Basculer activer/examiner" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -234798,10 +235242,6 @@ msgstr "Déposer un objet sur une case adjacente" msgid "View/Activate Bionics" msgstr "Voir/Activer un implant" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Voir/Activer les mutations" @@ -240899,6 +241339,7 @@ msgstr " BIONIQUES " msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -240967,6 +241408,10 @@ msgstr "ON" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -241826,6 +242271,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -257578,7 +258027,12 @@ msgid "Test which group?" msgstr "Tester quel groupe?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -263579,7 +264033,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -268740,10 +269200,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -272968,7 +273429,7 @@ msgstr "Monde par défaut" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -280769,6 +281230,11 @@ msgstr "La planteuse de %s s'éteint à cause de la température trop basse." msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -280910,6 +281376,16 @@ msgstr "Le moteur du/de la %s émet un sifflement." msgid "Your %s is not fast enough to keep up with the %s" msgstr "Votre %s n'est pas assez rapide pour suivre le %s." +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -281513,11 +281989,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "%s plié" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/hu.po b/lang/po/hu.po index c73111b78062..f642ec5980d1 100644 --- a/lang/po/hu.po +++ b/lang/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Hungarian (https://app.transifex.com/bn-team/teams/113585/hu/)\n" "MIME-Version: 1.0\n" @@ -8012,6 +8012,17 @@ msgstr "" msgid "You can see through everything!" msgstr "Mindenen át tudsz látni!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "Bevett egy xanaxot" @@ -11433,7 +11444,7 @@ msgstr "Bekapcsol" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "Kikapcsol" @@ -11881,75 +11892,91 @@ msgstr "TÖLTÉNYTÁRAK" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "LÖVEDÉK" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "FEGYVEREK" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "SZERSZÁMOK" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "ELEKTRONIKUS HULLADÉK" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "RUHÁZAT" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "ÉTEL" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "GYÓGYSZER" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "KÖNYVEK" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "TÉRKÉP" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MOD" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "MUTAGÉNEK" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "BIONIKA" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "JÁRMŰ ALKATRÉSZEK" @@ -11963,51 +11990,89 @@ msgstr "JÁRMŰ ALKATRÉSZEK" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "EGYÉB" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "ÜZEMANYAG" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "MAGOK" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "VEGYI ANYAGOK" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "AKKUMULÁTOROK" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "ALKATRÉSZEK" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "KÖVEK" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "TÁROLÁS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "MŰTÁRGYAK" +#: data/json/item_category.json +msgid "MAPS" +msgstr "TÉRKÉP" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "VISELT TÁRGYAK" @@ -12750,12 +12815,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12797,6 +12862,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "Nincs auto felszedés" @@ -13256,7 +13492,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Eskrima" @@ -13293,7 +13529,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Vívás" @@ -13330,7 +13566,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -13503,7 +13739,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Krav Maga" @@ -13625,7 +13861,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "Középkori kardforgatás " @@ -13700,7 +13936,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Nindzsicu" @@ -13882,7 +14118,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Silat" @@ -15072,7 +15308,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "horpadt" @@ -15081,22 +15317,22 @@ msgid "gouged" msgstr "barázdált" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "karcolt" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "szétvágott" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "repedt" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "széttört" @@ -15109,7 +15345,7 @@ msgid "bent" msgstr "meghajlott" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "összetört" @@ -15121,7 +15357,7 @@ msgstr "tönkrement" msgid "Biosilicified Chitin" msgstr "bioszilíciumosodott kitin" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "csorba" @@ -15134,7 +15370,7 @@ msgid "Brass" msgstr "sárgaréz" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "megjelölt" @@ -15152,7 +15388,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "kiszakadt" @@ -15161,12 +15397,12 @@ msgid "torn" msgstr "szétszakadt" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "foszlánnyá szakadt" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "cafatos" @@ -15226,7 +15462,7 @@ msgstr "hús" msgid "bruised" msgstr "zúzódott" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "szeletelt" @@ -15653,7 +15889,7 @@ msgstr "automata" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -20417,12 +20653,12 @@ msgstr "" "Az ügyfelek már nem a megbízási díjra panaszkodnak, hanem az agyadat akarják" " megenni. Hirtelen nem is tudod, hogy melyik a rosszabb." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Pap" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Pap" @@ -20455,18 +20691,18 @@ msgstr "" " Most már, hogy mind halottak, talán nem ártana valami kézzelfoghatóbbat " "találni a védelmedre." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Kannushi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Kannushi" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20478,7 +20714,7 @@ msgstr "" "halottak szellemei lakták a szentélyedet, és nem pedig a rothadó hulláik." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20489,12 +20725,12 @@ msgstr "" "rituálékat és a szent feladatokat. Azt azért jobban szeretted, amikor a " "halottak szellemei lakták a szentélyedet, és nem pedig a rothadó hulláik." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "Imám" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "Moursida" @@ -20527,18 +20763,18 @@ msgstr "" "közösséged vezetted imára. Akkoriban messziről jöttek, hogy meghallgassanak," " most meg azért jönnek, hogy az agyadat egyék meg." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "Rabbi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "Rabbi" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -20546,19 +20782,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "Guru" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "Guru" @@ -20587,12 +20823,12 @@ msgstr "" "Általában minden kérdésre van válaszod, de még te sem tudod, hogy mitévő " "legyél a farkasétvágyú élőhalottakkal." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "Prédikátor" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "Prédikátor" @@ -21445,15 +21681,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "Görkoris srác" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "Görkoris lány" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -21463,7 +21699,7 @@ msgstr "" "Imádsz görkorizni! Most legalább a felnőttek nem szólnak be, hogy hol nem " "lehet korizni." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -21473,6 +21709,34 @@ msgstr "" "Imádsz görkorizni! Most legalább a felnőttek nem szólnak be, hogy hol nem " "lehet korizni." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -28957,7 +29221,6 @@ msgid "awl" msgstr "ár" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "görbe tű" @@ -29074,7 +29337,6 @@ msgstr "tölténybontó" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "üllő" @@ -29140,7 +29402,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "buborékos fólia" @@ -29161,7 +29422,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "priccs" @@ -29169,7 +29429,6 @@ msgstr[1] "priccs" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "tölcsér" @@ -29177,7 +29436,6 @@ msgstr[1] "tölcsér" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "hevenyészett tölcsér" @@ -29196,8 +29454,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "medvecsapda" @@ -29230,14 +29487,12 @@ msgid "tripwire" msgstr "csapdadrót" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "számszeríj csapda" @@ -29280,7 +29535,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "gyalogsági akna" @@ -29298,7 +29552,6 @@ msgid "buried land mine" msgstr "földbe temetett akna" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "teleportáló lap" @@ -29343,7 +29596,6 @@ msgid "ledge" msgstr "párkány" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "álcázott csapda" @@ -29355,7 +29607,6 @@ msgstr "üvegszilánkokkal kibélelt gödör" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "bőr tölcsér" @@ -29363,7 +29614,6 @@ msgstr[1] "bőr tölcsér" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "nyírfakéreg tölcsér" @@ -29375,7 +29625,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "fém tölcsér" @@ -29740,7 +29989,8 @@ msgstr "" msgid "Thunder Storm" msgstr "Zápor" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Zivatar" @@ -29782,6 +30032,19 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -29859,7 +30122,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "fémcsikorgás!" @@ -29889,7 +30153,8 @@ msgstr "fémcsikorgás!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "csengg!" @@ -30242,7 +30507,6 @@ msgstr "Kimoshatnád vele a ruháidat, ha lenne áram." #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -30360,8 +30624,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "csatt!" @@ -30610,7 +30875,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "reccs!" @@ -30638,7 +30903,7 @@ msgstr "reccs!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "tompa puffanás." @@ -30761,7 +31026,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -30821,7 +31085,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -31144,7 +31407,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "ablak betörése!" @@ -31231,7 +31494,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -31258,7 +31521,7 @@ msgstr "csörömpölés!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "puffanás!" @@ -31429,7 +31692,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "puffanás." @@ -31766,7 +32029,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "csattanás!" @@ -31783,7 +32046,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "parázstartó vaskosár" @@ -31796,7 +32058,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "hobo kályha" @@ -31811,7 +32072,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -31833,7 +32093,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -31983,7 +32242,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "napraforgó" @@ -32850,7 +33108,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "víztisztító" @@ -33267,7 +33524,6 @@ msgstr "zsámoly" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -33409,7 +33665,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -33434,7 +33689,6 @@ msgstr "tépés!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -33980,9 +34234,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "bőrponyva" @@ -34018,7 +34284,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "rostszőnyeg" @@ -34037,7 +34302,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "kempingasztal" @@ -34537,7 +34801,6 @@ msgstr "Fémmegmunkálásnál használják." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "pálinkafőző" @@ -34554,7 +34817,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "faszenes kemence" @@ -34572,7 +34834,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "megtöltött faszenes kemence" @@ -34642,7 +34903,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -34682,7 +34942,6 @@ msgstr "Agyagedények és téglák kisütésére készített kemence." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "fellépő" @@ -36171,7 +36430,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr " puffanás" @@ -36557,7 +36816,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "homok" @@ -36813,7 +37071,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "beton" @@ -38464,7 +38721,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -39103,7 +39359,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -40136,7 +40391,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "tömör szikla" @@ -41058,7 +41312,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "csatornafedél" @@ -41235,6 +41488,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -41300,7 +41589,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "HA EZT LÁTOD, PROGRAMHIBÁT LÁTSZ." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -41312,7 +41600,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "Kis adag cérna, varrókészletet lehet vele felölteni." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -41324,7 +41611,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Cérnaként használható, hullából kivágott szívós ín." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -41336,7 +41622,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "Növényből származó vékony, de erős szál. Cérnaként használható." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -41359,7 +41644,6 @@ msgid "A cleansing agent made into bars." msgstr "Szilárd formába öntött tisztítószer." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -41373,7 +41657,6 @@ msgstr "" "létezik." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -41385,7 +41668,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Vékony papírcsíkok cigaretta sodrásához." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -41433,7 +41715,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -41685,7 +41966,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "Egy könnyen formázható, hasznos gumidarab." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -41735,7 +42015,6 @@ msgstr "" "Használatával továbbá vízből és levegőből lehet a szennyezést kiszűrni." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "kalcium-karbid keverék" @@ -41974,7 +42253,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Oxigén és nitrogén merüléshez megfelelően vegyített keveréke." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "tapló" @@ -42008,7 +42286,6 @@ msgid "A metal die used to play various role-playing games" msgstr "Többféle szerepjátékhoz használható fém dobókocka." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "bronz" @@ -42337,7 +42614,6 @@ msgstr "ferromágneses railgun lőszer" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "ET" @@ -44614,7 +44890,6 @@ msgstr "" "oxidálásával papírfehérítő szert lehet készíteni." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "kéndarab" @@ -44628,7 +44903,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "cement" @@ -44646,7 +44920,6 @@ msgstr "" "használni. Csak vizet kell hozzáadni." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "mészkő" @@ -44661,7 +44934,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "oltatlan mész" @@ -44690,7 +44962,6 @@ msgstr "" "is olvaszthatnál belőle. Egyébként csak a cementkészítéshez jó." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "virágföld" @@ -44721,7 +44992,6 @@ msgstr "" "tulajdonságait talán még tudod hasznosítani." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "kősó" @@ -44733,7 +45003,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "Egy maréknyi kősó kristály. Konyhasóvá finomítható." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -44747,7 +45016,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -45180,7 +45448,6 @@ msgstr "" "robbanócukor egyik alapvető alkotóeleme." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "salétromsó" @@ -45196,7 +45463,6 @@ msgstr "" "alakítható." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -45609,7 +45875,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "acélrács" @@ -45658,7 +45923,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "Apró hasadóanyag pellet. Óvatosan nyúlj hozzá." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -47352,7 +47616,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -47365,7 +47628,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -47507,7 +47769,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "szőrmeirha" @@ -47519,7 +47780,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "Egy prémes állat irhája. Meleg ruhát lehet belőle készíteni." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "műszőr irha" @@ -47531,7 +47791,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "Egy rikító színű műszőr irha. Meleg ruhát lehet belőle készíteni." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "bőrdarab" @@ -47543,7 +47802,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "Egy kisebb bőrdarab, strapabíró ruházatot lehet belőle varrni." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "nemezdarab" @@ -47555,7 +47813,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "Egy kisebb nemezdarab, szétszedhető gyapjú szálakra." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "nomexdarab" @@ -47567,7 +47824,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "Egy kis darab Nomex tűzálló textil." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -47579,7 +47835,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Egy tubus erős pillanatragasztó. Számos kézműves recept használja." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "csontragasztó" @@ -47614,7 +47869,6 @@ msgid "A token, representing fertilization of a plant." msgstr "A növény trágyázását jelölő token." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "acéllánc" @@ -47631,7 +47885,6 @@ msgstr "" "tekeredjen, és így egy bónusz puszta kezes támadást is kaphatsz." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "kitindarab" @@ -47643,7 +47896,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "Darab egy rovar kitinvázából, könnyű és nagyon tartós." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -47674,7 +47926,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "bioszilíciumosodott kitindarab" @@ -47689,7 +47940,6 @@ msgid "" msgstr "Ez a darab rovarváz bioszilíciumosodott. Saválló és nagyon tartós." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "rongyköteg" @@ -47703,7 +47953,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "bőrköteg" @@ -47719,7 +47968,6 @@ msgstr "" "Szorosan összekötözött bőrdarabok. Szétcsomagolásához szét kell szedni." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "nemezköteg" @@ -47804,7 +48052,6 @@ msgstr "" "hogy faragták, természetesen ilyen, vagy valamiféle őskövület." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "USB-meghajtó" @@ -47816,7 +48063,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "Egy USB-meghajtó, szoftverek tárolására alkalmas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -47830,7 +48076,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -47845,7 +48090,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "gyertyatartó" @@ -47900,7 +48144,6 @@ msgstr "" "is lehet dobni. Vastag védőkesztyű nélkül rossz ötlet vele hadonászni." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "fatörzs csapoló" @@ -47918,7 +48161,6 @@ msgstr "" " használni." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "drót" @@ -47934,7 +48176,6 @@ msgstr "" "készítenek." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "szögesdrót" @@ -47946,7 +48187,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "Éles tüskékkel ellátott merev huzaltekercs." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -47961,7 +48201,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "betonvas" @@ -48028,7 +48267,6 @@ msgstr "" "Ez a magnézium jelzőfáklya kifogyott, most már gyakorlatilag csak szemét." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "rugó" @@ -48086,7 +48324,6 @@ msgstr "" "felállítani." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "melegítőszál" @@ -48098,7 +48335,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "Főzőlapokban és vízmelegítőkben használt melegítőszál." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -48111,7 +48347,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "televízió" @@ -48123,7 +48358,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "őrláng" @@ -48165,7 +48399,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "kenyérpirító" @@ -48178,7 +48411,6 @@ msgstr "" "Apró, kétszeletes kenyérpirító. Alkatrészeken kívül nem sok minden másra jó." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "mikrohullámú sütő" @@ -48194,7 +48426,6 @@ msgstr "" "Alkatrésznek jó." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "laptop" @@ -48205,9 +48436,7 @@ msgstr[1] "laptop" msgid "A broken laptop, basically a paperweight now." msgstr "Elromlott laptop, most már csak papírnehezék." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "elromlott szembot" @@ -48223,9 +48452,7 @@ msgstr "" "Egy elromlott szembot. Most már sokkal kevésbé fenyegető, hogy nem tud " "erősítést hívni. Ki lehetne belezni alkatrészekért." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "elromlott skitterbot" @@ -48241,7 +48468,6 @@ msgstr "" "fenyegető. Ki lehetne belezni alkatrészekért." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -48255,7 +48481,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "elromlott rendőrbot" @@ -48271,7 +48496,6 @@ msgstr "" "mozdulatlanul a földön hever. Ki lehetne belezni alkatrészekért." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -48285,7 +48509,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -48306,7 +48529,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -48320,7 +48542,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "elromlott tömegoszlató bot" @@ -48336,7 +48557,6 @@ msgstr "" "nincs benne több gáz. Ki lehetne belezni alkatrészekért." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -48349,9 +48569,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "elromlott bányászbot" @@ -48368,7 +48586,6 @@ msgstr "" "bármit átfúrni. Ki lehetne belezni alkatrészekért." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -48382,21 +48599,18 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -48411,7 +48625,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -48426,9 +48639,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "elromlott manhack" @@ -48445,9 +48656,7 @@ msgstr "" "Egy elromlott manhack. Most már a szilárd talajon fekve sokkal kevésbé " "fenyegető. Ki lehetne belezni alkatrészekért." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "elromlott gránátos hack" @@ -48463,9 +48672,7 @@ msgstr "" "Egy elromlott gránátos hack. Most már a szilárd talajon csendesen fekve " "sokkal kevésbé fenyegető. Ki lehetne belezni alkatrészekért." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "elromlott mininukis hack" @@ -48481,9 +48688,7 @@ msgstr "" "Egy elromlott lila hack. A roncsot nézve is kiver a veríték. Ki lehetne " "belezni alkatrészekért." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "elromlott könnygáz hack" @@ -48499,9 +48704,7 @@ msgstr "" "Egy elromlott könnygáz hack. Most már a szilárd talajon csendesen fekve " "sokkal kevésbé fenyegető. Ki lehetne belezni alkatrészekért." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "elromlott EMP hack" @@ -48517,9 +48720,7 @@ msgstr "" "Egy elromlott EMP hack. Most már a szilárd talajon csendesen fekve sokkal " "kevésbé fenyegető. Ki lehetne belezni alkatrészekért." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "elromlott villanógránátos hack" @@ -48535,9 +48736,7 @@ msgstr "" "Egy elromlott villanógránátos hack. Most már a szilárd talajon csendesen " "fekve sokkal kevésbé fenyegető. Ki lehetne belezni alkatrészekért." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "elromlott C-4 hack" @@ -48581,7 +48780,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "processzor alaplap" @@ -48595,7 +48793,6 @@ msgstr "" "projektekhez." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "RAM" @@ -48608,7 +48805,6 @@ msgstr "" "Memóriamodul, hasznos lehet haladó elektronikai kézműves projektekhez." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "transzformátor" @@ -48620,7 +48816,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "Tápegység. Számos elektronikai receptnél lehet hasznos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "erősítő áramkör" @@ -48636,7 +48831,6 @@ msgstr "" "hasznos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "transzponder áramkör" @@ -48652,7 +48846,6 @@ msgstr "" "lehet hasznos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "jelvevő" @@ -48668,7 +48861,6 @@ msgstr "" "gyártásánál lehet hasznos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -48682,7 +48874,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "apró LCD-képernyő" @@ -48698,7 +48889,6 @@ msgstr "" "Néhány elektronikai receptnél lehet hasznos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "kiváló minőségű objektív" @@ -48715,7 +48905,6 @@ msgstr "" "Tűzgyújtáshoz például hasznos lehet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -48732,7 +48921,6 @@ msgstr "" "szétszórására. Tűzgyújtáshoz például hasznos lehet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "színes szemüveg" @@ -48746,7 +48934,6 @@ msgid "" msgstr "Sötétített üveg, mint amilyenből a napszemüveg is készül." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "kiégett bionika" @@ -48795,7 +48982,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "antenna" @@ -48808,7 +48994,6 @@ msgstr "" "Egyszerű, vékony alumíniumrúd. Számos elektronikai receptnél lehet hasznos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "mikromotor" @@ -48824,7 +49009,6 @@ msgstr "" "elektronikai receptben használható." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "nyomtatott áramkör" @@ -48840,7 +49024,6 @@ msgstr "" "alkatrészt köt össze." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "elektronikai hulladék" @@ -48868,7 +49051,6 @@ msgid "" msgstr "Egy rádióállomást önálló átjátszóvá átalakító rendszer." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "asztali ventilátor" @@ -48880,7 +49062,6 @@ msgid "A small fan, used to propel air around a room." msgstr "Levegő keringetésére szolgáló, kisebb méretű asztali ventilátor." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "kerámia páncéllemez" @@ -48909,7 +49090,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "rongy" @@ -48944,7 +49124,6 @@ msgid "" msgstr "Nagyméretű, vértől átitatott rongy. Forró vízzel megtisztítható." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -48959,7 +49138,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "óra" @@ -48983,7 +49161,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "Mindenféle apró fogaskerék meg egyéb óramű belsőség." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "SD memóriakártya" @@ -48995,7 +49172,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "Egy használt memóriakártya. Érdemes megnézni, mi van rajta." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "SD memóriakártya (üres)" @@ -49012,7 +49188,6 @@ msgstr "" "viszont rá tudod menteni az adataidat!" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "SD memóriakártya (titkosított)" @@ -49029,7 +49204,6 @@ msgstr "" "Remélhetőleg valami olyan van rajta, amit tényleg érdemes titkosítani." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "Tudományos SD memóriakártya" @@ -49063,7 +49237,6 @@ msgstr "" "Feszítővas nélkül nem lehet felszedni." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "fenyőág" @@ -49078,7 +49251,6 @@ msgstr "" "Egy fenyőfa ága, tele szúrós tűlevelekkel. A végéből ragacsos nedv szivárog." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "fenyőtoboz" @@ -49116,7 +49288,6 @@ msgstr "" "nem ettek meg a vadállatok." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -49129,14 +49300,12 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -49150,7 +49319,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "agyagrög" @@ -49162,7 +49330,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "Friss agyagdarab. Néhány kézműves receptnél jól jöhet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "tégla" @@ -49174,7 +49341,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "Tűzzel kiégetett, kemény építőanyag falazáshoz." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "habarcs" @@ -49187,7 +49353,6 @@ msgstr "" "Valamennyi habarcs, csak arra vár, hogy valamilyen építkezésnél felhasználd." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -49211,7 +49376,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -49225,7 +49389,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -49239,7 +49402,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -49251,7 +49413,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "nyírfakéreg" @@ -49263,7 +49424,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "Egy lapnyi kemény, vízálló kéreg egy nyírfa törzséről." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -49278,7 +49438,6 @@ msgstr "" "Egy lapnyi kéreg egy fűzfa törzséről. Az aszpirin gyártásánál használják." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "gyémánt" @@ -49290,7 +49449,6 @@ msgid "A sparkling diamond." msgstr "Egy szikrázó gyémánt." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -49302,7 +49460,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -49314,7 +49471,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -49326,7 +49482,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -49338,7 +49493,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -49350,7 +49504,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -49362,7 +49515,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -49374,7 +49526,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -49386,7 +49537,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -49398,7 +49548,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -49410,7 +49559,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -49422,7 +49570,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -49434,7 +49581,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -49446,7 +49592,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "pácolt bőr" @@ -49461,7 +49606,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "pácolt szőrme" @@ -49502,7 +49646,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "A régi szalmababa egy szoknyás nőt ábrázol." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "párna" @@ -49514,7 +49657,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Alvás közben erre teheted a fejedet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "testpárna" @@ -49530,7 +49672,6 @@ msgstr "" "pucér változatával." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "pihepárna" @@ -49542,7 +49683,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "Alvás közben erre a puha párnára teheted a fejedet." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "plüssmackó" @@ -49564,7 +49704,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "pénzköteg" @@ -49619,7 +49758,7 @@ msgstr[1] "szivar" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "Kiolt" @@ -49746,7 +49885,6 @@ msgstr "" "szárítani." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "bankkártya" @@ -49777,7 +49915,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "ezüst benzin hűségkártya" @@ -49789,7 +49926,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Ez a kártya egy kis kedvezményt ad a benzin megvásárlására." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "arany benzin hűségkártya" @@ -49801,7 +49937,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Ez a kártya jó engedményt nyújt a benzin megvásárlásához." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "platina benzin hűségkártya" @@ -49813,7 +49948,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "Ez a kártya nagyszerű kedvezményt ad a benzin megvásárlására." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "tudós belépőkártya" @@ -49831,7 +49965,6 @@ msgstr "" "találsz megfelelőt." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "katonai belépőkártya" @@ -49849,7 +49982,6 @@ msgstr "" "vezérlőpanelbe, ha találsz megfelelőt." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -49864,7 +49996,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -49922,7 +50053,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "villanykörte" @@ -49947,7 +50077,6 @@ msgid "A twisted shard of jagged metal." msgstr "Recés szélű görbe fémdarab." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "agyag virágos cserép" @@ -49959,7 +50088,6 @@ msgid "A nice looking clay pot used for planting." msgstr "Csinos agyagcserép virágültetéshez." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "műanyag virágos cserép" @@ -50104,7 +50232,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -50117,9 +50244,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "elromlott lövegtorony" @@ -50132,9 +50257,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "elromlott tömegoszlató lövegtorony" @@ -50147,16 +50270,14 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "elromlott lézeres lövegtorony" msgstr[1] "elromlott lézeres lövegtorony" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -50170,7 +50291,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -50186,7 +50306,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -50244,21 +50363,18 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -50459,7 +50575,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -50617,7 +50732,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -50631,7 +50745,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -50645,7 +50758,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -50659,7 +50771,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -50671,7 +50782,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -50685,7 +50795,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -50699,7 +50808,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -50713,7 +50821,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -50725,7 +50832,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -50737,7 +50843,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -51220,7 +51325,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "egyéb szoftver" @@ -51232,7 +51336,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Valamiféle hobbi program. Valószínűleg haszontalan." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "hackPRO" @@ -51244,7 +51347,6 @@ msgid "A piece of hacking software." msgstr "Egy hekkelő szoftver." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "MediSoft" @@ -51256,7 +51358,6 @@ msgid "A piece of medical software." msgstr "Egy orvosi szoftver." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MatheMAX" @@ -51268,7 +51369,6 @@ msgid "A piece of mathematical software." msgstr "Egy matematikai szoftver." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "fertőzési adatok" @@ -51280,7 +51380,6 @@ msgid "Medical data on zombie blood." msgstr "Orvosi adatok a zombivérről" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "laboratóriumi adatok" @@ -51292,7 +51391,6 @@ msgid "Research archives from a government laboratory." msgstr "Egy kormányzati kutatóközpont kutatási archívuma." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "vasúti adatok" @@ -51304,7 +51402,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "Földalatti vasútvonalak és menetrendek logisztikai adatai" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -51319,7 +51416,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -52007,7 +52103,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Fedél lezárása" @@ -52040,7 +52136,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Fedél kinyitása" @@ -56087,7 +56183,6 @@ msgstr "" " illetve lőszergyártásnál lehet felhasználni." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -56738,7 +56833,8 @@ msgstr "" "készült páncéllapok kerültek, amelyek némi hajlékonyság és többletsúly árán " "további védelmet nyújtanak. Zsebeiben négy lőszertár fér el." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "tegez" @@ -56753,7 +56849,8 @@ msgstr "" "Ebben a derékon hordott tegezben összesen 20 nyílvessző fér el. Aktiváld a " "nyílvesszők tegezbe pakolásához." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "nyírfakéreg tegez" @@ -56768,7 +56865,8 @@ msgstr "" "Ebben a derékon hordott, nyírfakéregből készült tegezben összesen 20 " "nyílvessző fér el. Aktiváld a nyílvesszők tegezbe pakolásához." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "nagy tegez" @@ -56786,7 +56884,8 @@ msgstr "" "viselték, de NEKIK bezzeg nem kellett zombihordákkal megküzdeni. Aktiváld a " "nyílvesszők tegezbe pakolásához." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "nagy nyírfakéreg tegez" @@ -57316,7 +57415,7 @@ msgstr[1] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Elrakod a %st" @@ -57567,7 +57666,7 @@ msgstr[1] "bőröv" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "A(z) %st betűröd a %sedbe." @@ -57577,14 +57676,14 @@ msgstr "A(z) %st betűröd a %sedbe." #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "Mit tűrsz be az övedbe" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "Egy bőröv. Jó ahhoz, hogy a nadrág ne essen le rólad." @@ -60322,7 +60421,7 @@ msgstr[1] "túlélő kesztyű" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -68434,7 +68533,7 @@ msgstr[1] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "Penge hüvelybe rakása" @@ -77058,8 +77157,8 @@ msgstr[1] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "egylövetű" @@ -77188,7 +77287,7 @@ msgstr[1] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -77207,7 +77306,7 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "cs-csk." @@ -79108,8 +79207,7 @@ msgstr "" "elkészítve ínyencség." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "vér" @@ -79117,7 +79215,6 @@ msgstr[1] "vér" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Vér, valószínűleg emberi. Fúúúúúj!" @@ -79323,8 +79420,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -90804,6 +90900,20 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -95092,7 +95202,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -95106,7 +95215,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -95152,7 +95260,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -95187,7 +95294,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -95201,7 +95307,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -95820,7 +95925,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "kerámia tányér" @@ -95832,7 +95936,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "kerámiatál" @@ -95844,7 +95947,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "kerámia teáscsésze" @@ -95856,7 +95958,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -95937,7 +96038,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "cink tányér" @@ -95949,7 +96049,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -95963,7 +96062,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "cinkcsésze" @@ -95975,7 +96073,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -95987,7 +96084,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -96001,7 +96097,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "üvegtál" @@ -96037,7 +96132,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -96080,7 +96174,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -96122,7 +96215,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "lábos" @@ -96135,7 +96227,6 @@ msgstr "" "Hasznos, ha vizet szeretnél forralni spagettifőzésre vagy bármi másra." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -96148,7 +96239,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "rézlábas" @@ -96164,7 +96254,6 @@ msgstr "" "vékony ónbevonattal, hogy a fém nem mosódjon ki a savas ételekbe." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -96178,7 +96267,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -96192,7 +96280,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "befőzőedény" @@ -96214,7 +96301,6 @@ msgstr "" "pereméig érjen." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -96229,7 +96315,6 @@ msgstr "" " vele." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -96242,7 +96327,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -96256,7 +96340,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "hevenyészett lábas" @@ -96272,7 +96355,6 @@ msgstr "" "annyira jó, mind a rendes edények." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "hevenyészett rézlábas" @@ -96288,7 +96370,6 @@ msgstr "" "annyira jó, mind a rendes edények." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -96625,7 +96706,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -96637,7 +96717,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "hosszú madzag" @@ -98008,7 +98087,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "dupla" @@ -101246,7 +101325,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "cső alatti" @@ -101582,7 +101661,7 @@ msgstr "" "csökkenti a pontosságot." #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "csőszáj" @@ -101769,7 +101848,7 @@ msgstr "" "A hosszúcsövű lőfegyver alá csatolható számszeríjból töviseket lehet kilőni." #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "kelléksín" @@ -101900,7 +101979,7 @@ msgstr "" "befogása." #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "célzás" @@ -106277,14 +106356,12 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" msgstr[1] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "hentes kés" @@ -106300,7 +106377,6 @@ msgstr "" "ideális eszköz." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "steak kés" @@ -106316,7 +106392,6 @@ msgstr "" "fegyver, de holttestek feldarabolásához egész jó." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -106330,7 +106405,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -106346,7 +106420,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -106361,7 +106434,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -106376,7 +106448,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -106391,7 +106462,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -110178,7 +110248,6 @@ msgstr "" "számos textilfajta színezéséhez lehet használni." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "üvegszilánk" @@ -110192,7 +110261,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "üveglap" @@ -110213,7 +110281,6 @@ msgid "" msgstr "Nagyméretű üveglap. Könnyen törik, hasznos ablakok újraüvegezéséhez." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "drótüveg lap" @@ -110226,7 +110293,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "Nagyméretű acéldróttal megerősített üveglap." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "drótüveg tábla" @@ -110239,7 +110305,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "Kisméretű acéldróttal megerősített üveglap." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -110341,7 +110406,6 @@ msgid "A roll of purple carpet." msgstr "Egy feltekert lila szőnyeg." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "kémlelő nyílás" @@ -110355,7 +110419,6 @@ msgid "" msgstr "Egy apró lencsével ellátott fémhenger, ajtóba építendő." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -110367,7 +110430,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "acélcső" @@ -110382,7 +110444,6 @@ msgstr "" "recept is használja." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -110399,7 +110460,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "tüske" @@ -110415,7 +110475,6 @@ msgstr "" "tud okozni." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "rézcsövezés" @@ -110431,7 +110490,6 @@ msgstr "" "megteszi. Hasznos egy pár kézműves recepthez." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "alumínium öntvény" @@ -110446,7 +110504,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "bizmut" @@ -110458,7 +110515,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "Sűrű, de rideg fém, gyakran használják ólom helyett." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "arany" @@ -110475,14 +110531,12 @@ msgstr "" "az értéke jelentősen csökkent." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "platina" msgstr[1] "platina" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "cink" @@ -110502,7 +110556,6 @@ msgstr "" "gyártásánál is használják." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "ólom" @@ -110518,7 +110571,6 @@ msgstr "" "területen használják, így többek között a lőszergyártásban is." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "magnézium por" @@ -110534,7 +110586,6 @@ msgstr "" "Jelzőfáklyák és hasonló tárgyak készítésénél használják." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "ezüst" @@ -110550,7 +110601,6 @@ msgstr "" " értéke jelentősen csökkent." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -110562,7 +110612,6 @@ msgid "A small sheet of metal." msgstr "Egy kicsi fémlemez." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -110578,7 +110627,6 @@ msgstr "" "kézműves projektben is használható." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -110590,7 +110638,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "Formátlan, nehéz acéltömb. Néhány kézműves receptnél jól jöhet." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -110605,7 +110652,6 @@ msgstr "" "Két darab, csavarlyukkal ellátott fémlemez. Ajtók gyártásánál hasznos." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "réztörmelék" @@ -110619,7 +110665,6 @@ msgstr "" "használni." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -110633,7 +110678,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -110672,7 +110716,6 @@ msgstr "" "Hosszú nyelű seprű. Csapnivaló fegyver, kivéve ha macskákat kergetsz vele." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "kerámia szilánk" @@ -110739,7 +110782,6 @@ msgstr "" "elszaladj." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "éles kő" @@ -110810,7 +110852,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "darab műanyag" @@ -110840,7 +110881,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -110855,8 +110895,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -110870,7 +110908,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -110884,7 +110921,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -110898,7 +110934,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "fagerenda" @@ -110914,7 +110949,6 @@ msgstr "" "favágó szekercét vagy fafűrészt." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -110927,7 +110961,6 @@ msgstr "" "Szilánkokra aprított fadarab, nyársként vagy gyújtósként lehetne használni." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "nehéz bot" @@ -110939,7 +110972,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "hosszú bot" @@ -110955,7 +110987,6 @@ msgstr "" "botokra aprítható." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -110968,8 +110999,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "deszka" @@ -110986,7 +111016,6 @@ msgstr "" "építéséhez használható." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -111004,7 +111033,6 @@ msgstr "" "-lemezekre bontható tovább fűrészeléssel vagy favágással." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -111020,7 +111048,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -111035,7 +111062,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -111072,7 +111098,6 @@ msgstr "" "Puha falú, könnyen tárolható műanyag palack 500 ml folyadék tárolására." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "atomkávégép" @@ -111089,7 +111114,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -111115,7 +111139,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "konzervhegesztő" @@ -111131,7 +111154,6 @@ msgstr "" "konzervdobozokat." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "elektromos hússzeletelő (ki)" @@ -111173,7 +111195,6 @@ msgstr "" "aktiválni kell." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "faszenes víztisztító" @@ -111193,7 +111214,6 @@ msgstr "" "ismeretlen forrásból, például folyóból nyert víz tisztátlan lehet." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "faszenes füstölő" @@ -111209,7 +111229,6 @@ msgstr "" "füstöléssel való tartósításához." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "faszenes tűzhely" @@ -111223,7 +111242,6 @@ msgid "" msgstr "Ez egy apró őrlángos faszenes fémtartály. Ételt lehet vele főzni." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "agyagtál" @@ -111235,7 +111253,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "Primitív fedeles agyagedény főzéshez." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "agyag kézimalom" @@ -111247,7 +111264,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "Magvak darálásához használható, kézi meghajtású agyagdaráló." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "agyag teáskanna" @@ -111259,7 +111275,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "Agyagból készített teáskanna. A teához már csak víz kell. Meg tea." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "kávéfőző" @@ -111277,7 +111292,6 @@ msgstr "" "vele kávét, vagy bármilyen másféle italt is." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "ételszárító" @@ -111293,7 +111307,6 @@ msgstr "" "felbecsülhetetlen értéke lehet az étel tartósításánál." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "befőttes üvegnyi erjedő tojás" @@ -111323,7 +111336,6 @@ msgstr "" "folyamat, akkor lezárhatod az üveget." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "hexamin tűzhely" @@ -111339,7 +111351,6 @@ msgstr "" "tabletták meggyújtásával lehet főzni." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -111427,7 +111438,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "konyhai robotgép" @@ -111443,7 +111453,6 @@ msgstr "" "berendezéssel." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "benzines tűzhely" @@ -111472,7 +111481,6 @@ msgstr "" "felmelegítésére használják. Egyszer használható." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "rezsó" @@ -111556,7 +111564,6 @@ msgstr "" "ahhoz, hogy kinyisd és élvezhesd a tartalmát." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "hevenyészett vákumcsomagoló" @@ -111572,7 +111579,6 @@ msgstr "" "vákuummal tartósítani." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "csajkakészlet" @@ -111590,7 +111596,6 @@ msgstr "" "nem úgy, mint a sokkal elterjedtebb, vegyianyaggal égő Esbit tűzhelynél." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "csajka" @@ -111608,7 +111613,6 @@ msgstr "" "sekélyebb, és nincs benne a modernebb csajkák melegítőszála." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "katonai csajkakészlet" @@ -111630,7 +111634,6 @@ msgstr "" "kisméretű, tartós és könnyű." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -111649,7 +111652,6 @@ msgstr "" "lassú." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "multifunkciós tűzhely" @@ -111683,7 +111685,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "lámpaolajas tűzhely" @@ -111697,7 +111698,6 @@ msgid "" msgstr "Egyszerű tűzhely, amelyben lámpaolaj ég. Főzésre készült." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "tésztanyújtó gép" @@ -111713,7 +111713,6 @@ msgstr "" "tészták elkészítéséhez használható vágófejjel." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "befőttes üvegnyi erjedő uborka" @@ -111742,7 +111741,6 @@ msgstr "" "erjedés, akkor lezárhatod az üveget." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "üdítősdoboz tűzhely" @@ -111756,7 +111754,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "kukta" @@ -111774,7 +111771,6 @@ msgstr "" "nyomásérzékeny vegyi reakcióknál is." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "kézi daráló" @@ -111786,7 +111782,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "Magvak darálásához használható, kézi meghajtású kődaráló." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "befőttes üvegnyi erjedő sauerkraut" @@ -111842,7 +111837,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "túlélő csajkakészlet" @@ -111860,7 +111854,6 @@ msgstr "" "olajlámpa. A készlet egyszerű, de tartós eszközökből és anyagokból áll." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "teáskanna" @@ -111872,7 +111865,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "Egy kis fém teáskanna. El sem képzelhető nélküle az uzsonna." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "vákumcsomagoló" @@ -111888,7 +111880,6 @@ msgstr "" "vákuummal tartósítani." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "gofrisütő vas" @@ -111981,7 +111972,6 @@ msgstr "" "kényelmes, mint egy ágy, a földön alvásnál azért egy fokkal jobb." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "összecsukható kerékpár" @@ -111998,6 +111988,22 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "Ez egy relatíve hordozható csomagba összehajtogatott kerékpár." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -112006,7 +112012,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "felfújható csónak" @@ -112064,7 +112069,6 @@ msgstr "" "kényelmesen lehessen rajta aludni. Fel van csavarva, és így szállítható." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -112097,7 +112101,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "továbbfejlesztett ET" @@ -112113,7 +112116,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "fényképezőgép" @@ -112131,7 +112133,6 @@ msgstr "" "azokat egy memóriakártyára. Hagyományos elemmel működik." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -112149,7 +112150,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "mobiltelefon" @@ -112182,7 +112182,6 @@ msgstr "" " rendelkezik." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -112197,7 +112196,6 @@ msgid "You stop lighting up the screen." msgstr "Kikapcsolod a fényes képernyőt." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "vezérlő laptop" @@ -112212,7 +112210,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "irányított antenna" @@ -112241,7 +112238,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "E-Ink Tablet PC" @@ -112255,9 +112251,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "elektrohekker" @@ -112278,7 +112272,6 @@ msgstr "" " de nem csak. Használata 25 töltetnyi elemet igényel." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "Geiger-számláló (ki)" @@ -112297,7 +112290,6 @@ msgstr "" " a folyamatos környezeti sugárterhelés mérését. Jelenleg ki van kapcsolva." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "Geiger-számláló (be)" @@ -112318,7 +112310,6 @@ msgstr "" "van kapcsolva." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "kurblis elemtöltő" @@ -112352,7 +112343,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "mp3 játékos (ki)" @@ -112387,7 +112377,6 @@ msgstr "" "zajokat nem hallasz rendesen." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "zajkeltő (ki)" @@ -112424,7 +112413,6 @@ msgstr "" "megjelennek!" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "kézi videójáték" @@ -112440,7 +112428,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "okostelefon" @@ -112524,7 +112511,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "vibrátor" @@ -112540,7 +112526,6 @@ msgstr "" "segítsen a lazításban. Aktiváld a pihenéshez és a relaxáláshoz." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -112564,7 +112549,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -112579,7 +112563,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "pajszer" @@ -112597,7 +112580,6 @@ msgstr "" "bezúzni." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -112614,7 +112596,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "rögtönzött tolvajkulcs" @@ -112631,7 +112612,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "jégcsákány" @@ -112649,7 +112629,6 @@ msgstr "" "felemeléséhez is lehet használni." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "hevenyészett pajszer" @@ -112665,7 +112644,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "lakatos készlet" @@ -113727,7 +113705,6 @@ msgstr "" "ereget." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "elektromos tűzgyújtó" @@ -113743,7 +113720,6 @@ msgstr "" "hatásfokú öngyújtóként lehet használni." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "tűzfúró" @@ -113762,7 +113738,6 @@ msgstr "" "nehezen lehet vele tüzet gyújtani." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "tábori tűzfúró" @@ -113781,7 +113756,6 @@ msgstr "" "meglehetősen nehezen lehet vele tüzet gyújtani." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "kovakő és acél" @@ -113796,7 +113770,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "öngyújtó" @@ -113815,7 +113788,6 @@ msgstr "" "a különféle közelben található tárgyakat felgyújtani." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "nagyító" @@ -113830,7 +113802,6 @@ msgid "" msgstr "Ez egy nagyító. Napos időben talán tüzet lehet vele gyújtani." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "levélgyufa" @@ -113851,7 +113822,6 @@ msgstr "" "található tárgyakat felgyújtani." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "újratölthető öngyújtó" @@ -113894,7 +113864,6 @@ msgid "" msgstr "Ez egy felpattintható kupakos, újratölthető öngyújtó. Jelenleg ég." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "parázshordó" @@ -113927,7 +113896,6 @@ msgstr "" "modern szerszámok nélkül is képes a tűzgyújtásra." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "parázshordó (ég)" @@ -113967,7 +113935,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "mentőbalta" @@ -113998,7 +113965,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "tűzoltó fejsze" @@ -114015,7 +113981,6 @@ msgstr "" "kicsit sok idő telik el." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "Halligan-pajszer" @@ -114081,7 +114046,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -114095,7 +114059,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "műanyag halcsapda" @@ -114130,7 +114093,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "horgászhorog" @@ -114142,7 +114104,6 @@ msgid "A simple fishing hook." msgstr "Egy egyszerű horog horgászoknak." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "rögtönzött horgászhorog" @@ -114154,7 +114115,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "Csontból vagy fából faragott rögtönzött horgászhorog." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "kezdő pecabot" @@ -114170,7 +114130,6 @@ msgstr "" " zsinórral és annak a végén egy horoggal." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "profi pecabot" @@ -114184,7 +114143,6 @@ msgid "" msgstr "Profi pecabot számos súllyal. Ezzel aztán mindet ki tudod fogni." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -114200,7 +114158,6 @@ msgstr "" "minden megtalálható ahhoz, hogy saját magad készíthess lőszereket." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -114218,7 +114175,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "mechanikai tölténybontó" @@ -114246,7 +114202,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "rézkés" @@ -114279,7 +114234,6 @@ msgstr "" "használják, nagyon könnyű és szinte semmi helyet sem foglal a zsebben." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "mézkaparó" @@ -114295,7 +114249,6 @@ msgstr "" "Elfogadható közelharci fegyver." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "zsebkés" @@ -114340,7 +114293,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "ásóbot" @@ -114356,7 +114308,6 @@ msgstr "" "Sekély gödrök ásásához jól használható, de mélyebbekhez már nem." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "ültetőkanál" @@ -114370,7 +114321,6 @@ msgstr "" "Kicsi és éles kertészeti lapát, tökéletes a pajorok és a kukacok kiásásához." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "eke" @@ -114386,7 +114336,6 @@ msgstr "" "arra haladókat." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -114416,7 +114365,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "kasza" @@ -114434,7 +114382,6 @@ msgstr "" " nehéz bármi másra használni, mint amire eredetileg szánták." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "ásó" @@ -114459,7 +114406,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "sarló" @@ -114477,7 +114423,6 @@ msgstr "" "nehéz bármi másra használni, mint amire eredetileg szánták." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "sövénynyíró (ki)" @@ -114525,7 +114470,6 @@ msgstr "" " áll arra, hogy zombit nyírjon. Kikapcsolásához aktiválni kell." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "atomlámpa" @@ -114547,7 +114491,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "atomlámpa (fedett)" @@ -114571,7 +114514,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -114580,7 +114522,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "Becsukod a lámpa fedelét." @@ -114595,7 +114537,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -114606,7 +114547,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "Kinyitod a lámpa fedelét." @@ -114661,7 +114602,6 @@ msgstr "" "Ez egy vastag gyertya. Nem biztosít sok fényt, de sokáig ég. Jelenleg ég." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "elektromos viharlámpa (ki)" @@ -114706,7 +114646,6 @@ msgid "You turn the lamp off." msgstr "Kikapcsolod a lámpát." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "zseblámpa (ki)" @@ -114880,7 +114819,6 @@ msgstr "" "Ez a magnézium fáklya világít, és beindítása után még egy fél órát fog." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "ipari zseblámpa (ki)" @@ -115032,7 +114970,6 @@ msgid "The %s is extinguished" msgstr "A(z) %s kialszik." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "olvasólámpa" @@ -115078,7 +115015,6 @@ msgstr "" "könyvet olvasni. Ez most be van kapcsolva." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "okos lámpa (ki)" @@ -115132,7 +115068,7 @@ msgstr[1] "fáklya" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "Fáklya meggyújtása" @@ -115140,7 +115076,7 @@ msgstr "Fáklya meggyújtása" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Meggyújtod a fáklyát." @@ -115159,7 +115095,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "A fáklya kialudt." @@ -115173,7 +115109,6 @@ msgstr "" "ég és jól világít." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -115245,7 +115180,6 @@ msgstr "" "orvosi berendezésben használható, kézzel nem lehet beadni." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "autókláv" @@ -115295,7 +115229,6 @@ msgstr "" "szerint az óránkénti két befecskendezést nem szabad túllépni." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "szike" @@ -115330,7 +115263,6 @@ msgstr "" " némi rövidtávú energiát is ad." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "injekciós tű" @@ -115344,7 +115276,6 @@ msgstr "" "beadni." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "hőmérő" @@ -115374,7 +115305,6 @@ msgstr "" "energiát is ad." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "vérvétel készlet" @@ -115392,7 +115322,6 @@ msgstr "" "holttestből lehet vért venni." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "becsomagolt sugárzásmérő badge" @@ -115431,7 +115360,6 @@ msgstr "" "nyúlvánnyal. A legtöbb fémmegmunkáló recepthez szükséges." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "bronz üllő" @@ -115447,7 +115375,6 @@ msgstr "" "fémmegmunkáló recepthez szükséges." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "drótvágó olló" @@ -115464,7 +115391,6 @@ msgstr "" "vágni." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "faszenes kovácsműhely" @@ -115488,7 +115414,6 @@ msgstr "" "oxigénmentes környezetben való izzítását teszi lehetővé." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "fémmegmunkáló véső" @@ -115504,7 +115429,6 @@ msgstr "" "receptnél lesz szükség." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "tégely" @@ -115520,7 +115444,6 @@ msgstr "" "lesz szükség." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "agyagtégely" @@ -115536,7 +115459,6 @@ msgstr "" "recepteknél lehet használni." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "elektromos kovácsműhely" @@ -115553,7 +115475,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "faszénégetéssel elkészült kemence" @@ -115591,7 +115512,6 @@ msgid "" msgstr "Fával megtöltött kemence, amelyből rövid égetés után faszén lesz." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "meggyújtott faszenes kemence" @@ -115632,7 +115552,6 @@ msgstr "" "páncél készíthető." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "hideg- és melegpréselő szerszámkészlet" @@ -115646,7 +115565,6 @@ msgid "" msgstr "Ez egy fémmegmunkáláshoz szükséges préskészlet." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "fémcsipesz" @@ -115688,7 +115606,6 @@ msgstr "" "található gomb lenyomásával hangos hangot ad ki." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "ébresztőóra" @@ -115826,7 +115743,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "árokásó szerszám" @@ -115866,7 +115782,6 @@ msgstr "" "tekerték be. Kilövés előtt meg kell gyújtani." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "szőrmematrac" @@ -115889,7 +115804,6 @@ msgstr "" " a földre helyezéshez aktiválni kell." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "köteles horog" @@ -115915,7 +115829,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "kézi pumpa" @@ -115970,7 +115883,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "Ezt a dudát az autók elektromos rendszeréhez szokás csatlakoztatni." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "nagy radiátor" @@ -116010,7 +115922,6 @@ msgid "You turn off the heater." msgstr "Kikapcsolod a radiátort." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -116112,7 +116023,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "polifóm" @@ -116167,7 +116077,6 @@ msgstr "" "használható számsorozat szerepel." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "kis radiátor" @@ -116340,7 +116249,6 @@ msgstr "" " méretű, szinte semmi súlya sincs. A levegő mintha sűrűbb lenne a közelében." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "síp szerszámkészlet" @@ -116475,7 +116383,6 @@ msgstr "" "legjobbé volt." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "tyúkketrec" @@ -116493,7 +116400,6 @@ msgstr "" " vagy használd egy üres mezőn a betárolt állat elengedéséhez." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "kutyasíp" @@ -116511,7 +116417,6 @@ msgstr "" "már szelídek, akkor megtámadják az ellenséget." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -116523,7 +116428,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -116535,7 +116439,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -116549,7 +116452,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "kisállat-hordozó" @@ -116566,7 +116468,6 @@ msgstr "" "elengedéséhez." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "fa kisállat-hordozó" @@ -116583,7 +116484,6 @@ msgstr "" "elengedéséhez." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -116622,7 +116522,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "távirányító" @@ -116640,7 +116539,6 @@ msgstr "" "volt egy luxus kivitelezésű autó is?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "távirányítós autó" @@ -116683,7 +116581,6 @@ msgstr "" "azok rádiós jellel aktiválhatóvá válnak." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "rádió (ki)" @@ -116714,7 +116611,6 @@ msgstr "" " A közeli rádiótornyokból sugárzott adást játssza le." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "adóvevő" @@ -116728,7 +116624,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "távoli jármű vezérlő" @@ -116823,7 +116718,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "ponyva esőgyűjtő" @@ -116841,7 +116735,6 @@ msgid "" msgstr "Néhány bot, zsinór és egy ponyva hevenyészett esőgyűjtéshez." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "légnyomásmérő" @@ -116870,7 +116763,6 @@ msgstr "" " ki.\" Úgy érzed, mintha valami mozogna a belsejében." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "vegyész készlet" @@ -116888,7 +116780,6 @@ msgstr "" "néhány vegyi recept elkészítésére alkalmas." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "kezdő vegyész készlet" @@ -116906,7 +116797,6 @@ msgstr "" "valamilyen hőforrás is kell még." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "elektrolízis készlet" @@ -116938,7 +116828,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "hidrogén tartály" @@ -116954,7 +116843,6 @@ msgstr "" " vagy egy zeppelint szeretnél a levegőbe emelni, akkor még jól jöhet." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "nedvességmérő" @@ -116967,7 +116855,6 @@ msgstr "" "Műanyag higrométer, amely a levegő relatív páratartalmát képes leolvasni." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "nitrogén tartály" @@ -116983,7 +116870,6 @@ msgstr "" "semleges szerepe miatt hasznos. Ne lélegezd be." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "oxigén tartály" @@ -116999,7 +116885,6 @@ msgstr "" "szerint O2 van benne." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "platinarács" @@ -117058,7 +116943,6 @@ msgstr "" "Ez a kísérleti berendezés aktiválása után rövid távolságra teleportál." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "Doppler Radar Turbo 2000" @@ -117075,7 +116959,6 @@ msgstr "" "származna. Az ősi monokróm kijelzőn számos meteorológiai adat látható." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "alapszintű laborelemző készlet" @@ -117098,7 +116981,6 @@ msgstr "" " vegyület az, amit szerettél volna elkészíteni." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "apró ellensúlyos mérleg" @@ -117113,7 +116995,6 @@ msgstr "" "Ez az egyszerű mérleg számos acélsúly segítségével méri pontosan a tömeget." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "spektrofotométer" @@ -117129,7 +117010,6 @@ msgstr "" "fényabszorbcióját méri egy különleges cső, a küvetta segítségével." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "pH-érték mérő" @@ -117147,7 +117027,6 @@ msgstr "" "anyagba, és így mérhetővé válik az anyag savassága." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -117163,7 +117042,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "olvadási pont mérő" @@ -117186,7 +117064,6 @@ msgstr "" "kideríthető az anyag jellege és tisztasága." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -117203,7 +117080,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "fényérzékelő" @@ -117219,7 +117095,6 @@ msgstr "" "energiát." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "üvegprizma" @@ -117248,7 +117123,6 @@ msgid "" msgstr "Ez egy apró méretű üvegcső. Mi mást akarsz tudni róla?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -117264,7 +117138,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -117281,7 +117154,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -117299,7 +117171,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -117317,7 +117188,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -117337,7 +117207,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -117354,7 +117223,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -117413,7 +117281,6 @@ msgstr "" "aktiválni kell. Ez a darab sérült, és javításra szorul." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "nagy sátor" @@ -117428,7 +117295,6 @@ msgstr "" "Családi méretű sátor. Jó sok hely van benne, de nagyon sok helyet foglal." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "óvóhely készlet" @@ -117442,7 +117308,6 @@ msgstr "" "Elhelyezéshez aktiválni kell." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "sátor" @@ -117519,7 +117384,6 @@ msgstr "" "elfogyasztására készítették." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -117531,7 +117395,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -117543,7 +117406,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "olló" @@ -117558,7 +117420,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -117570,7 +117431,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Egy darab papír, tüzet lehet vele gyújtani." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -117585,7 +117445,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -117599,7 +117458,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "kötőtű" @@ -117616,7 +117474,6 @@ msgstr "" "varrni." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "csont tű" @@ -117646,7 +117503,6 @@ msgstr "" "elengedhetetlen." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "fa tű" @@ -117666,8 +117522,7 @@ msgstr "" "kevlar." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "varrókészlet" @@ -117701,8 +117556,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "szabókészlet" @@ -117718,7 +117572,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "fürdőszobai mérleg" @@ -117731,7 +117584,6 @@ msgstr "" "Ez egy kisméretű fürdőszobai mérleg, ruhátlan testsúlyméréshez használják." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -117743,7 +117595,6 @@ msgid "This is a simple scrub brush." msgstr "Egy egyszerű súrolókefe." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "elektromos szakállvágó" @@ -117788,7 +117639,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "borotvapenge" @@ -117816,7 +117666,6 @@ msgstr "" "lehet vele borotválkozni. Használatonként 1 egységnyi szappant igényel." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "szivacs" @@ -117856,7 +117705,6 @@ msgstr "" "borotválkozni. Használatonként 1 egységnyi szappant igényel." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "mosódeszka" @@ -117872,7 +117720,6 @@ msgstr "" "koszos ruhákat." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "mosókészlet" @@ -117914,7 +117761,6 @@ msgstr "" "fakultatívan be is áshatod a földbe." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "pengés csapda" @@ -117937,7 +117783,6 @@ msgstr "" "erővel suhint. A csapda egy 3x3 lépéses területet fed le." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "szöges léces csapda" @@ -117986,7 +117831,6 @@ msgstr "" "és ha bárki rálép, a zajra felfigyelsz." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "szétszórható lábtövis" @@ -118007,7 +117851,6 @@ msgstr "" "gyanútlan áldozat rálép az egyike, akkor a tövis átszúrja a lábát." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "szétszórható üveg lábtövis" @@ -118065,7 +117908,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -118093,7 +117935,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "drótakadály csapda" @@ -118131,7 +117972,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -118152,7 +117992,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "fa fejsze" @@ -118181,7 +118020,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "láncfűrész (ki)" @@ -118223,7 +118061,6 @@ msgstr "" "kell." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "körfűrész (ki)" @@ -118270,7 +118107,6 @@ msgstr "" "Kikapcsoláshoz használni kell." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "rézbalta" @@ -118301,7 +118137,6 @@ msgstr "" "vele vágni vagy bekalapálni." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "elektromos láncfűrész (ki)" @@ -118405,7 +118240,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "fafűrész" @@ -118418,7 +118252,6 @@ msgstr "" "Ezzel a vékony pengéjű fűrésszel fából készült tárgyakat lehet szétvágni." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -118426,7 +118259,6 @@ msgstr[1] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -118567,7 +118399,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "acetilén gázgép" @@ -118583,7 +118414,6 @@ msgstr "" "nyomású acetilén gázt." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -118599,7 +118429,6 @@ msgstr "" "valamint a felszín simítására szokták alkalmazni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "téglaégető kemence" @@ -118615,7 +118444,6 @@ msgstr "" "bármilyen agyagból készült tárgyat kiégethetsz vele." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "kártoló" @@ -118632,7 +118460,6 @@ msgstr "" "fellazítani és megtisztítani." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "festékkaparó" @@ -118645,7 +118472,6 @@ msgstr "" "Vésőhöz hasonló szerszám, kifejezetten festék eltávolítására tervezték." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -118659,7 +118485,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "karmos pajszer" @@ -118677,7 +118502,6 @@ msgstr "" "csatornafedeleket is fel lehet szedni. Meg fejeket lehet vele még bezúzni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "betonkeverő" @@ -118693,7 +118517,6 @@ msgstr "" "kezelni, valamint elemmel működik. Beépített fűtőszállal is rendelkezik." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "akkumulátoros fúró" @@ -118706,7 +118529,6 @@ msgid "" msgstr "Ez egy akkumulátoros fúrógép, számos fúrófejjel." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "guzsaly és orsó" @@ -118722,7 +118544,6 @@ msgstr "" "és fonalat fonni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "elektromos légkalapács" @@ -118737,7 +118558,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "fémfűrész" @@ -118763,7 +118583,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "kalapács" @@ -118795,7 +118614,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "kézi fúró" @@ -118810,7 +118628,6 @@ msgstr "" "Primitív kézi fúró egyetlen egy fúrófejjel. Használata lassú és kimerítő." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "gumicső" @@ -118826,7 +118643,6 @@ msgstr "" "kocsiból üzemanyagot lopni... izé, kölcsön venni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "hidraulikus emelő" @@ -118838,7 +118654,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "Hordozható hidraulikus emelő járművek megemeléséhez." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "hevenyészett emelő" @@ -118854,7 +118669,6 @@ msgstr "" "megemelni, persze csak ha elég bátor vagy használni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "ollós emelő" @@ -118866,7 +118680,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "Kisméretű ollós emelő járművek megemeléséhez." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "légkalapács" @@ -118884,7 +118697,6 @@ msgstr "" "lyukat." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -118898,7 +118710,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "elektromos kemence" @@ -118918,7 +118729,6 @@ msgstr "" "hogy egy jármű elektromos rendszeréből fusson." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "fegyverkovács javító készlet" @@ -118937,7 +118747,6 @@ msgstr "" "töltet szükséges." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "hevenyészett kalapács" @@ -118951,7 +118760,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "fémreszelő készlet" @@ -118967,7 +118775,6 @@ msgstr "" " mennyiségű anyagot." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "fém simítószerszám" @@ -118983,7 +118790,6 @@ msgstr "" " beton vagy habarcs kisimítására." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "egyéb javító készlet" @@ -119018,7 +118824,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "műanyag öntőforma" @@ -119033,7 +118838,6 @@ msgstr "" "Ez egy műanyag öntőforma. Műanyag tárgyak elkészítéséhez lehet formázni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "többfunkciós szerszám" @@ -119048,7 +118852,6 @@ msgstr "" "Ennek az ügyes tervezésű fogónak a nyelében számos kisebb szerszám rejtőzik." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "acetilén lánghegesztő" @@ -119070,7 +118873,6 @@ msgstr "" "képességén túl aktiválásával fémkorlátokat is szét lehet vele vágni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "ecset" @@ -119082,7 +118884,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "Falfestéshez használható széles ecset." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "csákány" @@ -119098,7 +118899,6 @@ msgstr "" "képességek birtokában kemény célpontokat) lehet szétzúzni. Szerencse fel!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -119112,7 +118912,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "fogó" @@ -119127,7 +118926,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "elektromos polírozó" @@ -119156,7 +118954,6 @@ msgstr "" "de egy igazi kalapáccsal azért nem veszi fel a versenyt." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "csavarhúzó" @@ -119173,7 +118970,6 @@ msgstr "" "tevékenységhez." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "csavarhúzó készlet" @@ -119189,7 +118985,6 @@ msgstr "" "benne precízebb munkához szükséges szerszám." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "lőfegyver javító készlet" @@ -119208,7 +119003,6 @@ msgstr "" "töltet szükséges." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -119241,7 +119035,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "szerszámosláda" @@ -119257,7 +119050,6 @@ msgstr "" "szerszám megtalálható." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -119286,7 +119078,6 @@ msgid "" msgstr "A kezeidből kiálló szerszámokkal rengeteg mindent tudsz elvégezni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "ívhegesztő" @@ -119302,7 +119093,6 @@ msgstr "" "vagy szereléshez elengedhetetlen." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "fa simítószerszám" @@ -119318,7 +119108,6 @@ msgstr "" "használják. Jobb híján fejek bezúzására is megteszi." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "gyapjúpászma" @@ -119334,7 +119123,6 @@ msgstr "" "készíthető belőle." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "sniccer" @@ -119354,7 +119142,6 @@ msgstr "" "kicsi ahhoz, hogy tetemek feldarabolásához lehessen használni." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "franciakulcs" @@ -119370,7 +119157,6 @@ msgstr "" " tud lenni, valamint számos gépészeti projekthez szükséges." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -119385,7 +119171,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -120705,6 +120490,17 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -121052,7 +120848,6 @@ msgstr "" "fagyit szerettek volna enni, és nem mások agyát." #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -121513,6 +121308,13 @@ msgstr[1] "faasztal" msgid "A crude wooden table." msgstr "Egy faragatlan faasztal." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -121842,6 +121644,30 @@ msgstr[1] "görgőkészlet" msgid "A set of casters, like on a shopping cart." msgstr "Egy készletnyi görgő, amilyen a bevásálókocsikon is van." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -122681,13 +122507,6 @@ msgstr "CEMENT" msgid "FERTILIZER" msgstr "MŰTRÁGYA" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "KÖVEK" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -123012,13 +122831,6 @@ msgstr "PAPÍR" msgid "PLASTIC" msgstr "MŰANYAG" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "ELEKTRONIKUS HULLADÉK" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -123585,7 +123397,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -123609,7 +123421,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -127779,7 +127591,7 @@ msgstr[1] "gonosz multi-tűzhely" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "A multifunkciós tűzhely öntudatra ébredt! Vigyázz!!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "hologram" @@ -127787,7 +127599,7 @@ msgstr[1] "hologram" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "Fényből készült kép, szinte teljesen megegyezik a valódival." @@ -138550,9 +138362,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "Csereberéljünk." @@ -139288,9 +139100,9 @@ msgstr "Mit csinálsz itt?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -139306,9 +139118,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "Tudok valamit tenni érted?" @@ -139336,25 +139148,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -139374,9 +139186,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -145939,7 +145751,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -155672,17 +155484,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -156970,7 +156782,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -162674,9 +162486,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -172011,7 +171823,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Erdő" @@ -172379,7 +172190,7 @@ msgid "island" msgstr "sziget" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "faház" @@ -172401,7 +172212,6 @@ msgstr "faház pincéje" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "erdő" @@ -175154,7 +174964,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "tópart" @@ -175201,7 +175010,7 @@ msgstr "FEGYVER" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "MIND" @@ -175326,6 +175135,13 @@ msgstr "ELEKTRONIKUS" msgid "CBMS" msgstr "KBM" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "SZERSZÁMOK" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -175339,7 +175155,7 @@ msgstr "VILÁGÍTÁS" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "PÁNCÉL" @@ -175380,7 +175196,7 @@ msgstr "ORVOSI" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "ANYAGOK" @@ -185292,7 +185108,7 @@ msgstr "összehajtható könnyű váz" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -185390,6 +185206,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "folyosó világítás" @@ -187319,6 +187142,24 @@ msgstr "" "Forgócsapra szerelt apró kerekek készlete, mint amilyen a guruló irodai " "székeken, vagy a bevásárlókocsikon található." +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -187392,7 +187233,7 @@ msgstr "" "Egy üveglap, segítségével kiláthatsz a járműből. Drótos megerősítésének " "köszönhetően nehezebben törik be, mint a hagyományos üveg." -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Bicikli" @@ -187460,6 +187301,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "kenu" @@ -187605,8 +187450,8 @@ msgid "Wheelbarrow" msgstr "Talicska" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Összecsukható kerekesszék" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -187948,7 +187793,6 @@ msgid "Tour Bus" msgstr "Turnézó busz" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "Páncélozott furgon" @@ -194724,7 +194568,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -194732,8 +194576,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -195678,9 +195522,9 @@ msgstr[1] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -195693,7 +195537,7 @@ msgstr[1] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -212718,74 +212562,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -212795,177 +212571,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -214181,115 +213786,134 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" -msgstr[0] "Vér energia generátor KBM" -msgstr[1] "Vér energia generátor KBM" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "Transzlokátor kapu építése" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -214297,86 +213921,97 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" msgstr[1] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" @@ -214387,71 +214022,116 @@ msgstr "" "varázslatokat tanulni, valamint csökken a sikertelen varázslás esélye. " "Könyvek és varázslatok tanulmányozásával sajátítható el." -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" msgstr[1] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -214459,25 +214139,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -214485,25 +214165,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -214511,7 +214191,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -214519,7 +214199,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -214529,7 +214209,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -214539,7 +214219,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -214549,7 +214229,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -214559,7 +214239,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -214568,7 +214248,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -214577,7 +214257,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -214587,7 +214267,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -214596,18 +214276,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -214616,7 +214296,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -214624,18 +214304,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -214645,7 +214325,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -214654,18 +214334,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -214673,25 +214353,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -214699,59 +214379,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -214760,7 +214472,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -214769,25 +214481,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "Templom" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -214799,7 +214511,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -214810,25 +214522,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -214838,7 +214550,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -214848,588 +214560,640 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -215441,245 +215205,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -215687,808 +215424,872 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" msgstr[1] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -216496,20 +216297,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -216517,74 +216318,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -216592,21 +216393,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -216614,105 +216415,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -216720,16 +216545,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -216737,74 +216562,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -216812,357 +216637,357 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -217170,175 +216995,99 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -217346,113 +217095,84 @@ msgstr[1] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -217460,14 +217180,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -217475,39 +217195,39 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -217515,13 +217235,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -217529,13 +217249,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -217543,114 +217263,90 @@ msgstr[1] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -217658,12 +217354,12 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -217671,66 +217367,66 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -217738,19 +217434,19 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -217758,13 +217454,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -217772,13 +217468,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -217786,13 +217482,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -217800,70 +217496,70 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -217871,12 +217567,12 @@ msgstr[1] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -217884,313 +217580,278 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" msgstr[1] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -218199,4328 +217860,4915 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" msgstr[1] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" +msgstr[0] "kis manakristály" +msgstr[1] "kis manakristály" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" +"Ezt a kis manakristályt kifejezetten arra tervezték, hogy varázsvessző " +"hegyére lehessen felhelyezni." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Mjölnir" +msgstr[1] "Mjölnir" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "Gungnir" +msgstr[1] "Gungnir" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "Laevateinn" +msgstr[1] "Laevateinn" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" -msgstr[0] "kis manakristály" -msgstr[1] "kis manakristály" - -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." msgstr "" -"Ezt a kis manakristályt kifejezetten arra tervezték, hogy varázsvessző " -"hegyére lehessen felhelyezni." -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Mjölnir" -msgstr[1] "Mjölnir" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "Gungnir" -msgstr[1] "Gungnir" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "Laevateinn" -msgstr[1] "Laevateinn" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -222529,7 +222777,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -222537,14 +222785,14 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -222552,40 +222800,40 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -222594,83 +222842,83 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" msgstr[1] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -222678,39 +222926,115 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -222721,31 +223045,31 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -222755,14 +223079,14 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -222771,62 +223095,63 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" msgstr[1] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" msgstr[1] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" msgstr[1] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -222835,25 +223160,25 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -222862,204 +223187,249 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" msgstr[1] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" msgstr[1] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" msgstr[1] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" msgstr[1] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" msgstr[1] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -223067,222 +223437,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -223290,48 +223660,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -223339,12 +223709,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -223352,12 +223722,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -223365,103 +223735,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -223470,276 +223840,296 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" msgstr[1] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" msgstr[1] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "ez egy bug" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "antikvárium" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "Mocsár" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Bionika kézi beültetése" @@ -230400,6 +230790,10 @@ msgstr "Aktiválás / vizsgálás választása" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -230592,10 +230986,6 @@ msgstr "Tárgy leejtése a szomszédos négyzetre" msgid "View/Activate Bionics" msgstr "Bionikus modulok áttekintése/aktiválása" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Mutációk áttekintése/aktiválása" @@ -236732,6 +237122,7 @@ msgstr " BIONIKA " msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -236800,6 +237191,10 @@ msgstr "BE" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "(üzemanyagtartaklékos mód BE)" @@ -237651,6 +238046,10 @@ msgstr "%s nincs szabad keze ahhoz, hogy azt viselhesse." msgid "Can't wear more than one %s!" msgstr "Egynél több %st nem lehet viselni!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -253609,7 +254008,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -259597,7 +260001,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -264752,10 +265162,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -268987,7 +269398,7 @@ msgstr "Világ alapbeállítása" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -276819,6 +277230,11 @@ msgstr "A(z) %s ültetője az alacsony hőmérséklet miatt leáll." msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -276960,6 +277376,16 @@ msgstr "A(z) %s motorjából tüsszögő hang hallattszik." msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -277555,11 +277981,6 @@ msgstr "Gondosan hordozható állapotba csomagolod össze a(z) %st." msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "összehajtott %s" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/id.po b/lang/po/id.po index 766d91476360..b04a6c6115d3 100644 --- a/lang/po/id.po +++ b/lang/po/id.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Language-Team: Indonesian (https://app.transifex.com/bn-team/teams/113585/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -7494,6 +7494,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10808,7 +10819,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11256,75 +11267,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11338,51 +11365,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12125,12 +12190,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12172,6 +12237,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12629,7 +12865,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12664,7 +12900,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12701,7 +12937,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12869,7 +13105,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -12987,7 +13223,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13062,7 +13298,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13244,7 +13480,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14429,7 +14665,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14438,22 +14674,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14466,7 +14702,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14478,7 +14714,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14491,7 +14727,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14509,7 +14745,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14518,12 +14754,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14583,7 +14819,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15005,7 +15241,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19239,12 +19475,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19269,18 +19505,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19289,7 +19525,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19297,12 +19533,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19327,18 +19563,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19346,19 +19582,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19381,12 +19617,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20143,15 +20379,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20159,7 +20395,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20167,6 +20403,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27357,7 +27621,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27473,7 +27736,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27537,7 +27799,6 @@ msgid_plural "none" msgstr[0] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27557,21 +27818,18 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27589,8 +27847,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -27622,13 +27879,11 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27669,7 +27924,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27686,7 +27940,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -27730,7 +27983,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -27741,14 +27993,12 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -27759,7 +28009,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28123,7 +28372,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28164,6 +28414,18 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28239,7 +28501,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28269,7 +28532,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28613,7 +28877,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -28720,8 +28983,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -28965,7 +29229,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -28993,7 +29257,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29111,7 +29375,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29170,7 +29433,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29489,7 +29751,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29576,7 +29838,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29603,7 +29865,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -29772,7 +30034,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30109,7 +30371,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30126,7 +30388,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30138,7 +30399,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30152,7 +30412,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30173,7 +30432,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30318,7 +30576,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31161,7 +31418,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -31575,7 +31831,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -31715,7 +31970,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -31739,7 +31993,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32280,9 +32533,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32315,7 +32580,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32330,7 +32594,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -32827,7 +33090,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -32841,7 +33103,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -32856,7 +33117,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -32920,7 +33180,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -32957,7 +33216,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34440,7 +34698,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -34822,7 +35080,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35077,7 +35334,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -36714,7 +36970,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37350,7 +37605,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38382,7 +38636,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "" @@ -39304,7 +39557,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -39480,6 +39732,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -39539,7 +39827,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -39550,7 +39837,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -39561,7 +39847,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -39572,7 +39857,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -39593,7 +39877,6 @@ msgid "A cleansing agent made into bars." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -39604,7 +39887,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -39615,7 +39897,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -39658,7 +39939,6 @@ msgid_plural "watery plutonium slurry" msgstr[0] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -39882,7 +40162,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -39923,7 +40202,6 @@ msgid "" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40124,7 +40402,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "" @@ -40155,7 +40432,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -40470,7 +40746,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -42363,7 +42638,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "" @@ -42376,7 +42650,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -42390,7 +42663,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -42404,7 +42676,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -42426,7 +42697,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "" @@ -42451,7 +42721,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -42462,7 +42731,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -42475,7 +42743,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -42823,7 +43090,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -42836,7 +43102,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -43177,7 +43442,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -43222,7 +43486,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -44681,7 +44944,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -44693,7 +44955,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -44818,7 +45079,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -44829,7 +45089,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -44840,7 +45099,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -44851,7 +45109,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -44862,7 +45119,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -44873,7 +45129,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -44884,7 +45139,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -44917,7 +45171,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "" @@ -44930,7 +45183,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -44941,7 +45193,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -44970,7 +45221,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -44984,7 +45234,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -44997,7 +45246,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -45011,7 +45259,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -45082,7 +45329,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -45093,7 +45339,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -45106,7 +45351,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -45120,7 +45364,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -45167,7 +45410,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -45181,7 +45423,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -45194,7 +45435,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -45205,7 +45445,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -45219,7 +45458,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -45276,7 +45514,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -45324,7 +45561,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -45335,7 +45571,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -45347,7 +45582,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -45358,7 +45592,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -45395,7 +45628,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -45406,7 +45638,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -45419,7 +45650,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -45429,9 +45659,7 @@ msgstr[0] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -45444,9 +45672,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -45459,7 +45685,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -45472,7 +45697,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -45485,7 +45709,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -45498,7 +45721,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -45518,7 +45740,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -45531,7 +45752,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -45544,7 +45764,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -45556,9 +45775,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -45572,7 +45789,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -45585,19 +45801,16 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -45611,7 +45824,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -45625,9 +45837,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -45641,9 +45851,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -45656,9 +45864,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -45671,9 +45877,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -45686,9 +45890,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -45701,9 +45903,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -45716,9 +45916,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -45757,7 +45955,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -45768,7 +45965,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -45779,7 +45975,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -45790,7 +45985,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -45803,7 +45997,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -45816,7 +46009,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -45829,7 +46021,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -45842,7 +46033,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -45855,7 +46045,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -45869,7 +46058,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -45883,7 +46071,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -45896,7 +46083,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -45938,7 +46124,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -45949,7 +46134,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -45962,7 +46146,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -45975,7 +46158,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -45999,7 +46181,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -46010,7 +46191,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -46035,7 +46215,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -46066,7 +46245,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -46080,7 +46258,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -46102,7 +46279,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -46113,7 +46289,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -46127,7 +46302,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -46141,7 +46315,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -46171,7 +46344,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -46184,7 +46356,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -46216,7 +46387,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -46228,13 +46398,11 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -46247,7 +46415,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -46258,7 +46425,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -46269,7 +46435,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -46280,7 +46445,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -46303,7 +46467,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -46316,7 +46479,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -46329,7 +46491,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -46340,7 +46501,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -46351,7 +46511,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -46364,7 +46523,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -46375,7 +46533,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -46386,7 +46543,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -46397,7 +46553,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -46408,7 +46563,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -46419,7 +46573,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -46430,7 +46583,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -46441,7 +46593,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -46452,7 +46603,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -46463,7 +46613,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -46474,7 +46623,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -46485,7 +46633,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -46496,7 +46643,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -46507,7 +46653,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -46518,7 +46663,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -46532,7 +46676,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -46568,7 +46711,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -46579,7 +46721,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -46592,7 +46733,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -46603,7 +46743,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -46622,7 +46761,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -46670,7 +46808,7 @@ msgstr[0] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -46779,7 +46917,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -46805,7 +46942,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -46816,7 +46952,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -46827,7 +46962,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -46838,7 +46972,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -46852,7 +46985,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -46866,7 +46998,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -46880,7 +47011,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -46930,7 +47060,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -46951,7 +47080,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -46962,7 +47090,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -47086,7 +47213,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -47098,9 +47224,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -47112,9 +47236,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -47126,15 +47248,13 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -47147,7 +47267,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -47162,7 +47281,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -47216,19 +47334,16 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -47406,7 +47521,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -47555,7 +47669,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -47568,7 +47681,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -47581,7 +47693,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -47594,7 +47705,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -47605,7 +47715,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -47618,7 +47727,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -47631,7 +47739,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -47644,7 +47751,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -47655,7 +47761,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -47666,7 +47771,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -48115,7 +48219,6 @@ msgid_plural "software" msgstr[0] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -48126,7 +48229,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -48137,7 +48239,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -48148,7 +48249,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -48159,7 +48259,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -48170,7 +48269,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -48181,7 +48279,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -48192,7 +48289,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -48206,7 +48302,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -48817,7 +48912,7 @@ msgstr[0] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -48849,7 +48944,7 @@ msgstr[0] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -52131,7 +52226,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -52686,7 +52780,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -52698,7 +52793,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -52710,7 +52806,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -52723,7 +52820,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -53186,7 +53284,7 @@ msgstr[0] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -53414,7 +53512,7 @@ msgstr[0] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -53424,14 +53522,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -55807,7 +55905,7 @@ msgstr[0] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -63055,7 +63153,7 @@ msgstr[0] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -70445,8 +70543,8 @@ msgstr[0] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -70556,7 +70654,7 @@ msgstr[0] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -70573,7 +70671,7 @@ msgid_plural "pump action shotguns" msgstr[0] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -72215,15 +72313,13 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -72406,8 +72502,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -82339,6 +82434,19 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -86189,7 +86297,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -86202,7 +86309,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -86246,7 +86352,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -86280,7 +86385,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -86293,7 +86397,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -86846,7 +86949,6 @@ msgid_plural "generic cook pots" msgstr[0] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -86857,7 +86959,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -86868,7 +86969,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -86879,7 +86979,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -86959,7 +87058,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -86970,7 +87068,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -86983,7 +87080,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -86994,7 +87090,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -87005,7 +87100,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -87018,7 +87112,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -87051,7 +87144,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -87093,7 +87185,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -87134,7 +87225,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -87145,7 +87235,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -87157,7 +87246,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -87170,7 +87258,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -87183,7 +87270,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -87196,7 +87282,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -87212,7 +87297,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -87224,7 +87308,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -87236,7 +87319,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -87249,7 +87331,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -87262,7 +87343,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -87275,7 +87355,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -87575,7 +87654,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -87586,7 +87664,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "" @@ -88747,7 +88824,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -91492,7 +91569,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -91796,7 +91873,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -91958,7 +92035,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -92067,7 +92144,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -95872,13 +95949,11 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -95891,7 +95966,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -95904,7 +95978,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -95917,7 +95990,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -95932,7 +96004,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -95946,7 +96017,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -95960,7 +96030,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -95974,7 +96043,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -99181,7 +99249,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -99194,7 +99261,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -99214,7 +99280,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -99226,7 +99291,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -99238,7 +99302,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -99333,7 +99396,6 @@ msgid "A roll of purple carpet." msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -99346,7 +99408,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -99357,7 +99418,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -99369,7 +99429,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -99383,7 +99442,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -99396,7 +99454,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -99409,7 +99466,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -99423,7 +99479,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -99434,7 +99489,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -99448,13 +99502,11 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -99469,7 +99521,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "" @@ -99482,7 +99533,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -99495,7 +99545,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "" @@ -99508,7 +99557,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -99519,7 +99567,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -99532,7 +99579,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -99543,7 +99589,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -99556,7 +99601,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -99567,7 +99611,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -99580,7 +99623,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -99613,7 +99655,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -99670,7 +99711,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -99734,7 +99774,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -99760,7 +99799,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -99774,8 +99812,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -99788,7 +99824,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -99801,7 +99836,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -99814,7 +99848,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -99827,7 +99860,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -99838,7 +99870,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -99849,7 +99880,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -99862,7 +99892,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -99874,8 +99903,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -99889,7 +99917,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -99903,7 +99930,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -99918,7 +99944,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -99932,7 +99957,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -99965,7 +99989,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -99981,7 +100004,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -100005,7 +100027,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -100018,7 +100039,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -100056,7 +100076,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -100071,7 +100090,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -100084,7 +100102,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -100097,7 +100114,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -100108,7 +100124,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -100119,7 +100134,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -100130,7 +100144,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -100144,7 +100157,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -100157,7 +100169,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -100182,7 +100193,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -100195,7 +100205,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -100277,7 +100286,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -100290,7 +100298,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -100315,7 +100322,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -100387,7 +100393,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -100400,7 +100405,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -100414,7 +100418,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -100428,7 +100431,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -100444,7 +100446,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -100459,7 +100460,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -100486,7 +100486,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -100499,7 +100498,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -100512,7 +100510,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -100537,7 +100534,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -100550,7 +100546,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -100564,7 +100559,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -100575,7 +100569,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -100624,7 +100617,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -100638,7 +100630,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -100649,7 +100640,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -100662,7 +100652,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -100745,7 +100734,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -100760,6 +100748,21 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -100768,7 +100771,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -100816,7 +100818,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -100848,7 +100849,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -100863,7 +100863,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -100877,7 +100876,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -100894,7 +100892,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -100921,7 +100918,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -100935,7 +100931,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -100949,7 +100944,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -100974,7 +100968,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -100987,9 +100980,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -101005,7 +100996,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -101020,7 +101010,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -101036,7 +101025,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -101066,7 +101054,6 @@ msgid_plural "laptop computers - lit screen" msgstr[0] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -101095,7 +101082,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -101124,7 +101110,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -101139,7 +101124,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -101218,7 +101202,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -101231,7 +101214,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -101254,7 +101236,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -101268,7 +101249,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -101282,7 +101262,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -101298,7 +101277,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -101314,7 +101292,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -101328,7 +101305,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -101343,7 +101319,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -102263,7 +102238,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -102276,7 +102250,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -102291,7 +102264,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -102306,7 +102278,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -102320,7 +102291,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -102334,7 +102304,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -102348,7 +102317,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -102363,7 +102331,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -102401,7 +102368,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -102430,7 +102396,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -102465,7 +102430,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -102491,7 +102455,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -102504,7 +102467,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -102556,7 +102518,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -102569,7 +102530,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -102598,7 +102558,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -102609,7 +102568,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -102620,7 +102578,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -102633,7 +102590,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -102646,7 +102602,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -102659,7 +102614,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -102676,7 +102630,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -102701,7 +102654,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -102727,7 +102679,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -102740,7 +102691,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -102779,7 +102729,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -102792,7 +102741,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -102804,7 +102752,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -102817,7 +102764,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -102844,7 +102790,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -102858,7 +102803,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -102881,7 +102825,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -102895,7 +102838,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -102936,7 +102878,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -102957,7 +102898,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -102980,7 +102920,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -102988,7 +102927,7 @@ msgstr[0] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -103003,7 +102942,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -103013,7 +102951,7 @@ msgstr[0] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -103063,7 +103001,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -103104,7 +103041,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -103257,7 +103193,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -103386,7 +103321,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -103426,7 +103360,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -103476,7 +103409,7 @@ msgstr[0] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -103484,7 +103417,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -103500,7 +103433,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -103512,7 +103445,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -103577,7 +103509,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -103617,7 +103548,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -103644,7 +103574,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -103655,7 +103584,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -103679,7 +103607,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -103693,7 +103620,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -103725,7 +103651,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -103738,7 +103663,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -103752,7 +103676,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -103773,7 +103696,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -103786,7 +103708,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -103799,7 +103720,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -103812,7 +103732,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -103828,7 +103747,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -103863,7 +103781,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -103898,7 +103815,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -103911,7 +103827,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -103947,7 +103862,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -104075,7 +103989,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -104110,7 +104023,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -104129,7 +104041,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -104153,7 +104064,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -104201,7 +104111,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -104237,7 +104146,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -104326,7 +104234,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -104370,7 +104277,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -104518,7 +104424,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -104638,7 +104543,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -104652,7 +104556,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -104666,7 +104569,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -104677,7 +104579,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -104688,7 +104589,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -104701,7 +104601,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -104714,7 +104613,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -104727,7 +104625,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -104763,7 +104660,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -104777,7 +104673,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -104812,7 +104707,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -104837,7 +104731,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -104850,7 +104743,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -104925,7 +104817,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -104942,7 +104833,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -104966,7 +104856,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -104980,7 +104869,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -104994,7 +104882,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -105020,7 +104907,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -105033,7 +104919,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -105044,7 +104929,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -105057,7 +104941,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -105070,7 +104953,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -105119,7 +105001,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -105133,7 +105014,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -105149,7 +105029,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -105162,7 +105041,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -105175,7 +105053,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -105189,7 +105066,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -105204,7 +105080,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -105221,7 +105096,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -105237,7 +105111,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -105250,7 +105123,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -105275,7 +105147,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -105290,7 +105161,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -105306,7 +105176,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -105323,7 +105192,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -105340,7 +105208,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -105359,7 +105226,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -105375,7 +105241,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -105428,7 +105293,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -105441,7 +105305,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -105452,7 +105315,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -105513,7 +105375,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -105524,7 +105385,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -105535,7 +105395,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -105549,7 +105408,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -105560,7 +105418,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -105574,7 +105431,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -105587,7 +105443,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -105601,7 +105456,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -105623,7 +105477,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -105638,8 +105491,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -105667,8 +105519,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -105683,7 +105534,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -105694,7 +105544,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -105705,7 +105554,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -105743,7 +105591,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -105767,7 +105614,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -105802,7 +105648,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -105815,7 +105660,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -105852,7 +105696,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -105871,7 +105714,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -105915,7 +105757,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -105933,7 +105774,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -105985,7 +105825,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -106012,7 +105851,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -106045,7 +105883,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -106065,7 +105902,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -106090,7 +105926,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -106125,7 +105960,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -106165,7 +105999,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -106190,7 +106023,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -106281,7 +106113,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -106292,14 +106123,12 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -106427,7 +106256,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -106440,7 +106268,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -106453,7 +106280,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -106466,7 +106292,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -106480,7 +106305,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -106491,7 +106315,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -106504,7 +106327,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -106518,7 +106340,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -106531,7 +106352,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -106543,7 +106363,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -106556,7 +106375,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -106570,7 +106388,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -106594,7 +106411,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -106621,7 +106437,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -106634,7 +106449,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -106647,7 +106461,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -106658,7 +106471,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -106671,7 +106483,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -106682,7 +106493,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -106696,7 +106506,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -106709,7 +106518,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -106724,7 +106532,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -106738,7 +106545,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -106751,7 +106557,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -106764,7 +106569,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -106777,7 +106581,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -106806,7 +106609,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -106819,7 +106621,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -106832,7 +106633,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -106848,7 +106648,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -106859,7 +106658,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -106872,7 +106670,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -106885,7 +106682,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -106899,7 +106695,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -106924,7 +106719,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -106937,7 +106731,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -106950,7 +106743,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -106964,7 +106756,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -106992,7 +106783,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -107005,7 +106795,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -107032,7 +106821,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -107045,7 +106833,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -107058,7 +106845,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -107071,7 +106857,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -107086,7 +106871,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -107099,7 +106883,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -107113,7 +106896,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -108245,6 +108027,16 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -108548,7 +108340,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -108932,6 +108723,12 @@ msgstr[0] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -109231,6 +109028,28 @@ msgstr[0] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -110045,13 +109864,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -110371,13 +110183,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -110931,7 +110736,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -110955,7 +110760,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -114557,14 +114362,14 @@ msgstr[0] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -124168,9 +123973,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -124903,9 +124708,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -124921,9 +124726,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -124951,25 +124756,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -124989,9 +124794,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -131228,7 +131033,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -140895,17 +140700,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -142105,7 +141910,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -147789,9 +147594,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -156351,7 +156156,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -156719,7 +156523,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -156741,7 +156545,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -159494,7 +159297,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -159541,7 +159343,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -159666,6 +159468,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -159679,7 +159488,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -159720,7 +159529,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -169457,7 +169266,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -169536,6 +169345,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -171254,6 +171070,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -171323,7 +171157,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -171391,6 +171225,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -171536,7 +171374,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -171879,7 +171717,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -178338,7 +178175,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -178346,8 +178183,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -179221,9 +179058,9 @@ msgstr[0] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -179235,7 +179072,7 @@ msgstr[0] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -195212,74 +195049,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -195289,177 +195058,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -196662,114 +196260,133 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -196777,155 +196394,208 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -196933,25 +196603,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -196959,25 +196629,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -196985,7 +196655,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -196993,7 +196663,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -197003,7 +196673,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -197013,7 +196683,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -197023,7 +196693,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -197033,7 +196703,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -197042,7 +196712,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -197051,7 +196721,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -197061,7 +196731,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -197070,18 +196740,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -197090,7 +196760,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -197098,18 +196768,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -197119,7 +196789,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -197128,18 +196798,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -197147,25 +196817,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -197173,59 +196843,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -197234,7 +196936,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -197243,25 +196945,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -197273,7 +196975,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -197284,25 +196986,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -197312,7 +197014,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -197322,584 +197024,635 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -197911,245 +197664,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -198157,807 +197883,871 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -198965,20 +198755,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -198986,74 +198776,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -199061,21 +198851,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -199083,105 +198873,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -199189,16 +199003,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -199206,74 +199020,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -199281,356 +199095,356 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -199638,266 +199452,169 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -199905,394 +199622,371 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -200300,289 +199994,257 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -200591,3897 +200253,4441 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" +msgstr[0] "" + +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" msgstr[0] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" - -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" +msgstr[0] "" + +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" msgstr[0] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" msgstr[0] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" msgstr[0] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" msgstr[0] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" msgstr[0] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" +msgstr[0] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" +msgstr[0] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" +msgstr[0] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" msgstr[0] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" +msgstr[0] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" +msgstr[0] "" + +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" +msgstr[0] "" + +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" -msgstr[0] "" +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" -msgstr[0] "" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "" +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" -msgstr[0] "" +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" -msgstr[0] "" +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" -msgstr[0] "" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" -msgstr[0] "" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" -msgstr[0] "" +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This details complex diagrams, rituals, and choreography that describes " +"various spells." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" -msgstr[0] "" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" -msgstr[0] "" - -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" -msgstr[0] "" +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" -msgstr[0] "" +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" -msgstr[0] "" +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" -msgstr[0] "" - -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "" + +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" +msgstr[0] "" + +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" +msgstr[0] "" + +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" msgstr "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" -msgstr[0] "" +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." msgstr "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" -msgstr[0] "" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" -msgstr[0] "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" -msgstr[0] "" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" -msgstr[0] "" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" -msgstr[0] "" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" -msgstr[0] "" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" -msgstr[0] "" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" -msgstr[0] "" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" -msgstr[0] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" -msgstr[0] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" -msgstr[0] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" -msgstr[0] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" -msgstr[0] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" -msgstr[0] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" -msgstr[0] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" -msgstr[0] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" -msgstr[0] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" -msgstr[0] "" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" -msgstr[0] "" +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" -msgstr[0] "" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" -msgstr[0] "" +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" -msgstr[0] "" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" -msgstr[0] "" +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" -msgstr[0] "" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" -msgstr[0] "" +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" -msgstr[0] "" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" -msgstr[0] "" +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" -msgstr[0] "" - -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" +msgstr[0] "" -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" +msgstr[0] "" -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" +msgstr[0] "" + +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" +msgstr[0] "" -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" +msgstr[0] "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -204490,7 +204696,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -204498,13 +204704,13 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -204512,38 +204718,38 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -204552,77 +204758,77 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -204630,36 +204836,107 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -204670,29 +204947,29 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -204702,13 +204979,13 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -204717,58 +204994,59 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -204777,23 +205055,23 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -204802,199 +205080,241 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -205002,222 +205322,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -205225,48 +205545,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -205274,12 +205594,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -205287,12 +205607,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -205300,103 +205620,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -205405,274 +205725,294 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -211768,6 +212108,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -211960,10 +212304,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -217934,6 +218274,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -218002,6 +218343,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -218830,6 +219175,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -234372,7 +234721,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -240326,7 +240680,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -245456,10 +245816,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -249639,7 +250000,7 @@ msgstr "" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -257206,6 +257567,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -257347,6 +257713,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -257939,11 +258315,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/is.po b/lang/po/is.po index 5bdd6874ad60..5f17d2f2c78c 100644 --- a/lang/po/is.po +++ b/lang/po/is.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2023\n" "Language-Team: Icelandic (https://app.transifex.com/bn-team/teams/113585/is/)\n" "MIME-Version: 1.0\n" @@ -7523,6 +7523,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10840,7 +10851,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11288,75 +11299,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11370,51 +11397,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12157,12 +12222,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12204,6 +12269,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12661,7 +12897,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12696,7 +12932,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12733,7 +12969,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12902,7 +13138,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13020,7 +13256,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13095,7 +13331,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13277,7 +13513,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14462,7 +14698,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14471,22 +14707,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14499,7 +14735,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14511,7 +14747,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14524,7 +14760,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14542,7 +14778,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14551,12 +14787,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14616,7 +14852,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15039,7 +15275,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19294,12 +19530,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19324,18 +19560,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19344,7 +19580,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19352,12 +19588,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19382,18 +19618,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19401,19 +19637,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19436,12 +19672,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20198,15 +20434,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20214,7 +20450,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20222,6 +20458,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27440,7 +27704,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27557,7 +27820,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27623,7 +27885,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27644,7 +27905,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27652,7 +27912,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27660,7 +27919,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27679,8 +27937,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -27713,14 +27970,12 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27763,7 +28018,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27781,7 +28035,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -27826,7 +28079,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -27838,7 +28090,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -27846,7 +28097,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -27858,7 +28108,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28223,7 +28472,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28265,6 +28515,19 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28342,7 +28605,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28372,7 +28636,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28718,7 +28983,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -28827,8 +29091,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29077,7 +29342,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29105,7 +29370,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29228,7 +29493,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29288,7 +29552,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29611,7 +29874,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29698,7 +29961,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29725,7 +29988,7 @@ msgstr "small!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -29894,7 +30157,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30231,7 +30494,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30248,7 +30511,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30261,7 +30523,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30276,7 +30537,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30298,7 +30558,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30448,7 +30707,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31301,7 +31559,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -31717,7 +31974,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -31859,7 +32115,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -31884,7 +32139,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32429,9 +32683,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32465,7 +32731,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32481,7 +32746,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -32979,7 +33243,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -32994,7 +33257,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33010,7 +33272,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33076,7 +33337,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33114,7 +33374,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34601,7 +34860,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -34987,7 +35246,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35243,7 +35501,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -36884,7 +37141,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37521,7 +37777,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38554,7 +38809,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "" @@ -39476,7 +39730,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -39653,6 +39906,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -39716,7 +40005,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "EF ÞÚ ERT AÐ LESA ÞETTA ÞÁ FÓR EITTHVAÐ ÚRSKEIÐIS!" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -39728,7 +40016,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "Tvinnastubbur sem myndi duga til að fylla á handsaumasett." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -39740,7 +40027,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Seig sin skorin úr líki. Nothæf sem þráður." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -39752,7 +40038,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "Sterkar trefjar úr plöntu. Nothæf sem þráður." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -39775,7 +40060,6 @@ msgid "A cleansing agent made into bars." msgstr "Handhæg hreinlætisvara í föstu formi." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -39787,7 +40071,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Trefjalímbandsrúlla. Notkunarmöguleikar eru óþrjótandi." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -39799,7 +40082,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Þunnar pappírsræmur ætlaðar til vindlingavafninga." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -39846,7 +40128,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40093,7 +40374,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40138,7 +40418,6 @@ msgid "" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40356,7 +40635,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "" @@ -40390,7 +40668,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -40719,7 +40996,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -42750,7 +43026,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "" @@ -42764,7 +43039,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -42779,7 +43053,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -42794,7 +43067,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -42817,7 +43089,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "" @@ -42844,7 +43115,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -42856,7 +43126,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -42870,7 +43139,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -43250,7 +43518,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -43264,7 +43531,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -43631,7 +43897,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -43680,7 +43945,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -45266,7 +45530,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -45279,7 +45542,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -45419,7 +45681,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -45431,7 +45692,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -45443,7 +45703,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -45455,7 +45714,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -45467,7 +45725,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -45479,7 +45736,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -45491,7 +45747,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -45526,7 +45781,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "" @@ -45540,7 +45794,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -45552,7 +45805,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -45583,7 +45835,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -45598,7 +45849,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -45612,7 +45862,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -45627,7 +45876,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -45706,7 +45954,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -45718,7 +45965,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -45732,7 +45978,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -45747,7 +45992,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -45798,7 +46042,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -45813,7 +46056,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -45827,7 +46069,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -45839,7 +46080,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -45854,7 +46094,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -45915,7 +46154,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -45967,7 +46205,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -45979,7 +46216,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -45992,7 +46228,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -46004,7 +46239,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -46044,7 +46278,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -46056,7 +46289,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -46070,7 +46302,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -46081,9 +46312,7 @@ msgstr[1] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -46097,9 +46326,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -46113,7 +46340,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -46127,7 +46353,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -46141,7 +46366,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -46155,7 +46379,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -46176,7 +46399,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -46190,7 +46412,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -46204,7 +46425,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -46217,9 +46437,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -46234,7 +46452,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -46248,21 +46465,18 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -46277,7 +46491,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -46292,9 +46505,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -46309,9 +46520,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -46325,9 +46534,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -46341,9 +46548,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -46357,9 +46562,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -46373,9 +46576,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -46389,9 +46590,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -46433,7 +46632,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -46445,7 +46643,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -46457,7 +46654,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -46469,7 +46665,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -46483,7 +46678,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -46497,7 +46691,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -46511,7 +46704,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -46525,7 +46717,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -46539,7 +46730,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -46554,7 +46744,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -46569,7 +46758,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -46583,7 +46771,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -46628,7 +46815,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -46640,7 +46826,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -46654,7 +46839,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -46668,7 +46852,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -46694,7 +46877,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -46706,7 +46888,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -46733,7 +46914,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -46766,7 +46946,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -46781,7 +46960,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -46805,7 +46983,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -46817,7 +46994,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -46832,7 +47008,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -46847,7 +47022,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -46879,7 +47053,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -46893,7 +47066,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -46927,7 +47099,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -46940,14 +47111,12 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -46961,7 +47130,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -46973,7 +47141,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -46985,7 +47152,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -46997,7 +47163,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -47021,7 +47186,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -47035,7 +47199,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -47049,7 +47212,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -47061,7 +47223,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -47073,7 +47234,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -47087,7 +47247,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -47099,7 +47258,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -47111,7 +47269,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -47123,7 +47280,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -47135,7 +47291,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -47147,7 +47302,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -47159,7 +47313,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -47171,7 +47324,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -47183,7 +47335,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -47195,7 +47346,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -47207,7 +47357,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -47219,7 +47368,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -47231,7 +47379,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -47243,7 +47390,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -47255,7 +47401,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -47270,7 +47415,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -47309,7 +47453,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -47321,7 +47464,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -47335,7 +47477,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -47347,7 +47488,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -47367,7 +47507,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -47418,7 +47557,7 @@ msgstr[1] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -47534,7 +47673,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "hraðbankakort" @@ -47564,7 +47702,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "silfur-bensínsjálfsalakort" @@ -47576,7 +47713,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Þetta kort veitir þér afslátt af eldsneytiskaupum." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "gull-bensínsjálfsalakort" @@ -47588,7 +47724,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Þetta kort veitir þér ágætis afslátt af eldsneytiskaupum." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "platínu-bensínsjálfsalakort" @@ -47600,7 +47735,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "Þetta kort veitir þér frábæran afslátt af eldsneytiskaupum." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -47615,7 +47749,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -47630,7 +47763,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -47645,7 +47777,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -47699,7 +47830,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -47722,7 +47852,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -47734,7 +47863,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -47869,7 +47997,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -47882,9 +48009,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -47897,9 +48022,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -47912,16 +48035,14 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -47935,7 +48056,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -47951,7 +48071,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -48009,21 +48128,18 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -48213,7 +48329,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -48371,7 +48486,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -48385,7 +48499,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -48399,7 +48512,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -48413,7 +48525,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -48425,7 +48536,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -48439,7 +48549,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -48453,7 +48562,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -48467,7 +48575,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -48479,7 +48586,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -48491,7 +48597,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -48974,7 +49079,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -48986,7 +49090,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -48998,7 +49101,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -49010,7 +49112,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -49022,7 +49123,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -49034,7 +49134,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -49046,7 +49145,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -49058,7 +49156,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -49073,7 +49170,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -49718,7 +49814,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -49751,7 +49847,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -53299,7 +53395,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -53896,7 +53991,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -53909,7 +54005,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -53922,7 +54019,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -53936,7 +54034,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -54435,7 +54534,7 @@ msgstr[1] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -54680,7 +54779,7 @@ msgstr[1] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -54690,14 +54789,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -57267,7 +57366,7 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -65122,7 +65221,7 @@ msgstr[1] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -73016,8 +73115,8 @@ msgstr[1] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -73146,7 +73245,7 @@ msgstr[1] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -73165,7 +73264,7 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -74957,8 +75056,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -74966,7 +75064,6 @@ msgstr[1] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -75164,8 +75261,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -85976,6 +86072,20 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -90173,7 +90283,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -90187,7 +90296,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -90233,7 +90341,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -90268,7 +90375,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -90282,7 +90388,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -90889,7 +90994,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -90901,7 +91005,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -90913,7 +91016,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -90925,7 +91027,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -91006,7 +91107,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -91018,7 +91118,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -91032,7 +91131,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -91044,7 +91142,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -91056,7 +91153,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -91070,7 +91166,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -91106,7 +91201,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -91149,7 +91243,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -91191,7 +91284,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -91203,7 +91295,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -91216,7 +91307,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -91230,7 +91320,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -91244,7 +91333,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -91258,7 +91346,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -91275,7 +91362,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -91288,7 +91374,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -91301,7 +91386,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -91315,7 +91399,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -91329,7 +91412,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -91343,7 +91425,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -91668,7 +91749,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -91680,7 +91760,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "" @@ -92936,7 +93015,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -95892,7 +95971,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -96215,7 +96294,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -96389,7 +96468,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -96507,7 +96586,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -100634,14 +100713,12 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" msgstr[1] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -100655,7 +100732,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -100669,7 +100745,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -100683,7 +100758,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -100699,7 +100773,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -100714,7 +100787,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -100729,7 +100801,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -100744,7 +100815,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -104208,7 +104278,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -104222,7 +104291,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -104243,7 +104311,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -104256,7 +104323,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -104269,7 +104335,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -104371,7 +104436,6 @@ msgid "A roll of purple carpet." msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -104385,7 +104449,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -104397,7 +104460,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -104410,7 +104472,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -104425,7 +104486,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -104439,7 +104499,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -104453,7 +104512,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -104468,7 +104526,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -104480,7 +104537,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -104495,14 +104551,12 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" msgstr[1] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -104518,7 +104572,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "" @@ -104532,7 +104585,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -104546,7 +104598,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "" @@ -104560,7 +104611,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -104572,7 +104622,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -104586,7 +104635,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -104598,7 +104646,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -104612,7 +104659,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -104624,7 +104670,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -104638,7 +104683,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -104674,7 +104718,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -104735,7 +104778,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -104804,7 +104846,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -104832,7 +104873,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -104847,8 +104887,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -104862,7 +104900,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -104876,7 +104913,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -104890,7 +104926,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -104904,7 +104939,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -104916,7 +104950,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -104928,7 +104961,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -104942,7 +104974,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -104955,8 +104986,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -104971,7 +105001,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -104986,7 +105015,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -105002,7 +105030,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -105017,7 +105044,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -105053,7 +105079,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -105070,7 +105095,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -105096,7 +105120,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -105110,7 +105133,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -105150,7 +105172,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -105166,7 +105187,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -105180,7 +105200,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -105194,7 +105213,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -105206,7 +105224,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -105218,7 +105235,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -105230,7 +105246,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -105245,7 +105260,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -105259,7 +105273,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -105285,7 +105298,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -105299,7 +105311,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -105385,7 +105396,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "matvinnsluvél" @@ -105400,7 +105410,6 @@ msgstr "" "Þetta er eldhústæki sem getur sneitt, brytjað, tætt, malað, maukað og hrært." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -105427,7 +105436,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -105503,7 +105511,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -105517,7 +105524,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -105532,7 +105538,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -105547,7 +105552,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -105564,7 +105568,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -105580,7 +105583,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -105609,7 +105611,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -105623,7 +105624,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -105637,7 +105637,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -105663,7 +105662,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -105677,7 +105675,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -105692,7 +105689,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -105704,7 +105700,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -105756,7 +105751,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -105771,7 +105765,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -105783,7 +105776,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -105797,7 +105789,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -105882,7 +105873,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -105898,6 +105888,22 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -105906,7 +105912,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -105955,7 +105960,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -105988,7 +105992,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -106004,7 +106007,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -106019,7 +106021,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -106037,7 +106038,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -106065,7 +106065,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -106080,7 +106079,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -106095,7 +106093,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -106122,7 +106119,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -106136,9 +106132,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -106155,7 +106149,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -106171,7 +106164,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -106188,7 +106180,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -106220,7 +106211,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -106251,7 +106241,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -106282,7 +106271,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -106298,7 +106286,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -106380,7 +106367,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -106394,7 +106380,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -106418,7 +106403,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -106433,7 +106417,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -106448,7 +106431,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -106465,7 +106447,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -106482,7 +106463,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -106497,7 +106477,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -106513,7 +106492,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -107490,7 +107468,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -107504,7 +107481,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -107520,7 +107496,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -107536,7 +107511,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -107551,7 +107525,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -107566,7 +107539,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -107581,7 +107553,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -107597,7 +107568,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -107636,7 +107606,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -107666,7 +107635,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -107703,7 +107671,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -107731,7 +107698,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -107745,7 +107711,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -107801,7 +107766,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -107815,7 +107779,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -107846,7 +107809,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -107858,7 +107820,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -107870,7 +107831,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -107884,7 +107844,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -107898,7 +107857,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -107912,7 +107870,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -107930,7 +107887,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -107957,7 +107913,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -107985,7 +107940,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -107999,7 +107953,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -108042,7 +107995,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -108056,7 +108008,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -108069,7 +108020,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -108083,7 +108033,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -108113,7 +108062,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -108128,7 +108076,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -108153,7 +108100,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -108168,7 +108114,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -108211,7 +108156,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -108233,7 +108177,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -108257,7 +108200,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -108266,7 +108208,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -108281,7 +108223,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -108292,7 +108233,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -108344,7 +108285,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -108387,7 +108327,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -108549,7 +108488,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -108687,7 +108625,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -108729,7 +108666,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -108782,7 +108718,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -108790,7 +108726,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -108806,7 +108742,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -108818,7 +108754,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -108890,7 +108825,6 @@ msgstr "" " búnaði. Ekki er hægt að neyta efnanna án þess búnaðar." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -108933,7 +108867,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -108962,7 +108895,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -108974,7 +108906,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -109000,7 +108931,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -109015,7 +108945,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -109048,7 +108977,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -109062,7 +108990,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -109077,7 +109004,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -109099,7 +109025,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -109113,7 +109038,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -109127,7 +109051,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -109141,7 +109064,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -109158,7 +109080,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -109194,7 +109115,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -109231,7 +109151,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -109245,7 +109164,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -109283,7 +109201,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -109419,7 +109336,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -109457,7 +109373,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -109477,7 +109392,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -109503,7 +109417,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -109555,7 +109468,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -109592,7 +109504,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -109687,7 +109598,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -109734,7 +109644,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -109894,7 +109803,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -110025,7 +109933,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -110040,7 +109947,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -110055,7 +109961,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -110067,7 +109972,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -110079,7 +109983,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -110093,7 +109996,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -110107,7 +110009,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -110121,7 +110022,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -110160,7 +110060,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -110175,7 +110074,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -110213,7 +110111,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -110240,7 +110137,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -110254,7 +110150,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -110330,7 +110225,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -110348,7 +110242,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -110374,7 +110267,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -110389,7 +110281,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -110404,7 +110295,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -110432,7 +110322,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -110446,7 +110335,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -110458,7 +110346,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -110472,7 +110359,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -110486,7 +110372,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -110538,7 +110423,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -110553,7 +110437,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -110570,7 +110453,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -110584,7 +110466,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -110598,7 +110479,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -110613,7 +110493,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -110629,7 +110508,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -110647,7 +110525,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -110664,7 +110541,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -110678,7 +110554,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -110705,7 +110580,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -110721,7 +110595,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -110738,7 +110611,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -110756,7 +110628,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -110774,7 +110645,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -110794,7 +110664,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -110811,7 +110680,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -110868,7 +110736,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -110882,7 +110749,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -110894,7 +110760,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -110960,7 +110825,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -110972,7 +110836,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -110984,7 +110847,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -110999,7 +110861,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -111011,7 +110872,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -111026,7 +110886,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -111040,7 +110899,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -111055,7 +110913,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -111078,7 +110935,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -111094,8 +110950,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -111125,8 +110980,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -111142,7 +110996,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -111154,7 +111007,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -111166,7 +111018,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -111207,7 +111058,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -111233,7 +111083,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -111271,7 +111120,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -111285,7 +111133,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -111323,7 +111170,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -111343,7 +111189,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -111388,7 +111233,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -111407,7 +111251,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -111460,7 +111303,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -111488,7 +111330,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -111522,7 +111363,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -111543,7 +111383,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -111570,7 +111409,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -111607,7 +111445,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -111649,7 +111486,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -111676,7 +111512,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -111775,7 +111610,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -111787,7 +111621,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -111795,7 +111628,6 @@ msgstr[1] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -111932,7 +111764,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -111946,7 +111777,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -111960,7 +111790,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -111974,7 +111803,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -111989,7 +111817,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -112001,7 +111828,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -112015,7 +111841,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -112030,7 +111855,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -112044,7 +111868,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -112057,7 +111880,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -112071,7 +111893,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -112086,7 +111907,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -112112,7 +111932,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -112141,7 +111960,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -112155,7 +111973,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -112169,7 +111986,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -112181,7 +111997,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -112195,7 +112010,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -112207,7 +112021,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -112222,7 +112035,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -112236,7 +112048,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -112252,7 +112063,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -112267,7 +112077,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -112281,7 +112090,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -112295,7 +112103,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -112309,7 +112116,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -112340,7 +112146,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -112354,7 +112159,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -112368,7 +112172,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -112385,7 +112188,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -112397,7 +112199,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -112411,7 +112212,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -112425,7 +112225,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -112440,7 +112239,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -112467,7 +112265,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -112481,7 +112278,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -112495,7 +112291,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -112510,7 +112305,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -112540,7 +112334,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -112554,7 +112347,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -112583,7 +112375,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -112597,7 +112388,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -112611,7 +112401,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -112625,7 +112414,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -112641,7 +112429,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -112655,7 +112442,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -112670,7 +112456,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -113900,6 +113685,17 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -114229,7 +114025,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -114645,6 +114440,13 @@ msgstr[1] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -114968,6 +114770,30 @@ msgstr[1] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -115798,13 +115624,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -116124,13 +115943,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -116684,7 +116496,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -116708,7 +116520,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -120583,7 +120395,7 @@ msgstr[1] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -120591,7 +120403,7 @@ msgstr[1] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -130415,9 +130227,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -131150,9 +130962,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -131168,9 +130980,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -131198,25 +131010,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -131236,9 +131048,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -137475,7 +137287,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -147142,17 +146954,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -148352,7 +148164,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -154039,9 +153851,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -162952,7 +162764,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -163320,7 +163131,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -163342,7 +163153,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -166095,7 +165905,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -166142,7 +165951,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -166267,6 +166076,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -166280,7 +166096,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -166321,7 +166137,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -176065,7 +175881,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -176144,6 +175960,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -177862,6 +177685,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -177931,7 +177772,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -177999,6 +177840,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -178144,7 +177989,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -178487,7 +178332,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -185173,7 +185017,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -185181,8 +185025,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -186106,9 +185950,9 @@ msgstr[1] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -186121,7 +185965,7 @@ msgstr[1] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -203097,74 +202941,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -203174,177 +202950,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -204557,115 +204162,134 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -204673,157 +204297,213 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" msgstr[1] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" msgstr[1] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -204831,25 +204511,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -204857,25 +204537,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -204883,7 +204563,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -204891,7 +204571,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -204901,7 +204581,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -204911,7 +204591,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -204921,7 +204601,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -204931,7 +204611,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -204940,7 +204620,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -204949,7 +204629,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -204959,7 +204639,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -204968,18 +204648,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -204988,7 +204668,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -204996,18 +204676,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -205017,7 +204697,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -205026,18 +204706,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -205045,25 +204725,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -205071,59 +204751,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205132,7 +204844,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205141,25 +204853,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205171,7 +204883,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205182,25 +204894,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205210,7 +204922,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205220,588 +204932,640 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -205813,245 +205577,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -206059,808 +205796,872 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" msgstr[1] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -206868,20 +206669,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -206889,74 +206690,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -206964,21 +206765,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -206986,105 +206787,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -207092,16 +206917,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -207109,74 +206934,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -207184,357 +207009,357 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -207542,175 +207367,99 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -207718,113 +207467,84 @@ msgstr[1] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -207832,14 +207552,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -207847,39 +207567,39 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -207887,13 +207607,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -207901,13 +207621,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -207915,114 +207635,90 @@ msgstr[1] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -208030,12 +207726,12 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -208043,66 +207739,66 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -208110,19 +207806,19 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -208130,13 +207826,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -208144,13 +207840,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -208158,13 +207854,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -208172,70 +207868,70 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -208243,12 +207939,12 @@ msgstr[1] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -208256,313 +207952,278 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" msgstr[1] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -208571,4326 +208232,4913 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" msgstr[1] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -212899,7 +213147,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -212907,14 +213155,14 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -212922,40 +213170,40 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -212964,83 +213212,83 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" msgstr[1] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -213048,39 +213296,115 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -213091,31 +213415,31 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -213125,14 +213449,14 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -213141,62 +213465,63 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" msgstr[1] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" msgstr[1] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" msgstr[1] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -213205,25 +213530,25 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -213232,204 +213557,249 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" msgstr[1] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" msgstr[1] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" msgstr[1] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" msgstr[1] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" msgstr[1] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -213437,222 +213807,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -213660,48 +214030,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -213709,12 +214079,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -213722,12 +214092,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -213735,103 +214105,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -213840,276 +214210,296 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" msgstr[1] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" msgstr[1] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -220405,6 +220795,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -220597,10 +220991,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -226597,6 +226987,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -226665,6 +227056,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -227507,6 +227902,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -243091,7 +243490,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -249057,7 +249461,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -254200,10 +254610,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -258395,7 +258806,7 @@ msgstr "Heimsdefault" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -265979,6 +266390,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -266120,6 +266536,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -266712,11 +267138,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/it_IT.po b/lang/po/it_IT.po index f938b5c23734..2e0693ce5941 100644 --- a/lang/po/it_IT.po +++ b/lang/po/it_IT.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Italian (Italy) (https://app.transifex.com/bn-team/teams/113585/it_IT/)\n" "MIME-Version: 1.0\n" @@ -7613,6 +7613,17 @@ msgstr "" msgid "You can see through everything!" msgstr "Puoi vedere attraverso tutto!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10931,7 +10942,7 @@ msgstr "Accendi" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "Spegni" @@ -11379,75 +11390,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "MUNIZIONI" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "ARMI" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "ATTREZZI" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "CIBO" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "DROGHE" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MOD" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11461,51 +11488,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "ALTRO" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "CONTENITORI" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12248,12 +12313,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12295,6 +12360,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12752,7 +12988,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Eskrima" @@ -12787,7 +13023,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Scherma" @@ -12824,7 +13060,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12994,7 +13230,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Krav Maga" @@ -13112,7 +13348,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13187,7 +13423,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Ninjutsu" @@ -13369,7 +13605,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Silat" @@ -14558,7 +14794,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14567,22 +14803,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14595,7 +14831,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14607,7 +14843,7 @@ msgstr "distrutto" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14620,7 +14856,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14638,7 +14874,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14647,12 +14883,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14712,7 +14948,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15136,7 +15372,7 @@ msgstr "automatico" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19702,12 +19938,12 @@ msgstr "" "Prima i clienti si lamentavano della tua parcella, adesso vogliono mangiarti" " il cervello. Sei ancora indecisa su quale delle due è peggio." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Sacerdote" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Sacerdotessa" @@ -19732,18 +19968,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Kannushi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Kannushi" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19752,7 +19988,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19760,12 +19996,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19790,18 +20026,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19809,19 +20045,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19844,12 +20080,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20660,15 +20896,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20676,7 +20912,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20684,6 +20920,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27941,7 +28205,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -28059,7 +28322,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -28127,7 +28389,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -28149,7 +28410,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -28158,7 +28418,6 @@ msgstr[2] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "imbuto" @@ -28167,7 +28426,6 @@ msgstr[2] "imbuti" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "imbuto improvvisato" @@ -28187,8 +28445,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -28222,7 +28479,6 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -28230,7 +28486,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "trappola a balestra" @@ -28275,7 +28530,6 @@ msgid "Swinnng!" msgstr "Swinnng!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -28294,7 +28548,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -28340,7 +28593,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -28353,7 +28605,6 @@ msgstr "buca di vetro" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "imbuto di pelle" @@ -28362,7 +28613,6 @@ msgstr[2] "imbuti di pelle" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -28375,7 +28625,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "imbuto di metallo" @@ -28741,7 +28990,8 @@ msgstr "" msgid "Thunder Storm" msgstr "Temporale" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Tempesta di fulmini" @@ -28784,6 +29034,20 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28863,7 +29127,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "metallo che stride!" @@ -28893,7 +29158,8 @@ msgstr "metallo che stride!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -29241,7 +29507,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -29352,8 +29617,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29607,7 +29873,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "crunch!" @@ -29635,7 +29901,7 @@ msgstr "crunch!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29763,7 +30029,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29824,7 +30089,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -30151,7 +30415,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "vetro che si rompe" @@ -30238,7 +30502,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -30265,7 +30529,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -30434,7 +30698,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30771,7 +31035,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30788,7 +31052,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "braciere" @@ -30802,7 +31065,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30818,7 +31080,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30841,7 +31102,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30996,7 +31256,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31859,7 +32118,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "purificatore d'acqua" @@ -32277,7 +32535,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -32421,7 +32678,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -32447,7 +32703,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32996,9 +33251,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -33033,7 +33300,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -33050,7 +33316,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -33549,7 +33814,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -33565,7 +33829,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "carbonaia" @@ -33582,7 +33845,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "carbonaia (riempita)" @@ -33650,7 +33912,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33689,7 +33950,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -35180,7 +35440,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -35570,7 +35830,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "sabbia" @@ -35827,7 +36086,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "cemento" @@ -37472,7 +37730,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -38110,7 +38367,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -39144,7 +39400,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "roccia solida" @@ -40066,7 +40321,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -40244,6 +40498,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -40316,7 +40606,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SE VEDI QUESTO MESSAGGIO È COLPA DI UN BUG." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -40331,7 +40620,6 @@ msgstr "" "cucito." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -40346,7 +40634,6 @@ msgstr "" " filo." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -40359,7 +40646,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "Fibra fine e resistente. Utilizzabile come filo." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -40385,7 +40671,6 @@ msgid "A cleansing agent made into bars." msgstr "Un detergente in tavolette." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -40399,7 +40684,6 @@ msgstr "" "Un rotolo di nastro adesivo molto resistente. I suoi usi sono innumerevoli." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -40412,7 +40696,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Strisce di carta sottile usate per realizzare sigarette." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -40466,7 +40749,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40747,7 +41029,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "Un pezzo di gomma utile, può essere facilmente modellato." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40802,7 +41083,6 @@ msgstr "" "dall'acqua." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "Carburio di calcio premiscelato" @@ -41060,7 +41340,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Miscela di ossigeno e nitrogeno in proporzioni adatte all'immersione." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "combustibile" @@ -41098,7 +41377,6 @@ msgid "A metal die used to play various role-playing games" msgstr " Un dado metallico usato per giocare a vari giochi di ruolo." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "bronzo" @@ -41443,7 +41721,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -43620,7 +43897,6 @@ msgstr "" "agenti sbiancanti." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "Pezzo di zolfo" @@ -43635,7 +43911,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "cemento" @@ -43655,7 +43930,6 @@ msgstr "" "complesse. Basta aggiungere acqua." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "calcare" @@ -43671,7 +43945,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "calce viva" @@ -43701,7 +43974,6 @@ msgstr "" "in vetro. Altrimenti, è solo buona a fare il cemento." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "suolo" @@ -43732,7 +44004,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "salgemma" @@ -43745,7 +44016,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -43760,7 +44030,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -44215,7 +44484,6 @@ msgstr "" "nera e di semplici propellenti per razzi, come i rocket candy." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "nitro" @@ -44232,7 +44500,6 @@ msgstr "" " essere processato in salnitro." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -44675,7 +44942,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -44728,7 +44994,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -46475,7 +46740,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -46489,7 +46753,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -46644,7 +46907,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -46657,7 +46919,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -46670,7 +46931,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "toppa di pelle" @@ -46685,7 +46945,6 @@ msgstr "" "dell'abbigliamento robusto." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "toppa di feltro" @@ -46700,7 +46959,6 @@ msgstr "" "di lana." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -46713,7 +46971,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -46726,7 +46983,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "colla d'ossa" @@ -46763,7 +47019,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "catena d'acciaio" @@ -46778,7 +47033,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "pezzo di chitina" @@ -46791,7 +47045,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -46824,7 +47077,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -46840,7 +47092,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -46855,7 +47106,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -46871,7 +47121,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -46956,7 +47205,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "chiavetta USB" @@ -46969,7 +47217,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -46984,7 +47231,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -47000,7 +47246,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "candeliere" @@ -47055,7 +47300,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -47071,7 +47315,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "cavo" @@ -47086,7 +47329,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "filo spinato" @@ -47099,7 +47341,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -47115,7 +47356,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -47180,7 +47420,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -47236,7 +47475,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "elemento riscaldante" @@ -47251,7 +47489,6 @@ msgstr "" "bollitori." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -47265,7 +47502,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -47278,7 +47514,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -47321,7 +47556,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -47334,7 +47568,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -47349,7 +47582,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "computer portatile" @@ -47361,9 +47593,7 @@ msgstr[2] "computer portatili" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -47378,9 +47608,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -47395,7 +47623,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -47410,7 +47637,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -47425,7 +47651,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -47440,7 +47665,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -47462,7 +47686,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -47477,7 +47700,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -47492,7 +47714,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -47506,9 +47727,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -47524,7 +47743,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -47539,7 +47757,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" @@ -47547,7 +47764,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" @@ -47555,7 +47771,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -47571,7 +47786,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -47587,9 +47801,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -47605,9 +47817,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -47622,9 +47832,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -47639,9 +47847,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -47656,9 +47862,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -47673,9 +47877,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -47690,9 +47892,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -47737,7 +47937,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -47750,7 +47949,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -47763,7 +47961,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -47776,7 +47973,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -47791,7 +47987,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -47806,7 +48001,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -47821,7 +48015,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -47836,7 +48029,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -47851,7 +48043,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -47867,7 +48058,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -47883,7 +48073,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -47898,7 +48087,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -47946,7 +48134,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -47959,7 +48146,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -47974,7 +48160,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -47991,7 +48176,6 @@ msgstr "" "elettronici su di uno strato non coduttivo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -48019,7 +48203,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -48032,7 +48215,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -48061,7 +48243,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "straccio" @@ -48096,7 +48277,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -48112,7 +48292,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "orologio" @@ -48138,7 +48317,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "Memory card - SD" @@ -48151,7 +48329,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "Memory card - SD (vuota)" @@ -48167,7 +48344,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "Memory card - SD (criptata)" @@ -48183,7 +48359,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -48217,7 +48392,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -48232,7 +48406,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -48268,7 +48441,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -48282,7 +48454,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" @@ -48290,7 +48461,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -48305,7 +48475,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "blocco di argilla" @@ -48318,7 +48487,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "mattone" @@ -48331,7 +48499,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "malta" @@ -48344,7 +48511,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Della malta, pronta per essere usata in un progetto di costruzione." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -48369,7 +48535,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -48384,7 +48549,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -48399,7 +48563,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -48412,7 +48575,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -48425,7 +48587,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -48440,7 +48601,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -48453,7 +48613,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -48466,7 +48625,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -48479,7 +48637,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -48492,7 +48649,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -48505,7 +48661,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -48518,7 +48673,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -48531,7 +48685,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -48544,7 +48697,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -48557,7 +48709,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -48570,7 +48721,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -48583,7 +48733,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -48596,7 +48745,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -48609,7 +48757,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -48622,7 +48769,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "pelle curata" @@ -48638,7 +48784,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "pelliccia curata" @@ -48680,7 +48825,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -48693,7 +48837,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -48708,7 +48851,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -48721,7 +48863,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -48742,7 +48883,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -48799,7 +48939,7 @@ msgstr[2] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -48922,7 +49062,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "carta di credito" @@ -48952,7 +49091,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -48965,7 +49103,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -48978,7 +49115,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -48991,7 +49127,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -49007,7 +49142,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -49023,7 +49157,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -49039,7 +49172,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -49097,7 +49229,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "lampadina" @@ -49122,7 +49253,6 @@ msgid "A twisted shard of jagged metal." msgstr "Un coccio contorto di metallo frastagliato." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -49135,7 +49265,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -49281,7 +49410,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -49295,9 +49423,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -49311,9 +49437,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -49327,9 +49451,8 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" @@ -49337,7 +49460,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -49352,7 +49474,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -49369,7 +49490,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -49431,7 +49551,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -49439,7 +49558,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -49447,7 +49565,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -49653,7 +49770,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -49820,7 +49936,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -49835,7 +49950,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -49850,7 +49964,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -49865,7 +49978,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -49878,7 +49990,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -49893,7 +50004,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -49908,7 +50018,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -49923,7 +50032,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -49936,7 +50044,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -49949,7 +50056,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -50466,7 +50572,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -50479,7 +50584,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -50492,7 +50596,6 @@ msgid "A piece of hacking software." msgstr "un pezzo di software da Hacker." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -50505,7 +50608,6 @@ msgid "A piece of medical software." msgstr "un pezzo di software medico" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -50518,7 +50620,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -50531,7 +50632,6 @@ msgid "Medical data on zombie blood." msgstr "Dati medici sul sangue dello zombi" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -50544,7 +50644,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -50557,7 +50656,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -50573,7 +50671,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -51264,7 +51361,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -51298,7 +51395,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -55482,7 +55579,6 @@ msgstr "" "munizioni." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -56165,7 +56261,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -56181,7 +56278,8 @@ msgstr "" "Una faretra di pelle indossata alla vita che può contenere 20 frecce. " "Attivala per depositare le frecce." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -56195,7 +56293,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -56210,7 +56309,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -56774,7 +56874,7 @@ msgstr[2] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Hai riposto il tuo %s" @@ -57044,7 +57144,7 @@ msgstr[2] "cinture di pelle" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -57054,14 +57154,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "Una cintura di pelle. Utile per rendere i tuoi pantaloni su misura." @@ -60003,7 +60103,7 @@ msgstr[2] "paia di guanti da sopravvivenza" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -68617,7 +68717,7 @@ msgstr[2] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -77207,8 +77307,8 @@ msgstr[2] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -77356,7 +77456,7 @@ msgstr[2] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -77377,7 +77477,7 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -79325,8 +79425,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "Sangue" @@ -79335,7 +79434,6 @@ msgstr[2] "Sangui" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Sangue,possibilmente quello di un essere umano. Disgustoso!" @@ -79550,8 +79648,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "Sangue contaminato" @@ -91445,6 +91542,21 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -96036,7 +96148,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -96051,7 +96162,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -96099,7 +96209,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -96135,7 +96244,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -96150,7 +96258,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -96813,7 +96920,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "piatto di ceramica" @@ -96826,7 +96932,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "ciotola di ceramica" @@ -96839,7 +96944,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "tazza di ceramica" @@ -96852,7 +96956,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -96934,7 +97037,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "piatto di stagno" @@ -96947,7 +97049,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -96962,7 +97063,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "ciotola di peltro" @@ -96975,7 +97075,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -96988,7 +97087,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -97003,7 +97101,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "ciotola di vetro" @@ -97042,7 +97139,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -97086,7 +97182,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -97129,7 +97224,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "pentola" @@ -97142,7 +97236,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -97156,7 +97249,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "pentola di rame" @@ -97171,7 +97263,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -97186,7 +97277,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -97201,7 +97291,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -97219,7 +97308,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -97233,7 +97321,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -97247,7 +97334,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -97262,7 +97348,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "pentola improvvisata" @@ -97277,7 +97362,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "pentola di rame improvvisata" @@ -97292,7 +97376,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -97642,7 +97725,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -97655,7 +97737,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "stringa lunga" @@ -99006,7 +99087,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -102173,7 +102254,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -102517,7 +102598,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -102703,7 +102784,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -102830,7 +102911,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "mirini" @@ -107279,7 +107360,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -107287,7 +107367,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "coltello da macellaio" @@ -107304,7 +107383,6 @@ msgstr "" "ideale per macellare cadaveri." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "coltello da bistecca" @@ -107319,7 +107397,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -107334,7 +107411,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -107351,7 +107427,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -107367,7 +107442,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -107383,7 +107457,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -107399,7 +107472,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -111209,7 +111281,6 @@ msgstr "" "utilizzata per colorare molti tessuti se unita a dell'acqua e del mordente." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "scheggia di vetro" @@ -111224,7 +111295,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "pannello di vetro" @@ -111246,7 +111316,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "pannello di vetro rinforzato" @@ -111260,7 +111329,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "lastra di vetro rinforzato" @@ -111274,7 +111342,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -111383,7 +111450,6 @@ msgid "A roll of purple carpet." msgstr "Un rotolo di tappeti viola." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -111398,7 +111464,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -111411,7 +111476,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -111425,7 +111489,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -111443,7 +111506,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -111458,7 +111520,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "tubo di rame" @@ -111473,7 +111534,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -111489,7 +111549,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "bismuto" @@ -111502,7 +111561,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "Un metallo denso ma fragile, spesso usato come alternativa al piombo." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "oro" @@ -111521,7 +111579,6 @@ msgstr "" "diminuito." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "Platino" @@ -111529,7 +111586,6 @@ msgstr[1] "Platini" msgstr[2] "Platini" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "Zinco" @@ -111550,7 +111606,6 @@ msgstr "" "utilizzata nella produzione delle batterie,oltre ad altre cose." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "piombo" @@ -111568,7 +111623,6 @@ msgstr "" "munizioni." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "Polvere di magnesio" @@ -111586,7 +111640,6 @@ msgstr "" "oggetti simili." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "argento" @@ -111603,7 +111656,6 @@ msgstr "" "anche se adesso il suo valore è caduto di molto." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -111616,7 +111668,6 @@ msgid "A small sheet of metal." msgstr "Una piccola lamina di metallo." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -111633,7 +111684,6 @@ msgstr "" "ed è anche utile in alcune ricette di lavorazione." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -111648,7 +111698,6 @@ msgstr "" "lavorazione." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -111665,7 +111714,6 @@ msgstr "" "viti. Utile per fabbricare delle porte." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "rottame di rame" @@ -111678,7 +111726,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -111693,7 +111740,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -111734,7 +111780,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "frammento di ceramica" @@ -111803,7 +111848,6 @@ msgstr "" "allontanarti dalla maggior parte delle esplosioni." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -111877,7 +111921,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "pezzo di plastica" @@ -111909,7 +111952,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -111925,8 +111967,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -111941,7 +111981,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -111956,7 +111995,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -111971,7 +112009,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "tronco" @@ -111986,7 +112023,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -111999,7 +112035,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -112012,7 +112047,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -112027,7 +112061,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -112041,8 +112074,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -112058,7 +112090,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -112074,7 +112105,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -112091,7 +112121,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -112107,7 +112136,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -112148,7 +112176,6 @@ msgstr "" "500 ml." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -112166,7 +112193,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -112194,7 +112220,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "sigilla lattine" @@ -112209,7 +112234,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -112251,7 +112275,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "purificatore d'acqua a carbonella" @@ -112268,7 +112291,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "affumicatore a carbonella" @@ -112283,7 +112305,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "fornello a carbonella" @@ -112298,7 +112319,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "pentola di argilla" @@ -112311,7 +112331,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "macina di argilla" @@ -112324,7 +112343,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "teiera di argilla" @@ -112337,7 +112355,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -112353,7 +112370,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "essiccatore per cibo" @@ -112370,7 +112386,6 @@ msgstr "" "preziosissimo nel preservare il cibo." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -112397,7 +112412,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -112412,7 +112426,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -112502,7 +112515,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -112517,7 +112529,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -112546,7 +112557,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "piastra riscaldante" @@ -112626,7 +112636,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "macchina per sottovuoto improvvisata" @@ -112641,7 +112650,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -112657,7 +112665,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -112673,7 +112680,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -112691,7 +112697,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -112708,7 +112713,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -112739,7 +112743,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -112754,7 +112757,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -112769,7 +112771,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -112796,7 +112797,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -112811,7 +112811,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -112827,7 +112826,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "macina" @@ -112840,7 +112838,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "vasetto di crauti in fermentazione" @@ -112895,7 +112892,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -112911,7 +112907,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "teiera" @@ -112924,7 +112919,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "macchina per sottovuoto" @@ -112939,7 +112933,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -113026,7 +113019,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -113043,6 +113035,23 @@ msgstr "Hai dispiegato accuratamente la bicicletta rendendola utilizzabile." msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -113051,7 +113060,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -113101,7 +113109,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -113135,7 +113142,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -113152,7 +113158,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -113168,7 +113173,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -113187,7 +113191,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -113216,7 +113219,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -113232,7 +113234,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -113248,7 +113249,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -113277,7 +113277,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -113292,9 +113291,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -113312,7 +113309,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -113329,7 +113325,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -113347,7 +113342,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -113381,7 +113375,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "lettore mp3 (spento)" @@ -113414,7 +113407,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -113447,7 +113439,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -113464,7 +113455,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -113549,7 +113539,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -113564,7 +113553,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -113589,7 +113577,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -113605,7 +113592,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "piede di porco" @@ -113621,7 +113607,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -113639,7 +113624,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -113657,7 +113641,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "piccozza da ghiaccio" @@ -113673,7 +113656,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "piede di porco improvvisato" @@ -113690,7 +113672,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -114734,7 +114715,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -114749,7 +114729,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -114766,7 +114745,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -114783,7 +114761,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -114799,7 +114776,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "accendino" @@ -114819,7 +114795,6 @@ msgstr "" "circostanti." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "lente d'ingrandimento" @@ -114835,7 +114810,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -114852,7 +114826,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "accendino ricaricabile" @@ -114898,7 +114871,6 @@ msgstr "" " È acceso." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "porta brace" @@ -114929,7 +114901,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "porta brace (acceso)" @@ -114968,7 +114939,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -114998,7 +114968,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "ascia antincendio" @@ -115013,7 +114982,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "Halligan Bar" @@ -115073,7 +115041,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -115088,7 +115055,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "trappola di plastica per pesci" @@ -115121,7 +115087,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -115134,7 +115099,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -115147,7 +115111,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -115162,7 +115125,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -115177,7 +115139,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -115192,7 +115153,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -115211,7 +115171,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -115240,7 +115199,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "coltello di rame" @@ -115270,7 +115228,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "raschietto per miele" @@ -115285,7 +115242,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "coltello da tasca" @@ -115332,7 +115288,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "bastone da scavo" @@ -115347,7 +115302,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "paletta" @@ -115361,7 +115315,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "zappa" @@ -115376,7 +115329,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -115409,7 +115361,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -115425,7 +115376,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "pala" @@ -115452,7 +115402,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -115468,7 +115417,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -115513,7 +115461,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -115536,7 +115483,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -115561,7 +115507,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -115571,7 +115516,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -115586,7 +115531,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -115598,7 +115542,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -115652,7 +115596,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -115697,7 +115640,6 @@ msgid "You turn the lamp off." msgstr "Spegni la lampada." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "torcia elettrica (spenta)" @@ -115869,7 +115811,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "torcia elettrica rinforzata (spenta)" @@ -116016,7 +115957,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -116060,7 +116000,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -116116,7 +116055,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -116124,7 +116063,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Hai acceso la torcia." @@ -116140,7 +116079,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -116152,7 +116091,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -116229,7 +116167,6 @@ msgstr "" "medico specializzato, e non può essere amministrato manualmente." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -116275,7 +116212,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -116306,7 +116242,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "siringa" @@ -116319,7 +116254,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -116347,7 +116281,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -116363,7 +116296,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "tesserino per radiazioni impacchettato" @@ -116399,7 +116331,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -116414,7 +116345,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -116430,7 +116360,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "forgia a carbonella" @@ -116453,7 +116382,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -116468,7 +116396,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "crogiolo" @@ -116483,7 +116410,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "crogiolo di argilla" @@ -116498,7 +116424,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "forgia elettrica" @@ -116516,7 +116441,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "carbonaia (completata)" @@ -116557,7 +116481,6 @@ msgstr "" "periodo di cottura." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "carbonaia (accesa)" @@ -116600,7 +116523,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -116615,7 +116537,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "paio di pinze di metallo" @@ -116655,7 +116576,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "sveglia" @@ -116799,7 +116719,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -116840,7 +116759,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -116861,7 +116779,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -116889,7 +116806,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -116951,7 +116867,6 @@ msgstr "" "macchina." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -116989,7 +116904,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -117090,7 +117004,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -117140,7 +117053,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -117312,7 +117224,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -117454,7 +117365,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -117470,7 +117380,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "fischietto per cane" @@ -117486,7 +117395,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -117499,7 +117407,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -117512,7 +117419,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -117527,7 +117433,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -117542,7 +117447,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -117557,7 +117461,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -117599,7 +117502,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -117615,7 +117517,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -117656,7 +117557,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -117685,7 +117585,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -117700,7 +117599,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -117780,7 +117678,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -117799,7 +117696,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "barometro" @@ -117831,7 +117727,6 @@ msgstr "" "muoversi al suo interno." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -117847,7 +117742,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -117863,7 +117757,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -117893,7 +117786,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -117908,7 +117800,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -117921,7 +117812,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -117936,7 +117826,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -117951,7 +117840,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -118006,7 +117894,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -118022,7 +117909,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -118040,7 +117926,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -118055,7 +117940,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -118070,7 +117954,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -118086,7 +117969,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -118103,7 +117985,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -118122,7 +118003,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -118140,7 +118020,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -118155,7 +118034,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -118184,7 +118062,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -118201,7 +118078,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -118219,7 +118095,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -118238,7 +118113,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -118257,7 +118131,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -118278,7 +118151,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -118296,7 +118168,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -118357,7 +118228,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -118372,7 +118242,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -118385,7 +118254,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -118456,7 +118324,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -118469,7 +118336,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -118482,7 +118348,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "paio di forbici" @@ -118498,7 +118363,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -118511,7 +118375,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Un pezzo di carta. Può essere usato per accendere un fuoco." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -118527,7 +118390,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -118542,7 +118404,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -118558,7 +118419,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "ago d'ossa" @@ -118582,7 +118442,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "ago di legno" @@ -118599,8 +118458,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "kit da cucito" @@ -118632,8 +118490,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "kit da sarto" @@ -118650,7 +118507,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -118663,7 +118519,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -118676,7 +118531,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -118720,7 +118574,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -118748,7 +118601,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -118789,7 +118641,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "asse per il bucato" @@ -118804,7 +118655,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -118843,7 +118693,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -118864,7 +118713,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -118910,7 +118758,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -118930,7 +118777,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -118984,7 +118830,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -119013,7 +118858,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -119048,7 +118892,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -119070,7 +118913,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "ascia da legno" @@ -119099,7 +118941,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "motosega (spenta)" @@ -119139,7 +118980,6 @@ msgstr "" "La motosega è accesa e sta facendo molto ruomore. Usala per spegnerla." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "sega circolare (spenta)" @@ -119183,7 +119023,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "ascia di rame" @@ -119212,7 +119051,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "motosega elettrica (spenta)" @@ -119319,7 +119157,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "sega da legno" @@ -119332,7 +119169,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -119341,7 +119177,6 @@ msgstr[2] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -119487,7 +119322,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -119502,7 +119336,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -119517,7 +119350,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "fornace per mattoni" @@ -119535,7 +119367,6 @@ msgstr "" "argilla." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -119551,7 +119382,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -119564,7 +119394,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -119579,7 +119408,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -119595,7 +119423,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -119610,7 +119437,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "trapano a batteria" @@ -119624,7 +119450,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -119639,7 +119464,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "martello pneumatico elettrico" @@ -119655,7 +119479,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "seghetto" @@ -119683,7 +119506,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "martello" @@ -119714,7 +119536,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "trapano a mano" @@ -119729,7 +119550,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "tubo di gomma" @@ -119744,7 +119564,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -119757,7 +119576,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "cric improvvisato" @@ -119772,7 +119590,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "cric a manovella" @@ -119785,7 +119602,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "martello pneumatico" @@ -119801,7 +119617,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -119816,7 +119631,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -119833,7 +119647,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -119849,7 +119662,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "martello improvvisato" @@ -119864,7 +119676,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -119879,7 +119690,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -119894,7 +119704,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -119927,7 +119736,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "stampo di plastica" @@ -119944,7 +119752,6 @@ msgstr "" "creare oggetti fatti di plastica." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -119959,7 +119766,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -119977,7 +119783,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -119990,7 +119795,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "piccone" @@ -120005,7 +119809,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -120020,7 +119823,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -120036,7 +119838,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -120065,7 +119866,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "cacciavite" @@ -120080,7 +119880,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "set cacciaviti" @@ -120097,7 +119896,6 @@ msgstr "" "avere lo strumetto adatto per un lavoro più preciso." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "kit di riparazione di armi da fuoco" @@ -120113,7 +119911,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -120145,7 +119942,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -120160,7 +119956,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -120191,7 +119986,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -120206,7 +120000,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -120221,7 +120014,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "fibra di lana" @@ -120236,7 +120028,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "taglierino" @@ -120253,7 +120044,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "chiave inglese" @@ -120268,7 +120058,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -120284,7 +120073,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -121624,6 +121412,18 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -121979,7 +121779,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -122427,6 +122226,14 @@ msgstr[2] "tavoli di legno" msgid "A crude wooden table." msgstr "Un rozzo tavolo di legno." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -122776,6 +122583,32 @@ msgstr[2] "" msgid "A set of casters, like on a shopping cart." msgstr "Un set di rotelle, come quelle dei carrelli della spesa." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -123624,13 +123457,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -123950,13 +123776,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -124510,7 +124329,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -124534,7 +124353,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Dolore" @@ -128684,7 +128503,7 @@ msgstr[2] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -128693,7 +128512,7 @@ msgstr[2] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -138771,9 +138590,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -139506,9 +139325,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -139524,9 +139343,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -139554,25 +139373,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -139592,9 +139411,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -145836,7 +145655,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -155503,17 +155322,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -156713,7 +156532,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -162403,9 +162222,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -171829,7 +171648,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Foresta" @@ -172197,7 +172015,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "capanna" @@ -172219,7 +172037,6 @@ msgstr "scantinato capanna" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "foresta" @@ -174972,7 +174789,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -175019,7 +174835,7 @@ msgstr "ARMI" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "TUTTE" @@ -175144,6 +174960,13 @@ msgstr "ELETTRONICA" msgid "CBMS" msgstr "CBM" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "ATTREZZI" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -175157,7 +174980,7 @@ msgstr "DISPOSITIVI LUMINOSI" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "ARMATURE" @@ -175198,7 +175021,7 @@ msgstr "MEDICINE" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "MATERIALI" @@ -185024,7 +184847,7 @@ msgstr "telaio leggero pieghevole" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -185103,6 +184926,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "luci di corridoio" @@ -186821,6 +186651,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -186890,7 +186738,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Bicicletta" @@ -186958,6 +186806,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -187103,8 +186955,8 @@ msgid "Wheelbarrow" msgstr "Cariola" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Sedia a rotelle pieghevole" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -187446,7 +187298,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -194363,7 +194214,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -194371,8 +194222,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -195359,9 +195210,9 @@ msgstr[2] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -195375,7 +195226,7 @@ msgstr[2] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -213354,74 +213205,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -213431,177 +213214,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -214824,116 +214436,135 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -214941,38 +214572,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -214980,95 +214612,105 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -215076,24 +214718,72 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -215101,25 +214791,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -215127,25 +214817,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -215153,7 +214843,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -215161,7 +214851,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -215171,7 +214861,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -215181,7 +214871,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -215191,7 +214881,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -215201,7 +214891,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -215210,7 +214900,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -215219,7 +214909,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -215229,7 +214919,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -215238,18 +214928,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -215258,7 +214948,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -215266,18 +214956,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -215287,7 +214977,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -215296,18 +214986,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -215315,25 +215005,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -215341,59 +215031,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -215402,7 +215124,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -215411,25 +215133,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "Chiesa" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -215441,7 +215163,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -215452,25 +215174,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -215480,7 +215202,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -215490,592 +215212,645 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -216087,245 +215862,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -216333,487 +216081,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -216821,321 +216589,365 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -217143,20 +216955,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -217164,74 +216976,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -217239,21 +217051,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -217261,105 +217073,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -217367,16 +217203,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -217384,74 +217220,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -217459,350 +217295,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -217810,7 +217646,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -217818,7 +217654,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -217826,49 +217662,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" @@ -217876,13 +217676,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" @@ -217890,13 +217690,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" @@ -217904,13 +217704,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -217918,59 +217718,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -217978,14 +217732,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" @@ -217993,13 +217747,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -218008,43 +217762,13 @@ msgstr[2] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -218052,14 +217776,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" @@ -218067,15 +217791,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -218083,47 +217806,47 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "Sangue di drago" msgstr[1] "Sangui di drago" msgstr[2] "Sangui di drago" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -218131,7 +217854,7 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" @@ -218141,7 +217864,7 @@ msgstr "" "misterioso. Ha probabilità molto alte di rimanere intatta una volta sparata," " tuttavia può essere sparata solo da Ichaival." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -218150,13 +217873,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" @@ -218164,13 +217887,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" @@ -218178,13 +217901,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -218193,13 +217916,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -218208,13 +217931,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -218223,13 +217946,13 @@ msgstr[2] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -218237,38 +217960,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -218276,13 +217974,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" @@ -218290,14 +217988,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -218305,24 +218003,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -218330,13 +218028,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -218345,12 +218043,12 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -218359,12 +218057,12 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" @@ -218372,13 +218070,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" @@ -218386,13 +218084,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" @@ -218400,14 +218098,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" @@ -218415,14 +218113,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -218431,20 +218129,20 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -218453,13 +218151,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -218468,13 +218166,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -218483,13 +218181,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -218498,14 +218196,14 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" @@ -218513,14 +218211,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" @@ -218528,14 +218226,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" @@ -218543,14 +218241,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" @@ -218558,14 +218256,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -218574,12 +218272,12 @@ msgstr[2] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -218587,7 +218285,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -218595,13 +218293,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -218609,180 +218307,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" @@ -218790,13 +218321,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" @@ -218804,13 +218335,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" @@ -218818,13 +218349,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" @@ -218832,13 +218363,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" @@ -218846,13 +218377,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" @@ -218860,13 +218391,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" @@ -218874,13 +218405,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" @@ -218888,13 +218419,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" @@ -218902,14 +218433,143 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" @@ -218917,7 +218577,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -218926,7 +218586,7 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" @@ -218934,11 +218594,11 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" @@ -218946,12 +218606,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" @@ -218959,14 +218619,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" @@ -218974,12 +218634,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" @@ -218987,13 +218647,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" @@ -219001,14 +218661,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -219016,13 +218676,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -219030,13 +218690,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -219044,13 +218704,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -219058,4584 +218718,5210 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "" + +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "" + +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "" + +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" + +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" + +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." msgstr "" +"Sangue di un drago, radia calore e guardandolo puoi vedere dei motivi " +"animati formarsi e scomparire al suo interno, come se stessi guardando ad un" +" vero e proprio fuoco." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "Mana cristallizzato" +msgstr[1] "Mana cristallizati" +msgstr[2] "Mana cristallizati" + +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" +"Del mana cristallizzato. Può essere ricaricato in cristalli di mana " +"ricaricabili, ma non può mai essere scaricato." + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." msgstr "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" - -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" -"Sangue di un drago, radia calore e guardandolo puoi vedere dei motivi " -"animati formarsi e scomparire al suo interno, come se stessi guardando ad un" -" vero e proprio fuoco." - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "Mana cristallizzato" -msgstr[1] "Mana cristallizati" -msgstr[2] "Mana cristallizati" - -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" -"Del mana cristallizzato. Può essere ricaricato in cristalli di mana " -"ricaricabili, ma non può mai essere scaricato." - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" - -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -223643,14 +223929,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -223658,20 +223944,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -223679,7 +223969,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -223688,7 +223978,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -223696,7 +223986,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -223704,7 +223994,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -223712,19 +224002,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -223732,14 +224022,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -223747,7 +224037,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -223756,7 +224046,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -223764,14 +224054,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -223779,14 +224069,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -223794,14 +224084,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -223809,14 +224099,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -223824,13 +224114,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -223838,7 +224128,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -223846,7 +224136,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -223854,12 +224144,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -223867,13 +224157,94 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -223881,7 +224252,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -223892,7 +224263,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -223900,17 +224271,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -223918,7 +224289,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -223928,7 +224299,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -223936,7 +224307,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -223945,7 +224316,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -223953,13 +224324,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -223967,16 +224338,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -223984,19 +224356,19 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -224004,7 +224376,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -224013,19 +224385,19 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -224033,7 +224405,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -224042,7 +224414,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -224050,14 +224422,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -224065,13 +224437,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -224079,13 +224451,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -224093,13 +224465,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -224107,144 +224479,192 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -224252,222 +224672,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -224475,48 +224895,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -224524,12 +224944,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -224537,12 +224957,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -224550,103 +224970,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -224655,204 +225075,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -224860,24 +225280,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" @@ -224885,48 +225305,68 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "Vedere questo è un bug." -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -231441,6 +231881,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -231633,10 +232077,6 @@ msgstr "Abbandona l'oggetto in una casella adiacente" msgid "View/Activate Bionics" msgstr "Visualizza/Attiva estensioni bioniche" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Visualizza/Attiva Mutazioni" @@ -237679,6 +238119,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -237747,6 +238188,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -238603,6 +239048,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -254266,7 +254715,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -260247,7 +260701,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -265403,10 +265863,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -269625,7 +270086,7 @@ msgstr "Impostazioni mondo" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -277286,6 +277747,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -277427,6 +277893,16 @@ msgstr "Il motore del veicolo %s emette un rumore improvviso." msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -278021,11 +278497,6 @@ msgstr "Incarti accuratamente %s in una sistemazione portatile." msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "%s piegato." - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/ja.po b/lang/po/ja.po index 781b229becbc..5d3e0766335c 100644 --- a/lang/po/ja.po +++ b/lang/po/ja.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: O M, 2024\n" "Language-Team: Japanese (https://app.transifex.com/bn-team/teams/113585/ja/)\n" "MIME-Version: 1.0\n" @@ -7757,6 +7757,17 @@ msgstr "透視(デバッグ専用)" msgid "You can see through everything!" msgstr "全てを透視出来るようになりました!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "ザナックス摂取" @@ -11088,7 +11099,7 @@ msgstr "オンにする" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "オフにする" @@ -11536,75 +11547,91 @@ msgstr "弾倉" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "弾薬" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "武器" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "道具" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "電子機器" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "衣類" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "食料" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "薬品" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "本" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "呪文書" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "地図" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MOD" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "変異原" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "生体部品" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "車両部品" @@ -11618,51 +11645,89 @@ msgstr "車両部品" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "他" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "燃料" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "種" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "化学物質" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "バッテリー" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "予備部品" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "石" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "容器" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "アーティファクト" +#: data/json/item_category.json +msgid "MAPS" +msgstr "地図" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "着用中" @@ -12406,12 +12471,12 @@ msgstr "分類: 死体" msgid "Destination for corpses" msgstr "死体を置く区域です。" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "分類: 地図" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "地図を置く区域です。" @@ -12453,6 +12518,177 @@ msgid "" "action." msgstr "この区域内のお気に入りアイテムは区域行動の「分類」時に無視されます。" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "分類: 予備部品" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "除外: 自動拾得しないアイテム" @@ -12956,7 +13192,7 @@ msgstr "" "\n" "知性x25%の命中精度上昇、器用x25%の命中精度低下" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "エスクリマ" @@ -12994,7 +13230,7 @@ msgstr "" "\n" "精度+2" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "フェンシング" @@ -13035,7 +13271,7 @@ msgstr "" "器用x50%のブロック時ダメージ軽減" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "本(武術/戦の華)" @@ -13220,7 +13456,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "クラヴマガ" @@ -13355,7 +13591,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "中世剣術" @@ -13438,7 +13674,7 @@ msgstr "" "\n" "筋力x50%のブロック時ダメージ軽減" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "忍術" @@ -13646,7 +13882,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "シラット" @@ -14946,7 +15182,7 @@ msgid "Resin" msgstr "樹脂" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "凹んだ" @@ -14955,22 +15191,22 @@ msgid "gouged" msgstr "抉れた" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "傷ついた" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "斬撃" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "ひび割れた" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "砕けた" @@ -14983,7 +15219,7 @@ msgid "bent" msgstr "曲がった" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "砕けた" @@ -14995,7 +15231,7 @@ msgstr "損壊" msgid "Biosilicified Chitin" msgstr "シリコンキチン" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "欠けた" @@ -15008,7 +15244,7 @@ msgid "Brass" msgstr "真鍮" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "汚れた" @@ -15026,7 +15262,7 @@ msgstr "段ボール" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "破れた" @@ -15035,12 +15271,12 @@ msgid "torn" msgstr "裂けた" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "ずたずたに裂けた" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "大破した" @@ -15100,7 +15336,7 @@ msgstr "肉" msgid "bruised" msgstr "傷んだ" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "薄く切れた" @@ -15522,7 +15758,7 @@ msgstr "オート" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19909,12 +20145,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "先程、クライアントが料金への不満を言う代わりに脳を喰らおうとしてきました。しかし、もうその行為を裁判に持ち込む事もできません。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "司祭" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "司祭" @@ -19941,18 +20177,18 @@ msgid "" msgstr "" "黙示録の日が訪れた時、教区内を守る為に自分の出来うる全てを誠実にこなしましたが、祈りは天には届かなかったようです。死者となった者達から身を守る為に、多くの具体的な何かを実行に移す必要があるでしょう。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "神主" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "神主" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19962,7 +20198,7 @@ msgstr "" "神社の管理を任されており、祭事や式典を執り行ってきました。死者の魂が神社で安らかに眠るのを願っていましたが、どうやら腐った死体達はそれを許してくれないようです。" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19971,12 +20207,12 @@ msgid "" msgstr "" "神社の管理を任されており、祭事や式典を執り行ってきました。死者の魂が神社で安らかに眠るのを願っていましたが、どうやら腐った死体達はそれを許してくれないようです。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "イマーム" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "イマーム" @@ -20003,18 +20239,18 @@ msgid "" msgstr "" "黙示録の日が訪れる前は、預言者の声を聞き、コーランを熟読し、地域社会を平和に導く為に、地元のモスクで祈りを捧げる日々を過ごしていました。かつては遠方から信者達が話を聞きに来てくれましたが、今では脳味噌を食べにやってくる者ばかりです。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "ラビ" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "ラビ" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -20022,19 +20258,19 @@ msgid "" msgstr "シナゴーグで信徒達と儀式を挙行していたところに破滅が訪れました。今こそメシアが必要です!" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "シナゴーグで信徒達と儀式を挙行していたところに破滅が訪れました。今こそメシアが必要です!" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "グル" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "グル" @@ -20059,12 +20295,12 @@ msgid "" msgstr "" "長い間、世界中を旅して見聞を広めてきました。普通ならばどんな質問でも答える自信がありますが、そこかしこに跋扈する貪欲な死者に対して何をするべきかについては...何も答えられそうにありません。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "伝道者" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "伝道者" @@ -20853,15 +21089,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "スケート少年" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "スケート少女" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20869,7 +21105,7 @@ msgid "" "can't roll." msgstr "ローラーブレード大好き!世界は終わりましたが、少なくとも大人たちに遊び場を指図されることはもうありません。" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20877,6 +21113,34 @@ msgid "" "can't roll." msgstr "ローラーブレード大好き!世界は終わりましたが、少なくとも大人たちに遊び場を指図されることはもうありません。" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -28151,7 +28415,6 @@ msgid "awl" msgstr "目打ち" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "湾曲針" @@ -28267,7 +28530,6 @@ msgstr "弾頭抜取" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "金床" @@ -28331,7 +28593,6 @@ msgid_plural "none" msgstr[0] "0" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "気泡シート" @@ -28351,21 +28612,18 @@ msgid "Crunch!" msgstr "バリバリッ!" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "コット" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "漏斗" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "簡易漏斗" @@ -28383,8 +28641,7 @@ msgid "microlab shifting hall" msgstr "転移通路" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "トラバサミ" @@ -28416,13 +28673,11 @@ msgid "tripwire" msgstr "仕掛け線" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "簡易監視アラーム" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "クロスボウの罠" @@ -28463,7 +28718,6 @@ msgid "Swinnng!" msgstr "ブウゥゥゥン!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "地雷" @@ -28480,7 +28734,6 @@ msgid "buried land mine" msgstr "埋まった地雷" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "瞬間移動プレート" @@ -28524,7 +28777,6 @@ msgid "ledge" msgstr "足場がない地形" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "ブービートラップ" @@ -28535,14 +28787,12 @@ msgstr "ガラス穴" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "漏斗(革)" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "シラカバ漏斗" @@ -28553,7 +28803,6 @@ msgstr "縦樋漏斗" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "漏斗(金属)" @@ -28917,7 +29166,8 @@ msgstr "" msgid "Thunder Storm" msgstr "雷雨" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "ライトニング・ストーム" @@ -28959,6 +29209,18 @@ msgid "" msgstr "" "そのサイズからは想像できないほど重い立方体です。見つめると視線が立方体の内側へ吸い寄せられ、所持している限り常に自分の現在地と周囲を俯瞰的に知覚できます。" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -29034,7 +29296,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "[金属が軋む音]" @@ -29064,7 +29327,8 @@ msgstr "[金属が軋む音]" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "ガン!" @@ -29408,7 +29672,6 @@ msgstr "電気が通っていれば汚れた服を洗えるのですが。" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "オーブン" @@ -29515,8 +29778,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "バシッ!" @@ -29760,7 +30024,7 @@ msgstr "電気配線に接続されている、食料の保存に役立ちそう #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "バリバリッ!" @@ -29788,7 +30052,7 @@ msgstr "バリバリッ!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "ドン。" @@ -29906,7 +30170,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "冷蔵庫" @@ -29965,7 +30228,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -30284,7 +30546,7 @@ msgstr "オーバーヘッドライト" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "[ガラスが割れる音!]" @@ -30371,7 +30633,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -30398,7 +30660,7 @@ msgstr "ガチャン!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "ドーン!" @@ -30567,7 +30829,7 @@ msgstr "石造りの彫像です。" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "ゴツン。" @@ -30904,7 +31166,7 @@ msgstr "あぁ。例え世界がめちゃくちゃになっても、火の傍に #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "ガチャン!" @@ -30921,7 +31183,6 @@ msgstr "暖房や調理ができる薪ストーブです。焚火よりもはる #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "火鉢" @@ -30933,7 +31194,6 @@ msgstr "安全に物を燃やすための、脚が付いた金属製の皿です #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "ホーボーストーブ" @@ -30947,7 +31207,6 @@ msgstr "金属の缶等から作った、木材を燃料とする簡易ストー #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "ドラム缶ストーブ(200L)" @@ -30968,7 +31227,6 @@ msgstr "内部で火を燃やすために使う大きなドラム缶です。側 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "ドラム缶ストーブ(100L)" @@ -31114,7 +31372,6 @@ msgstr "淡水の水面に咲く美しい花です。古くから様々な東洋 #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "ヒマワリ" @@ -31970,7 +32227,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "浄水器" @@ -32387,7 +32643,6 @@ msgstr "スツール" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "アウトドアチェア" @@ -32527,7 +32782,6 @@ msgstr "バシッ。" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "マットレス" @@ -32551,7 +32805,6 @@ msgstr "ビリビリビリ!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "マットレス(羽毛)" @@ -33093,9 +33346,21 @@ msgid "" " heavy things." msgstr "金属製の頑丈な作業台です。大きく重いものを製作するのに最適な場所です。" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "防水シート(革)" @@ -33128,7 +33393,6 @@ msgstr "グシャッ。" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "繊維マット" @@ -33144,7 +33408,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "アウトドアテーブル" @@ -33641,7 +33904,6 @@ msgstr "金属加工に使います。" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "蒸留器" @@ -33655,7 +33917,6 @@ msgstr "混合した液体を精製する、醸造や化学実験に必要不可 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "炭焼窯" @@ -33670,7 +33931,6 @@ msgstr "木材や有機物を酸素のない状態で燃焼させて炭に加工 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "炭焼窯(木材投入済)" @@ -33734,7 +33994,6 @@ msgstr "食品を燻して日持ちと味を向上させるための、特製の #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "燻製ラック" @@ -33771,7 +34030,6 @@ msgstr "陶器やレンガを焼くための窯です。" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "脚立" @@ -35269,7 +35527,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "ゴツン" @@ -35652,7 +35910,6 @@ msgstr "土です。耕作に適した土壌のようです。掘り返して建 #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "砂" @@ -35910,7 +36167,6 @@ msgstr "公共区画に敷かれたコンクリートは氷結によって損傷 #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "コンクリート" @@ -37584,7 +37840,6 @@ msgstr "地下水が溜まった深い井戸です。設置されているポン #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -38233,7 +38488,6 @@ msgstr "踏切がある事を表す交通標識ですが、列車が走ってい #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "鉄道レール(小)" @@ -39274,7 +39528,6 @@ msgstr "壁全体が蝋で作られています。" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "硬岩" @@ -40204,7 +40457,6 @@ msgstr "マンホールです。重い鉄の蓋は、下水と雨水が自由に #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "マンホール蓋" @@ -40380,6 +40632,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -40440,7 +40728,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "このアイテムが見えている場合はバグが発生しています。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "糸" @@ -40451,7 +40738,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "裁縫道具に装填できる少量の糸です。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "腱" @@ -40462,7 +40748,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "動物の死体から採取した丈夫な腱です。糸として使用できます。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "植物繊維" @@ -40473,7 +40758,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "植物から採取した丈夫で細い繊維です。糸として使用できます。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "織糸" @@ -40494,7 +40778,6 @@ msgid "A cleansing agent made into bars." msgstr "固形の合成洗剤です。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "ダクトテープ" @@ -40505,7 +40788,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "信じられないほど強力なテープです。その用途は無限にあります。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "巻紙" @@ -40516,7 +40798,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "薄さや燃焼性などが調整された、タバコの葉を巻く紙片です。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "銅線" @@ -40560,7 +40841,6 @@ msgid_plural "watery plutonium slurry" msgstr[0] "プルトニウム希釈懸濁液" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "ロック" @@ -40784,7 +41064,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "簡単に成型できる便利なゴムの塊です。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "銅" @@ -40826,7 +41105,6 @@ msgstr "" "木材をゆっくりと燃焼させることで生成される、可燃性の炭素系物質です。高温の炎が必要なレシピで利用できます。空気や水から汚染物質を除去するフィルターにも加工できます。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "石炭石灰混合物" @@ -41030,7 +41308,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "酸素と窒素を潜水に適した比率で混合した気体です。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "火口" @@ -41061,7 +41338,6 @@ msgid "A metal die used to play various role-playing games" msgstr "TRPGで使う金属製のサイコロです。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "青銅" @@ -41376,7 +41652,6 @@ msgstr "磁性体" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "UPS" @@ -43308,7 +43583,6 @@ msgstr "" "純粋な硫黄の粉末です。主にバッテリー用の希硫酸を作るのに使われますが、爆発物の燃料としても用いられます。燃やすと微生物や人体にとって致命的な酸性の煙が発生し、酸化させると紙用の漂白剤になります。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "硫黄塊" @@ -43321,7 +43595,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "セメント" @@ -43336,7 +43609,6 @@ msgstr "" "ポルトランドセメントが発明されてから幾年も経ちましたが、その栄光は今なお続いています。この万能接合材はあらゆる石を繋ぎ合わせます。ただ水を加えるだけで効果を発揮します。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "石灰岩" @@ -43350,7 +43622,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "生石灰" @@ -43373,7 +43644,6 @@ msgid "" msgstr "ニューイングランドの砂です。ガラスの材料になりますが、炉が無いのであればセメントの材料以外に良い使い道はありません。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "土" @@ -43398,7 +43668,6 @@ msgid "" msgstr "小さな石灰岩の破片です。かなり薄っぺらいので武器にはなりませんが、アルカリの性質を何かに利用することが出来そうです。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "岩塩" @@ -43409,7 +43678,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "少量の岩塩です。精製して食塩に出来ます。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "ロードナイト" @@ -43422,7 +43690,6 @@ msgid "" msgstr "ロードナイトの塊です。二酸化マンガンに覆われており、タガネを使えば削り取れます。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "ジンカイト" @@ -43781,7 +44048,6 @@ msgid "" msgstr "ひとかけらの硝酸カリウムです。化学肥料としても使いますが、主に黒色火薬の原料や、砂糖ロケットのような単純なロケットの推進剤に用いられます。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "硝石" @@ -43794,7 +44060,6 @@ msgid "" msgstr "硝酸カリウムが結晶化して作られた、大きな鉱石です。硝酸カリウムに加工できます。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -44147,7 +44412,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "スチール担体" @@ -44192,7 +44456,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "ペレット状の核分裂性物質です。取り扱いには気をつけてください。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "ウッドビーズ" @@ -45659,7 +45922,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -45671,7 +45933,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -45796,7 +46057,6 @@ msgid "" msgstr "枯れた植物です。火を起こす、一つにまとめてベッドにするなどの用途があります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "端切れ(毛皮)" @@ -45807,7 +46067,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "動物から剥いだ毛皮の端切れです。暖かい衣類が作れそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "端切れ(フェイクファー)" @@ -45818,7 +46077,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "派手な色のフェイクファーの端切れです。衣類を製作する材料になります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "端切れ(革)" @@ -45829,7 +46087,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "革の端切れです。頑丈な衣類の材料になります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "端切れ(フェルト)" @@ -45840,7 +46097,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "フェルトの端切れです。分解すると羊毛の織糸になります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "端切れ(ノーメックス)" @@ -45851,7 +46107,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "ノーメックスの端切れです。耐火性能があります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "瞬間接着剤" @@ -45862,7 +46117,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "チューブに入った強力な接着剤です。多くのレシピで利用します。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "膠" @@ -45897,7 +46151,6 @@ msgid "A token, representing fertilization of a plant." msgstr "植物に肥料を与えたことを示す代用アイテムです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "チェーン" @@ -45910,7 +46163,6 @@ msgid "" msgstr "厚鋼製の鎖です。武器にもアイテムの製作にも使えます。この武器は攻撃目標に絡まる可能性があり、素手による攻撃にボーナスを見込めます。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "キチンの塊" @@ -45921,7 +46173,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "昆虫の外骨格の一部です。軽くて非常に耐久性があります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -45950,7 +46201,6 @@ msgid "" msgstr "高級セラミックで作られた、まるで鱗のような小さく細長いディスクです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "シリコンキチン塊" @@ -45964,7 +46214,6 @@ msgid "" msgstr "シリコン化した生物の外骨格です。耐酸性と耐久性に優れています。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "生地束(綿)" @@ -45977,7 +46226,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "資材束(革端切れ)" @@ -45991,7 +46239,6 @@ msgid "" msgstr "保管のためにしっかりと束ねた革の端切れです。分解して使いましょう。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "資材束(フェルト端切れ)" @@ -46063,7 +46310,6 @@ msgstr "" "拳ほどの大きさの石です。螺旋状の複雑な模様が浮き出ています。人の手が加えられているのか、自然にそうなっているのか、はたまた何かの化石なのかは分かりません。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "USBメモリ" @@ -46074,7 +46320,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "ソフトウェアの保存に便利なUSBメモリです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "データカード" @@ -46087,7 +46332,6 @@ msgid "" msgstr "先進的なデータストレージ装置の一種です。大量のデータを保存できます。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -46101,7 +46345,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "燭台" @@ -46149,7 +46392,6 @@ msgstr "" "外径8インチの丸ノコギリ刃です。工具に取り付けてもいいですし、武器として投擲しても構いません。丈夫なグローブなしで扱うのは止めた方がよさそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "差し管" @@ -46164,7 +46406,6 @@ msgstr "" "木の皮に差し入れて樹液を採取するための、金属製シリンダーです。冬の終わりから春の初めにかけて、カエデの木に使用することで樹液を採取できます。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "ワイヤー" @@ -46177,7 +46418,6 @@ msgid "" msgstr "細長く比較的硬い鋼のワイヤーです。フェンスにも使われている素材です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "有刺鉄線" @@ -46188,7 +46428,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "鋭い棘に覆われた硬く長いワイヤーです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "金網" @@ -46203,7 +46442,6 @@ msgstr "" "乾燥機の糸くずフィルターやコーヒーフィルターなどに利用できる、スチールワイヤー製の目が細かい網です。窓にはめ込んで蚊などの虫の侵入を防ぐことも可能ですが、今の状況ならもっと目の粗い柵でも代用できますね。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "鉄筋" @@ -46260,7 +46498,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "使用済みのマグネシウム照明です。使い道のないゴミですね。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "バネ" @@ -46308,7 +46545,6 @@ msgid "" msgstr "ファミリーサイズのテントです。非常にかさばりますが中のスペースは広いです。壊れていて広げられません。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "発熱体" @@ -46319,7 +46555,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "ヒーターの部品です。ホットプレートや電気ケトルに使われています。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "バイメタルサーモスタット" @@ -46331,7 +46566,6 @@ msgid "" msgstr "二種類の金属の熱膨張を利用して制御する、単純なサーモスタットです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "テレビ" @@ -46342,7 +46576,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "大型の液晶ディスプレイです。有用な電子部品が詰まっています。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "点火装置" @@ -46379,7 +46612,6 @@ msgid "" msgstr "複雑な機械式の信管です。衝撃を受けた際に、爆薬を確実に爆発させることができるようです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "トースター" @@ -46390,7 +46622,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "パンが2枚まで焼ける小型のトースターです。予備部品として以外の使い道は多くはないでしょうね。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "電子レンジ" @@ -46403,7 +46634,6 @@ msgid "" msgstr "家庭用の電子レンジです。多分、ベイクドビーンズのシェアを広げるのに役立ちました。分解して部品を取るには最適なガラクタでしょう。" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "ノートPC" @@ -46413,9 +46643,7 @@ msgstr[0] "ノートPC" msgid "A broken laptop, basically a paperweight now." msgstr "壊れたノートPCです。現状では使い道がありません。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "壊れた監視ロボット" @@ -46428,9 +46656,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "壊れた監視ロボットです。バックアップも呼び出せなくなっており、もはや脅威ではありません。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "壊れた高速ロボット" @@ -46443,7 +46669,6 @@ msgid "" msgstr "壊れた高速ロボットです。地面にごろんと寝かされており、もはや脅威ではありません。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "壊れた研究所防衛ロボット" @@ -46456,7 +46681,6 @@ msgid "" msgstr "壊れた研究所防衛ロボットです。タンクが壊れて内部の液体が漏れ出ています。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "壊れた警官ロボット" @@ -46469,7 +46693,6 @@ msgid "" msgstr "壊れた警官ロボットです。完全に沈黙しており、もはや脅威ではありません。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "壊れた看護ロボット" @@ -46482,7 +46705,6 @@ msgid "" msgstr "壊れた看護ロボットです。整った顔が虚空をじっと見つめています。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "壊れた配送ロボット" @@ -46502,7 +46724,6 @@ msgid "" msgstr "壊れた故障店員ロボットです。笑顔で虚空をじっと見つめています。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -46515,7 +46736,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "壊れた暴動鎮圧ロボット" @@ -46528,7 +46748,6 @@ msgid "" msgstr "壊れた暴動鎮圧ロボットです。鎮圧用ガスも全て使い切ったようで、もはや脅威ではありません。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "壊れた試作ロボット" @@ -46540,9 +46759,7 @@ msgid "" " parts." msgstr "壊れた試作ロボットです。以前より更に酷い状態です。部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "壊れた採掘ロボット" @@ -46556,7 +46773,6 @@ msgid "" msgstr "壊れた採掘ロボットです。何も採掘することができなくなっており、もはや脅威ではありません。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "壊れた偵察メック" @@ -46569,19 +46785,16 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "壊れた外骨格着用型メックです。修理は不可能なようです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "壊れた運搬メック" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "壊れた戦闘メック" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "壊れた暴動鎮圧支援ロボット" @@ -46596,7 +46809,6 @@ msgstr "" "壊れた暴動鎮圧支援ロボットです。モーターは壊れて機能を停止し、網目状になった中央の空間には焼け焦げたマンハックが満載されています。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "壊れた軍用支援ロボット" @@ -46611,9 +46823,7 @@ msgid "" msgstr "" "壊れた軍用支援ロボットです。胴体部が裂け、内部マンハックは機能を停止していますが、破壊的な潜在能力を考えると未だに恐怖を感じずにはいられません。分解して部品を取り出せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "壊れたマンハック" @@ -46627,9 +46837,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "壊れたマンハックです。地面にごろんと転がっており、もはや脅威ではありません。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "壊れたマンハック(手榴弾)" @@ -46642,9 +46850,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "壊れたマンハック(手榴弾)です。地面にごろんと転がっており、もはや脅威ではありません。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "壊れたマンハック(小型原子爆弾)" @@ -46657,9 +46863,7 @@ msgid "" "be gutted for parts." msgstr "壊れたマンハック(小型原子爆弾)です。ただの残骸を見ているだけでも寒気がします。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "壊れたマンハック(催涙ガス)" @@ -46672,9 +46876,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "壊れたマンハック(催涙ガス)です。地面にごろんと転がっており、もはや脅威ではありません。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "壊れたマンハック(EMP)" @@ -46687,9 +46889,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "壊れたマンハック(EMP)です。地面にごろんと転がっており、もはや脅威ではありません。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "壊れたマンハック(閃光弾)" @@ -46702,9 +46902,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "壊れたマンハック(閃光弾)です。地面にごろんと転がっており、もはや脅威ではありません。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "壊れたマンハック(C4爆弾)" @@ -46743,7 +46941,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "マザーボード" @@ -46754,7 +46951,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "プロセッサ装置です。高度な電子機器の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "メモリチップ" @@ -46765,7 +46961,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "記憶装置です。高度な電子機器の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "電力変換器" @@ -46776,7 +46971,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "電源ユニットです。多くの電子機器の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "増幅回路" @@ -46789,7 +46983,6 @@ msgid "" msgstr "信号を増幅するように設計された回路です。多くの電子機器の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "中継回路" @@ -46802,7 +46995,6 @@ msgid "" msgstr "受信した信号を送信する回路です。通信装置の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "信号受信機" @@ -46815,7 +47007,6 @@ msgid "" msgstr "信号を受信するモジュールです。通信装置の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "大型液晶ディスプレイ" @@ -46828,7 +47019,6 @@ msgid "" msgstr "映像を表示できる、バックライト付きの大型ディスプレイです。電子機器の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "小型液晶ディスプレイ" @@ -46841,7 +47031,6 @@ msgid "" msgstr "画像を表示できる、バックライト付きの小さなディスプレイです。電子機器の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "高性能レンズ" @@ -46855,7 +47044,6 @@ msgid "" msgstr "光の収束や拡散ができる、小型の高性能レンズです。着火にも使えそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "小型高性能レンズ" @@ -46869,7 +47057,6 @@ msgid "" msgstr "光の収束や拡散ができる、小型の高性能レンズです。アイテム製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "色付きレンズ" @@ -46882,7 +47069,6 @@ msgid "" msgstr "サングラスに使われるような2枚の小さな黒いレンズです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "壊れた生体部品" @@ -46926,7 +47112,6 @@ msgstr "" "複雑なシリコン製回路の製造に必要な命令セットが入った、最先端の光記憶システムです。内部データにはかつて数百万ドルは下らない価値が付きましたが、今の状況でハイテク文鎮以上の用途があるのでしょうか。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "アンテナ" @@ -46937,7 +47122,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "シンプルなアルミ製の細い棒です。多くの電子機器のレシピに使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "マイクロモーター" @@ -46950,7 +47134,6 @@ msgid "" msgstr "ラジコンカーで用いられるような、非常に小さなモーターです。多くの電子機器の製作材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "回路基板" @@ -46963,7 +47146,6 @@ msgid "" msgstr "非伝導性基板上の電子部品に接続対応したプリント基板です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "廃電子機器" @@ -46987,7 +47169,6 @@ msgid "" msgstr "無線局の切り替えができるように設計した、自立型の中継器です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "卓上扇風機" @@ -46998,7 +47179,6 @@ msgid "A small fan, used to propel air around a room." msgstr "室内の空気を循環させるのに使う卓上扇風機です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "防弾プレート" @@ -47023,7 +47203,6 @@ msgid "" msgstr "金魚鉢には「エドへ」という宛名と「ホス」という魚の名前が書かれたタグ、そして魚が入っています。魚には小さな枝角が付いているように見えます。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "布" @@ -47054,7 +47233,6 @@ msgid "" msgstr "血塗れの大きな布です。熱湯で洗浄しましょう。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "パイプブラシ" @@ -47068,7 +47246,6 @@ msgid "" msgstr "パイプや瓶などの内部を掃除するための道具です。ブラシが非常に小さく、銃口に挿入して内部を掃除することも可能です。" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "時計" @@ -47090,7 +47267,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "歯車など時計の機構に必要となる小さな部品の詰め合わせです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "SDメモリーカード" @@ -47101,7 +47277,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "使用された形跡のあるメモリーカードです。一見の価値がある...かもしれません。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "SDメモリーカード(空)" @@ -47115,7 +47290,6 @@ msgid "" msgstr "このメモリーカードは新品なのかフォーマット済みなのか分かりませんが空っぽです。でも、これを使ってデータを保存することができますよ!" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "SDメモリーカード(暗号化)" @@ -47129,7 +47303,6 @@ msgid "" msgstr "このメモリーカードには暗号化されています。暗号化に値する中身にわくわくしますね。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "SDメモリーカード(科学)" @@ -47159,7 +47332,6 @@ msgid "" msgstr "下水道への入り口となる梯子を塞いでいる、ずっしりと重い鉄の円盤です。バールがなければ持ち上げられそうにありません。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "松の枝" @@ -47172,7 +47344,6 @@ msgid "" msgstr "松の木の枝です。粘着性の樹液がにじみ出ており、ちくちくとした針葉が生えています。 " #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "松かさ" @@ -47204,7 +47375,6 @@ msgid "" msgstr "ヒマワリの花には、黄色い花弁と動物にまだ食べられていない種が残っています。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "カモミールの花" @@ -47216,13 +47386,11 @@ msgid "" msgstr "白いカモミールの花です。古くから薬草として利用されています。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "スイレンの花" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "スパージの花" @@ -47235,7 +47403,6 @@ msgid "" msgstr "黄緑色の花です。煎じると喘息発作の予防効果をもつ茶になります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "粘土" @@ -47246,7 +47413,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "湿り気のある粘度の塊です。アイテム製作の材料として使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "レンガ" @@ -47257,7 +47423,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "堅く焼成された石工建築用のレンガです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "モルタル" @@ -47268,7 +47433,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "いつでも建築に使えるよう調整されたモルタルです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "日干しレンガ(未乾燥)" @@ -47291,7 +47455,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "日干しレンガ" @@ -47304,7 +47467,6 @@ msgid "" msgstr "土と天然繊維を混ぜて固めた資材です。乾燥しており、レンガとして利用するのに十分な硬度があります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "日干しレンガ用モルタル" @@ -47317,7 +47479,6 @@ msgid "" msgstr "砂の含有量が少なく乾燥しても崩れにくい、濃厚なペースト状の泥です。泥や粘土を固めて作った大きく重い建材同士の接着に使います。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "タン皮" @@ -47328,7 +47489,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "シラカバ樹皮" @@ -47339,7 +47499,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "シラカバの木から採取した樹皮です。丈夫で耐水性があります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "ヤナギ樹皮" @@ -47352,7 +47511,6 @@ msgid "" msgstr "ヤナギの木から採取した樹皮です。アスピリンの製作に使われます。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "ダイヤモンド" @@ -47363,7 +47521,6 @@ msgid "A sparkling diamond." msgstr "光り輝くダイヤモンドです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "ガーネット" @@ -47374,7 +47531,6 @@ msgid "A sparkling garnet." msgstr "光り輝くガーネットです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "アメシスト" @@ -47385,7 +47541,6 @@ msgid "A sparkling amethyst." msgstr "光り輝くアメシストです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "アクアマリン" @@ -47396,7 +47551,6 @@ msgid "A sparkling aquamarine." msgstr "光り輝くアクアマリンです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "エメラルド" @@ -47407,7 +47561,6 @@ msgid "A sparkling emerald." msgstr "光り輝くエメラルドです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "アレキサンドライト" @@ -47418,7 +47571,6 @@ msgid "A sparkling alexandrite." msgstr "光り輝くアレキサンドライトです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "真珠" @@ -47429,7 +47581,6 @@ msgid "A lustrous pearl." msgstr "艶やかな真珠です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "ルビー" @@ -47440,7 +47591,6 @@ msgid "A sparkling ruby." msgstr "光り輝くルビーです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "ペリドット" @@ -47451,7 +47601,6 @@ msgid "A sparkling peridot." msgstr "光り輝くペリドットです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "サファイア" @@ -47462,7 +47611,6 @@ msgid "A sparkling sapphire." msgstr "光り輝くサファイアです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "オパール" @@ -47473,7 +47621,6 @@ msgid "A lustrous opal." msgstr "艶やかなオパールです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "トルマリン" @@ -47484,7 +47631,6 @@ msgid "A sparkling tourmaline." msgstr "光り輝くトルマリンです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "黄水晶" @@ -47495,7 +47641,6 @@ msgid "A sparkling citrine." msgstr "光り輝く黄水晶です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "トパーズ" @@ -47506,7 +47651,6 @@ msgid "A sparkling blue topaz." msgstr "光り輝くブルートパーズです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "粗皮(乾燥)" @@ -47520,7 +47664,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "粗毛皮(乾燥)" @@ -47556,7 +47699,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "古い藁人形です。ドレスを着た女性を表現しています。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "枕" @@ -47567,7 +47709,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "睡眠時に頭部を心地良く包み込んでくれる枕です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "抱き枕" @@ -47580,7 +47721,6 @@ msgid "" msgstr "人間ほどのサイズの抱き枕です。表面にはアニメのキャラクター、裏面にはそのキャラクターの露出度が高くなった姿がプリントされています。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "枕(羽毛)" @@ -47591,7 +47731,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "睡眠時に頭部を心地良く包み込んでくれる柔らかな枕です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "テディベア" @@ -47610,7 +47749,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "札束" @@ -47658,7 +47796,7 @@ msgstr[0] "葉巻" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "火を消す" @@ -47772,7 +47910,6 @@ msgid "" msgstr "ニコチンがたっぷり入ったタバコの葉です。喫煙できる状態にするには、乾燥させる必要があります。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "キャッシュカード" @@ -47799,7 +47936,6 @@ msgid "" msgstr "試作ロボットのCPUに取り付けられていた、小さな透明のカードです。通信装置が言っていたデータが記録されているかもしれません。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "給油割引カード(シルバー)" @@ -47810,7 +47946,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "ガソリンを多少の割引価格で購入できるカードです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "給油割引カード(ゴールド)" @@ -47821,7 +47956,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "ガソリンを割引価格で購入できるカードです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "給油割引カード(プラチナ)" @@ -47832,7 +47966,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "ガソリンを大幅な割引価格で購入できるカードです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "IDカード(研究所)" @@ -47846,7 +47979,6 @@ msgid "" msgstr "科学者が持っていたIDカードです。カードの裏面には使用方法が書かれています。1枚のカードにつき1つのコントロールパネルにアクセスできます。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "IDカード(軍)" @@ -47861,7 +47993,6 @@ msgstr "" "高い地位にある軍人が持っていたIDカードです。カードの裏面には使用方法が書かれています。1枚のカードにつき1つのコントロールパネルにアクセスできます。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "IDカード(工業)" @@ -47876,7 +48007,6 @@ msgstr "" "高度な技術者が持っていたIDカードです。カードの裏面には使用方法が書かれています。1枚のカードにつき1つのコントロールパネルにアクセスできます。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "端切れ(ネオプレン)" @@ -47927,7 +48057,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "電球" @@ -47948,7 +48077,6 @@ msgid "A twisted shard of jagged metal." msgstr "捻じれて尖った金属の破片です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "植木鉢(陶器)" @@ -47959,7 +48087,6 @@ msgid "A nice looking clay pot used for planting." msgstr "植物を植えられる形の良い素焼きの鉢です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "植木鉢(プラスチック)" @@ -48084,7 +48211,6 @@ msgid "" msgstr "はんだ付け機能を備えた溶接ステーションを構築するのに役立つ部品一式です。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "アンプヘッド" @@ -48096,9 +48222,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "通常は楽器の音を増幅するスピーカーキャビネットと併用します。現状では分解して部品を取り出す以外の用途はありません。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "壊れたタレット" @@ -48110,9 +48234,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "壊れたタレットです。地面にごろんと転がり、もはや脅威ではありません。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "壊れた暴動鎮圧タレット" @@ -48124,15 +48246,13 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "壊れた暴動鎮圧タレットです。地面にごろんと転がり、もはや脅威ではありません。分解して部品を取り外せそうです。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "壊れたレーザータレット" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "壊れた警備ロボット" @@ -48145,7 +48265,6 @@ msgid "" msgstr "壊れた警備ロボットです。破損して内部の液体が漏れ出ています。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "壊れた無人戦闘車" @@ -48160,7 +48279,6 @@ msgid "" msgstr "壊れた無人車両です。破損して内部の液体が漏れ出ています。分解して部品を取り外せそうです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "耐熱レンガ" @@ -48215,19 +48333,16 @@ msgid "" msgstr "立方体の形状に固まっている、家畜用の重い塩の塊です。酷い味なので、舐めようとは思わないことです。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "壊れた軽タレット" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "壊れた軍用中型タレット" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "壊れた軍用長射程タレット" @@ -48407,7 +48522,6 @@ msgid "" msgstr "カボチャのランタンの中でろうそくが揺らめき、不気味な顔が浮かび上がっています。光は弱いですが、とても長持ちします。" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "クリスマスリース" @@ -48561,7 +48675,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "ロボットモジュール用のテンプレートです。このアイテムがゲームに出現している場合はバグが発生しています。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "照準モジュール" @@ -48574,7 +48687,6 @@ msgid "" msgstr "末端センサーから得た視覚や固有情報を統合し、正確な照準に必要な情報を出力するモジュールです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "識別モジュール" @@ -48587,7 +48699,6 @@ msgid "" msgstr "敵と味方を識別する画像認識アルゴリズムを継続的に実行するモジュールです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "経路探索モジュール" @@ -48600,7 +48711,6 @@ msgid "" msgstr "ベクトル統合とエゴセントリック・マッピングを組み合わせることで、利用可能な最良の経路を見つけるモジュールです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "記憶装置モジュール" @@ -48611,7 +48721,6 @@ msgid "Allows for storage and recovery of information." msgstr "情報の保存と復旧を可能にするモジュールです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "センサーアレイ" @@ -48624,7 +48733,6 @@ msgid "" msgstr "周囲の世界を知覚する広範囲センサーです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "自己監視センサー" @@ -48637,7 +48745,6 @@ msgid "" msgstr "ロボットが自分自身を知覚できるようにするセンサーと診断モジュールのセットです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "AIコア" @@ -48650,7 +48757,6 @@ msgid "" msgstr "基本的にはロボットのAIを実行する、意思決定を担うモジュールです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "基礎AIコア" @@ -48661,7 +48767,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "最小限の認知能力をもつ、非常に基本的なAIコアです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "高等AIコア" @@ -48672,7 +48777,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "優れた認知能力をもつ、高度なAIコアです。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "銃器操作システム" @@ -49141,7 +49245,6 @@ msgid_plural "software" msgstr[0] "ソフトウェア" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "色々なソフトウェア" @@ -49152,7 +49255,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "多数存在する娯楽用ソフトウェアの1つです。多分、今となっては何の役にも立たないでしょう。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "ハックプロ" @@ -49163,7 +49265,6 @@ msgid "A piece of hacking software." msgstr "ハッキング用ソフトウェアの1つです。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "メディソフト" @@ -49174,7 +49275,6 @@ msgid "A piece of medical software." msgstr "医療用ソフトウェアの1つです。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "マスマックス" @@ -49185,7 +49285,6 @@ msgid "A piece of mathematical software." msgstr "数学用ソフトウェアの1つです。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "感染データ" @@ -49196,7 +49295,6 @@ msgid "Medical data on zombie blood." msgstr "ゾンビ血液の医療データです。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "実験記録" @@ -49207,7 +49305,6 @@ msgid "Research archives from a government laboratory." msgstr "政府機関の研究所で行われた研究の記録です。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "列車運行記録" @@ -49218,7 +49315,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "地下鉄路線の運行経路とスケジュールについての記録です。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "ニューロンデータ" @@ -49235,7 +49331,6 @@ msgstr "" "いずれにせよ、自分の一部を金属球の中に永遠に閉じ込めるというのは、嫌な気分です。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "集積回路データアーカイブ" @@ -49852,7 +49947,7 @@ msgstr[0] "アトミックヘッドランプ" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "カバーを閉じる" @@ -49885,7 +49980,7 @@ msgstr[0] "アトミックヘッドランプ(閉)" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "カバーを開ける" @@ -53260,7 +53355,6 @@ msgid "" msgstr "小さな鋼製のダーツです。ネイルガンなどの武器から発射する他に、弾薬の製作に使えます。" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "釘" @@ -53826,7 +53920,8 @@ msgid "" msgstr "" "モジュール式防弾ベストです。ポーチに超合金プレートが入っていて、限界までたわむ靭性と追加重量のお陰で並外れた防御力を発揮します。弾倉を4つ収納できるポーチが付いています。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "矢筒" @@ -53838,7 +53933,8 @@ msgid "" "store arrows." msgstr "革製の腰掛け矢筒です。20本の矢を収納できます。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "シラカバ矢筒" @@ -53850,7 +53946,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "白樺樹皮を編んで作った、腰に身に着ける矢筒です。20本の矢を収納できます。使用すると矢を収納します。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "大型矢筒" @@ -53864,7 +53961,8 @@ msgid "" msgstr "" "肩に背負って使う、金属で補強した大型の革製矢筒です。矢が60本入ります。歴史的には徒歩弓兵よりも弓騎兵が好んで使っていましたが、ゾンビとの戦いに役立つかは未知数です。使用すると矢を収納します。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "大型シラカバ矢筒" @@ -54330,7 +54428,7 @@ msgstr[0] "投げナイフベルト" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "%sを収納しました。" @@ -54558,7 +54656,7 @@ msgstr[0] "レザーベルト" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "%sを%sに挟みました。" @@ -54568,14 +54666,14 @@ msgstr "%sを%sに挟みました。" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "ベルトにアイテムを挟む" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "革製のベルトです。ズボンをきちんと履く時に役立ちます。" @@ -56960,7 +57058,7 @@ msgstr[0] "サバイバーグローブ" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -64240,7 +64338,7 @@ msgstr[0] "ハイキングバックパック" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "武器を収納する" @@ -71769,8 +71867,8 @@ msgstr[0] "ランチャー(ベース)" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "シングル" @@ -71880,7 +71978,7 @@ msgstr[0] "ショットガン(ベース)" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -71897,7 +71995,7 @@ msgid_plural "pump action shotguns" msgstr[0] "ショットガン(12ga/ポンプアクション)" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "カチ、カチ。" @@ -73545,15 +73643,13 @@ msgid "" msgstr "動物の胸腺や膵臓のことをシビレと呼びます。適切に調理すれば絶妙な味の料理ができあがります。" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "血液" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "恐らくは人間の血液です。気持ち悪いですね!" @@ -73736,8 +73832,7 @@ msgid "" msgstr "変異した人間の脂肪を高温で加熱して抽出した、白く滑らかな塊です。非常に長持ちし、多くの食品や道具の材料として利用できます。" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "汚染血液" @@ -83794,6 +83889,19 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -87672,7 +87780,6 @@ msgid "generic item template" msgstr "汎用アイテムテンプレート" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "髭剃り用剃刀" @@ -87685,7 +87792,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "ヘアブラシ" @@ -87730,7 +87836,6 @@ msgstr "" "プラスチックの容器の中に全長約22.8mのワックスが付いた細い糸が入っています。歯に挟まった燻製肉を取り除くのに最適です。分解すれば糸を別の用途に使えそうです。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "櫛" @@ -87764,7 +87869,6 @@ msgid "" msgstr "不良がよく使っている、中央から折り畳めるタイプの櫛です。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "ドライヤー" @@ -87777,7 +87881,6 @@ msgid "" msgstr "熱したコイルに通した空気を吹き付けて髪を乾かす道具です。電気配線に接続できないなら、モーター入りの文鎮にしかなりません。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "ヘアアイロン" @@ -88332,7 +88435,6 @@ msgid_plural "generic cook pots" msgstr[0] "汎用鍋" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "セラミック皿" @@ -88343,7 +88445,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "セラミック製の食器です。特筆すべき点は何もありません。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "セラミックボウル" @@ -88354,7 +88455,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "ごく一般的なセラミック製のスープ椀です。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "セラミックカップ" @@ -88365,7 +88465,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "セラミック製のティーカップです。中々に上品なデザインです。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "コーヒーマグ" @@ -88445,7 +88544,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "マグカップの側面には「軽度アルコール依存症」と書いてあります。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "ブリキ皿" @@ -88456,7 +88554,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "軽量で素朴なブリキ製の皿です。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "ブリキカップ" @@ -88469,7 +88566,6 @@ msgid "" msgstr "キャンプや刑務所で使うのが似合う、エナメル加工されたブリキ製のコップです。鉄格子にぶつければ素晴らしい音が響き渡ります。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "ピューターボウル" @@ -88480,7 +88576,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "蓋がないピューター製の配膳用ボウルです。液体が250ml入ります。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "ガラスコップ" @@ -88491,7 +88586,6 @@ msgid "A tall drinking glass." msgstr "背の高いガラス製のコップです。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "ワイングラス" @@ -88504,7 +88598,6 @@ msgid "" msgstr "脚付きのグラスです。これでワインを飲むと格別豪華な気分になります。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "ガラスボウル" @@ -88537,7 +88630,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "密閉できる便利な蓋が付いたプラスチック製のボウルです。750mlの容量があります。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "子供用ボウル" @@ -88579,7 +88671,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "ボウルの所々にかわいらしい家畜のイラストが描かれています。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "子供用カップ(250ml)" @@ -88620,7 +88711,6 @@ msgid "" msgstr "コップにはクレヨンで書かれたような「だいすき」という文字がプリントされています。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "鍋" @@ -88631,7 +88721,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "スパゲッティなどの調理で水を沸騰させるのに役立ちます。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "鉄鍋" @@ -88643,7 +88732,6 @@ msgid "" msgstr "丈夫なエナメルでコーティングされた、鋳鉄製の大きな黒い鍋です。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "銅鍋" @@ -88656,7 +88744,6 @@ msgid "" msgstr "スパゲッティなどの調理で水を沸騰させるのに役立ちます。酸性の食品から金属を守るため、錫でコーティングされています。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "キャセロール鍋" @@ -88669,7 +88756,6 @@ msgid "" msgstr "鍋料理で頻繁に使われる、調理してそのまま食卓に出せるセラミック製の鍋です。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "スープ鍋" @@ -88682,7 +88768,6 @@ msgid "" msgstr "スープを煮込む大型の鍋です。少々狭いですが、七面鳥が丸ごと入るサイズです。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "寸胴鍋" @@ -88699,7 +88784,6 @@ msgstr "" "25Lの容量を持つ非常に大きな鍋です。食料入りの瓶をたっぷりの水で煮沸して瓶詰めを作るのが主な用途ですが、一般的な調理も可能です。瓶詰め加工には大量の水が必要ですが、加工後の水は煮沸されて飲料水になります。一度に数個しか煮沸しない場合は、石などを鍋に入れて水位を上げ、瓶の蓋まで水に浸かるようにしましょう。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "フライパン(鋳鉄)" @@ -88711,7 +88795,6 @@ msgid "" msgstr "鋳鉄製のフライパンです。まともな近接武器ですが、ちゃんと料理にも使えます。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "フライパン(鋼)" @@ -88723,7 +88806,6 @@ msgid "" msgstr "スチール製のフライパンです。まともな近接武器ですが、ちゃんと料理にも使えます。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "フライパン(銅)" @@ -88736,7 +88818,6 @@ msgid "" msgstr "表面が錫でコーティングされた銅製のフライパンです。まともな近接武器ですが、ちゃんと料理にも使えます。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "簡易鍋" @@ -88750,7 +88831,6 @@ msgstr "" "板金を荒っぽく打ち伸ばして鍋らしき形に仕上げたものです。火の上で食料を温めたりお湯を沸かしたりするにはこれで十分ですが、当然ちゃんとした鍋のほうが使いやすく、役に立ちます。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "簡易銅鍋" @@ -88764,7 +88844,6 @@ msgstr "" "銅板を荒っぽく打ちのめして鍋らしき形に仕上げたものです。火の上で食料を温めたりお湯を沸かしたりするにはこれで十分ですが、当然ちゃんとした鍋のほうが使いやすく、役に立ちます。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "やかん" @@ -89067,7 +89146,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "紐(15cm)" @@ -89078,7 +89156,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "長さ約15cmの綿製の紐です。" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "紐(90cm)" @@ -90285,7 +90362,7 @@ msgstr "1度に2発の弾薬を発射する、M1911の派生モデルとなる #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "ダブル" @@ -93160,7 +93237,7 @@ msgstr "フュージョンブラスターの最大充填モード用疑似アイ #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "アンダーバレル" @@ -93468,7 +93545,7 @@ msgstr "" "銃口近くの上面にガス排出ポートが追加された銃身です。ガスの噴出によって銃口の跳ね上がりを抑える効果があります。反動を軽減しますが、発射音が増大し、わずかに精度が下がります。" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "銃口" @@ -93638,7 +93715,7 @@ msgid "" msgstr "長さのある銃器の銃身に取り付けるクロスボウです。ボルトを発射できます。" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "レール" @@ -93750,7 +93827,7 @@ msgid "" msgstr "調節可能な金具で現代弓に取り付けて使う、光ファイバーで照準を合わせるピンです。精度は向上しますが、弓を引くのに少し時間がかかります。" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "照準器" @@ -97620,13 +97697,11 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "汎用キッチンナイフ" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "ブッチャーナイフ" @@ -97639,7 +97714,6 @@ msgid "" msgstr "切れ味が鋭くずっしりと重い包丁です。丁度いい近接武器になりますが、最も適切な使い道は死体の解体です。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "ステーキナイフ" @@ -97652,7 +97726,6 @@ msgid "" msgstr "肉を切るための鋭いナイフです。近接武器としては心許ないですが、死体の解体には向いています。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "果物ナイフ" @@ -97665,7 +97738,6 @@ msgid "" msgstr "まな板を使わずに野菜を細かく切るための、刃が短く鋭いナイフです。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "シェフナイフ" @@ -97681,7 +97753,6 @@ msgstr "" "刃の長い包丁です。刃の幅が持ち手より広いため、しっかりと握り込んで使え、野菜を素早く切り刻めるように刃が微妙にカーブしています。丁度いい近接武器になりますが、幅の広い刃は解体には不向きです。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "カービングナイフ" @@ -97696,7 +97767,6 @@ msgstr "" "肉を薄く切る、骨から肉を切り取るなどの用途に使う、薄くわずかに湾曲した長い刃を備えた包丁です。優秀な近接武器であり、解体にも最適な道具です。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "パン切り包丁" @@ -97711,7 +97781,6 @@ msgstr "" "波のような形状の非常に長い刃をもつ、パンを切るための包丁です。切れ味はそれほど鋭くありませんが、その長さと重量を考えれば、それなりの威力と痛々しい裂傷が期待できます。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "菜切り包丁" @@ -97726,7 +97795,6 @@ msgstr "" "幅が広く湾曲した刃をもつ、野菜を素早く切り刻む威嚇的な姿の包丁です。肉切り包丁ほどではありませんが、重量があり刃も鋭いため優秀な武器になるでしょう。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "肉切り包丁" @@ -100982,7 +101050,6 @@ msgid "" msgstr "布を染めるために使うカラフルな粉末です。水と媒染剤を併せて使うことで、様々な布を染色できます。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "ガラス片" @@ -100995,7 +101062,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "ガラス板" @@ -101015,7 +101081,6 @@ msgid "" msgstr "割れやすく大きなガラス板です。窓の修理に使います。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "強化ガラス板(大)" @@ -101027,7 +101092,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "鉄のワイヤーで強化された大きなガラス板です。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "強化ガラス板(小)" @@ -101039,7 +101103,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "鉄のワイヤーで強化された小さなガラス板です。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "安全ガラス板" @@ -101135,7 +101198,6 @@ msgid "A roll of purple carpet." msgstr "丸まった紫色の絨毯です。" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "ドアスコープ" @@ -101148,7 +101210,6 @@ msgid "" msgstr "内側に小型レンズが付いた金属製のシリンダーです。ドアに取り付けます。" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "防虫網" @@ -101159,7 +101220,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "玄関に入ってくる虫を防ぐ、ロール状にまとめた目の細かい網です。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "パイプ" @@ -101171,7 +101231,6 @@ msgid "" msgstr "鉄パイプは丁度いい近接武器になります。いくつかのアイテム製作に使います。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "金属屑" @@ -101185,7 +101244,6 @@ msgstr "様々な種類の小さな廃棄金属です。多くの種類のアイ #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "スパイク" @@ -101198,7 +101256,6 @@ msgid "" msgstr "大きくて少し不格好なスパイクです。車両に搭載すれば若干のダメージを与えられます。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "銅管" @@ -101211,7 +101268,6 @@ msgid "" msgstr "銅管です。武器としてはあまりに細すぎますが、手頃なものが他に無いなら使ってもいいでしょう。いくつかのアイテム製作に使います。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "アルミ鋳塊" @@ -101226,7 +101282,6 @@ msgstr "" "小さなアルミニウムの鋳塊です。より大掛かりな加工に備えて寸法を揃えてあります。軽量な割に丈夫で、様々な形に鋳造する、砕いて粉末として利用するなど多くの用途があります。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "蒼鉛" @@ -101237,7 +101292,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "密度が高い割に脆い金属です。鉛の代替物として頻繁に使われます。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "金" @@ -101251,13 +101305,11 @@ msgid "" msgstr "光沢のある柔らかい金属です。大変動以前はこれだけで一財産になりましたが、現在は大幅に価値が下がっています。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "プラチナ" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "亜鉛" @@ -101273,7 +101325,6 @@ msgstr "" "少々脆い金属です。身体に必要な必須ミネラルであり、酸やアルカリなどの非金属と反応しやすい性質をもっています。粉砕した亜鉛粉末は、とりわけバッテリーの製造に使われます。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "鉛" @@ -101286,7 +101337,6 @@ msgid "" msgstr "古代より存在を知られている、鈍い色の柔らかい金属です。その展性を利用し、弾薬の製造など様々な用途で使えます。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "マグネシウム粉末" @@ -101299,7 +101349,6 @@ msgid "" msgstr "灰色をした、引火性の高いアルカリ土類金属であるマグネシウムの粉末です。照明弾などの製作に利用されます。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "銀" @@ -101312,7 +101361,6 @@ msgid "" msgstr "光沢のある柔らかい金属です。大変動以前はそれなりの値段が付けられていましたが、現在は大幅に価値が下がっています。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "小型板金" @@ -101323,7 +101371,6 @@ msgid "A small sheet of metal." msgstr "金属製の小さな薄板です。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "鋼鉄塊" @@ -101336,7 +101383,6 @@ msgid "" msgstr "不格好な鋼の塊です。アイテム製作の材料として使いますが、いざというときは武器にもなります。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "圧縮鋼鉄塊" @@ -101347,7 +101393,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "非常に重い鋼の塊です。アイテム製作の材料として使います。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "蝶番" @@ -101360,7 +101405,6 @@ msgid "" msgstr "ネジ穴付きの2枚の金属板からなる小さな蝶番です。ドアの部品として使います。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "銅屑" @@ -101371,7 +101415,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "小さな銅の欠片です。修復やアイテム製作の材料として使います。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "錫" @@ -101384,7 +101427,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "はんだ" @@ -101417,7 +101459,6 @@ msgid "" msgstr "柄の長い箒です。(猫を追いかけ回す用途においては)最凶の武器ですね。" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "セラミック片" @@ -101474,7 +101515,6 @@ msgid "" msgstr "一本の導火線です。この程度の長さがあれば、大抵の点火済み爆発物から退避できそうです。" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "鋭利な石" @@ -101538,7 +101578,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "プラスチック片" @@ -101564,7 +101603,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "端切れ(合成繊維)" @@ -101578,8 +101616,6 @@ msgid "" msgstr "合成繊維の端切れです。人間や天然素材と異なり、年齢を経てもそれほど劣化しません。今の状況に役立つ素材と言えますね。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "ビニールシート" @@ -101592,7 +101628,6 @@ msgid "" msgstr "商業用の包装や家の雨漏りを防ぐ用途で使われていたような、重く大きなビニールシートです。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "硬質プラスチック板" @@ -101605,7 +101640,6 @@ msgid "" msgstr "大きく硬い半透明のプラスチック板です。建築物から芸術品、子供用スノーボードまで、あらゆるものに利用できます。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -101618,7 +101652,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "丸太" @@ -101631,7 +101664,6 @@ msgid "" msgstr "木を伐採して切り出した大きな丸太です。斧やノコギリを使用して木材に加工できます。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "裂けた木材" @@ -101642,7 +101674,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "裂けて使い物にならなくなった木材です。串や焚き付けとして利用できます。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "重棒" @@ -101653,7 +101684,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "頑丈で重い棒です。まともな近接武器として使えます。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "長棒" @@ -101666,7 +101696,6 @@ msgid "" msgstr "長めの棒です。まともな近接武器として使えますが、分解すれば重棒になります。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "長竿" @@ -101678,8 +101707,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "槍のように扱える、長さ約3mの頑丈な棒です。大変動の到来によって、音を立てず歩く技術や長竿に新たな使い道ができました。" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "木材" @@ -101693,7 +101721,6 @@ msgid "" msgstr "2×4材に近い寸法の、幅が狭く分厚い木製の板です。まともな近接武器として使えますが、様々な建設の資材にもなります。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "大型角材" @@ -101707,7 +101734,6 @@ msgid "" msgstr "非常に重く持ち運びが困難な、建設資材にも使える頑丈な資材です。更に切断して木材や板に加工できます。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "合板" @@ -101723,7 +101749,6 @@ msgstr "" "ベニヤ板、OSB、MDF、T&Gなどの、切断加工された幅が広く薄い木板です。この大きさの合板なら様々なものを建設できますが、大きな建造物を建設するなら、切断加工されていない適切な合板が必要です。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "大型合板" @@ -101738,7 +101763,6 @@ msgstr "" "ベニヤ板やOSB、MDFなどの標準的な4×8材です。重く嵩張りますが、様々な建築物の資材として非常に役立ちます。小さなものを造りたいときは適切な大きさに切断する必要があります。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -101771,7 +101795,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "軟質プラスチック製のボトルです。液体が500ml入ります。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "アトミックコーヒーメーカー" @@ -101788,7 +101811,6 @@ msgstr "" "CuppaTech社が開発したキュリーGコーヒーメーカーです。ご存知の通り、放射性崩壊から取り出した電力を使ってコーヒー用のお湯を沸かします。通常はコンデンサに蓄えた電力を使ってお湯を沸かし、普通のコーヒーを作れます。しかし、RTGの格納容器内の水を使って、非常に特殊な刺激の強いコーヒーを作ることも可能です。キュリーGの流通はほとんどの国で違法とされています。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "食肉解体キット" @@ -101812,7 +101834,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "これはcrafting_pseudo_itemであり、所持している場合はバグが発生しています。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "封缶機" @@ -101825,7 +101846,6 @@ msgid "" msgstr "手でクランクを回してブリキ缶の縁を変形させ密封する機械です。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "電動ナイフ(オフ)" @@ -101864,7 +101884,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "ナイフの電源が入り、刃が震えています。使用すると電源を切ります。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "浄水器(炭)" @@ -101880,7 +101899,6 @@ msgstr "" "水が入った容器に使うと、炭の層が中身を浄水します。炭は一定の水を浄化すると汚れて使えなくなります。分解することで再利用できます。川やトイレなど、飲料に適さない水源から水を採取した時に役に立ちます。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "燻製器" @@ -101893,7 +101911,6 @@ msgid "" msgstr "炭を燃料に稼働する携帯式の燻製器です。肉を煙で燻して燻製にしたり、週末のバーベキューに重宝します。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "炭火クッカー" @@ -101906,7 +101923,6 @@ msgid "" msgstr "点火装置が付いた、中に炭が入る小型の金属容器です。食品の調理に使います。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "素焼鉢" @@ -101917,7 +101933,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "素焼きの鉢です。調理にも使えるよう蓋が付いています。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "陶製挽臼" @@ -101928,7 +101943,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "陶器製の挽臼です。手で回して穀物を粉にします。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "陶製ティーポット" @@ -101939,7 +101953,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "陶器製のティーポットです。あとは紅茶と水があれば完璧です。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "コーヒーメーカー" @@ -101954,7 +101967,6 @@ msgstr "" "コーヒーや他の粉末を入れられる、発熱機能付きのポットとその台です。動かなくなった時は、電池を入れてみてください。コーヒーやその他の飲料を製作するために使います。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "食料脱水機" @@ -101967,7 +101979,6 @@ msgid "" msgstr "携帯型の電動食料脱水機です。電池で動き、食料の保存に重宝します。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "瓶(卵/発酵中)" @@ -101992,7 +102003,6 @@ msgid "" msgstr "この瓶には発酵中の卵が入っています。発酵が終わったら密封して保存できます。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "ヘキサミンストーブ" @@ -102005,7 +102015,6 @@ msgid "" msgstr "エスビットストーブとも呼ばれる、軽量で折り畳める携帯調理用コンロです。小さなヘキサミンのタブレットを燃料とします。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -102087,7 +102096,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "フードプロセッサー" @@ -102100,7 +102108,6 @@ msgid "" msgstr "切る、刻む、裂く、砕く、すり潰す、混ぜるなどの調理動作を備えた調理器具です。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "ガソリンクッカー" @@ -102125,7 +102132,6 @@ msgid "" msgstr "スポーツ傷害の手当や食べ物を温めるために用いる、使い捨ての発熱剤です。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "ホットプレート" @@ -102197,7 +102203,6 @@ msgid "" msgstr "ザワークラウトが入ったガラス製の密封瓶です。使用して蓋を開ければ食べられます。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "簡易真空包装機" @@ -102210,7 +102215,6 @@ msgid "" msgstr "自作の真空包装機です。包装内の空気を吸引し、食品を密封します。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "携帯用食器セット" @@ -102225,7 +102229,6 @@ msgstr "" "野外調理に必要なものがすべて揃った、キャンプ用の携帯用食器キット一式です。このモデルは一般的な化学燃料を利用したエスビットストーブではなく、電池駆動のホットプレートを採用しています。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "飯盒" @@ -102240,7 +102243,6 @@ msgstr "" "収納性に優れた軍用の鍋と器のセットです。火や携帯ストーブがあれば食べ物を加熱調理できます。普通の鍋やフライパンと比べるとより浅く作られており、現代的な調理器具セットと違って加熱機能が組み込まれていません。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "携帯用食器セット(軍式)" @@ -102257,7 +102259,6 @@ msgstr "" "敵陣の背後に展開し長期的な偵察斥候をするための軍事用携帯食器セットです。すべての部品がアルミニウムと超合金製の薄いシートから作られており、表面はセラミックでコーティングされています。発煙化学燃料のエスビットストーブではなく、電池駆動のホットプレートを利用しています。コンパクトで重量も軽く、耐久性があります。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "乳鉢と乳棒" @@ -102272,7 +102273,6 @@ msgid "" msgstr "小さな丸砥石の棒と器状に成形した石を組み合わせた簡素な道具です。穀物等を粉にする際に使いますが、より高度な方法と比べて時間がかかります。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "多機能調理機" @@ -102301,7 +102301,6 @@ msgstr "" "プロ仕様の多機能調理機です。キャンプ旅行やライトバンの荷台でBBQパーティーをする際にも使えるように、電池スロットが組み込まれています。内部に料理が入っています。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "調理器具(ランプオイル)" @@ -102314,7 +102313,6 @@ msgid "" msgstr "ランプオイルを燃料とするシンプルなヒーターです。調理をする際に使います。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "パスタ押出成形機" @@ -102327,7 +102325,6 @@ msgid "" msgstr "手回しハンドルで動くパスタ押出成形機です。パスタの種類に応じた部品が付いており、これを使えば簡単に様々な種類のパスタを作れます。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "瓶(ピクルス/発酵中)" @@ -102352,7 +102349,6 @@ msgid "" msgstr "この瓶には発酵中のピクルスが入っています。発酵が終わったら密封して保存できます。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "ソーダ缶ストーブセット" @@ -102365,7 +102361,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "圧力鍋(2L)" @@ -102380,7 +102375,6 @@ msgstr "" "スパゲッティなどを作る際の湯沸かしに便利な調理道具です。鍋を密閉することで、より高圧力かつ高温で調理できるように設計されています。加圧は化学反応にも利用できます。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "挽臼" @@ -102391,7 +102385,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "手で動かすシンプルな石の挽臼です。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "瓶(ザワークラウト/発酵中)" @@ -102440,7 +102433,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "携帯用食器セット(サバイバー)" @@ -102455,7 +102447,6 @@ msgstr "" "ポストアポカリプス料理を作るために必要な全てのものが詰まった自作の食器セットです。ランプオイルを利用したバーナーが搭載されており、シンプルかつ耐久性に優れた道具と素材で出来ています。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "ティーポット" @@ -102466,7 +102457,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "金属製の小さなティーポットです。しかし、これだけ持っていてもティータイムは過ごせません。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "真空包装機" @@ -102479,7 +102469,6 @@ msgid "" msgstr "携帯式の真空包装機です。包装内の空気を吸引し、食品を密封します。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "ワッフル焼き型" @@ -102564,7 +102553,6 @@ msgid "" msgstr "軍用の折り畳み式ベッドです。ベッドほど快適ではありませんが、地べたに直で寝るよりは快適でしょう。" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "折畳自転車" @@ -102579,6 +102567,21 @@ msgstr "折り畳み自転車を慎重に展開し、乗る準備を整えまし msgid "This is a bicycle folded into a relatively portable package." msgstr "折り畳んで持ち運べるようにした自転車です。" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -102587,7 +102590,6 @@ msgid "" msgstr "死体をぶら下げて解体できるように作られた金属のラックです。折り畳んで簡単に持ち運べます。" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "ゴムボート" @@ -102638,7 +102640,6 @@ msgstr "" "レジャーシートの代わりになる、繊維質を織り合わせて作った大きなシートです。血液が染みないため、死体を解体する際に真価を発揮します。快適な寝具として使うには薄すぎます。丸めて持ち運びやすい状態になっています。" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "バター撹拌機(折畳)" @@ -102670,7 +102671,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "改良型UPS" @@ -102685,7 +102685,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "カメラ" @@ -102700,7 +102699,6 @@ msgstr "" "液晶ビューファインダー、撮影支援用の「アイアンサイト」、そしてフラッシュ機能を備えた全自動デジタルカメラです。撮影した写真は背面のディスプレイで閲覧でき、メモリーカードに移すこともできます。通常の電池で稼働します。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "高性能カメラ" @@ -102717,7 +102715,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "携帯電話" @@ -102745,7 +102742,6 @@ msgstr "" "スマートフォンの古い親戚です。信頼性や頑丈さ、一般的な電池で作動することを理由に、一部界隈で未だに人気があります。十分な電力があれば、使用することで照明として利用できます。更に、アラーム付き時計アプリが内蔵されています。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -102759,7 +102755,6 @@ msgid "You stop lighting up the screen." msgstr "画面の照明をオフにしました。" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "改造ノートPC" @@ -102773,7 +102768,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "指向性アンテナ" @@ -102800,7 +102794,6 @@ msgstr "" "とはいえ、対応できる警官は皆ゾンビになってしまったので、頭を使って行動しなければ当分ここから動けません..." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "E-InkタブレットPC" @@ -102813,9 +102806,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "ハッキング装置" @@ -102832,7 +102823,6 @@ msgstr "" "無数の接続ポートが付いており、(コンピュータを除く)ほとんどの操作盤や電子機器に接続することができます。少しスキルがあればパスワードをクラックしたり、それ以外のこともできるかもしれません。1回の使用で電池を25消費します。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "放射線測定器(オフ)" @@ -102848,7 +102838,6 @@ msgstr "" "放射線を測定するための道具です。電源を入れることで、自分自身もしくは周囲の地形の放射線測定、あるいは周辺の放射線の継続的な測定をすることができます。電源は切られています。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "放射線測定器(オン)" @@ -102864,7 +102853,6 @@ msgid "" msgstr "放射線を測定するための道具です。継続測定モードになっており、周囲で放射線が検出されると小さなクリック音が鳴ります。電源は入っています。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "手回し充電器" @@ -102894,7 +102882,6 @@ msgid_plural "laptop computers - lit screen" msgstr[0] "ノートPC(ライト)" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "MP3プレーヤー(オフ)" @@ -102924,7 +102911,6 @@ msgstr "" "起動中のMP3プレーヤーです。イヤホンから素晴らしい音楽を出力しています。意欲を高めますが電池を急速に消費します。使用すると電源を切ります。また、使用中は周囲の音が聴こえにくくなります。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "ノイズ発生器(オフ)" @@ -102953,7 +102939,6 @@ msgid "" msgstr "装置の電源が入っており、カチカチ、パリパリと嫌なノイズが流れています。ゾンビが気付いてやってくる前に、早く離れましょう!" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "携帯ゲーム機" @@ -102968,7 +102953,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "スマートフォン" @@ -103047,7 +103031,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "マッサージ器" @@ -103060,7 +103043,6 @@ msgid "" msgstr "この電池の消耗が激しい装置は、筋肉の緊張を和らげ、安らぎを与えてくれます。休憩して体をほぐしたい時に使って下さい。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -103083,7 +103065,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -103097,7 +103078,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "バール" @@ -103111,7 +103091,6 @@ msgid "" msgstr "ドアなどを壊す事なく開けられる工具です。マンホールの蓋も持ち上げられます。もちろん、誰かの頭に叩きつける事もできますよ。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -103127,7 +103106,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "簡易ロックピック" @@ -103143,7 +103121,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "ピッケル" @@ -103158,7 +103135,6 @@ msgstr "" "ハイキングやクライミングで利用する、片側にハンマーが付いたピッケルです。とても頑丈な作りで、ドアをこじ開けたりマンホールの蓋を持ち上げたりするのにも使えます。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "簡易バール" @@ -103173,7 +103149,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "精密ロックピック" @@ -104118,7 +104093,6 @@ msgid "" msgstr "甲高い音を立てながら煙と火花を大量に吹き出しているロケットキャンディです。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "電動発火装置" @@ -104131,7 +104105,6 @@ msgid "" msgstr "大雑把に作られた電動発火装置です。簡易ライターとして使用できます。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "火起こし器" @@ -104146,7 +104119,6 @@ msgid "" msgstr "原始的な発火道具です。2本の木材と糸から出来ています。製作は簡単ですが、火を起こすのが大変です。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "強化火起こし器" @@ -104161,7 +104133,6 @@ msgid "" msgstr "頑丈に作られた原始的な発火道具です。2本の木と糸から出来ています。製作は簡単ですが、火を起こすのが大変です。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "火打道具" @@ -104175,7 +104146,6 @@ msgid "" msgstr "マグネシウム製の棒と炭素鋼の火打ち金です。火花を飛ばして着火します。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "ライター" @@ -104189,7 +104159,6 @@ msgid "" msgstr "使い捨てライターです。タバコや薬物、火炎瓶などのアイテムを使用するならライターを所持しましょう。隣接するアイテムに火をつける事も可能です。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "虫眼鏡" @@ -104203,7 +104172,6 @@ msgid "" msgstr "虫眼鏡です。晴天時に太陽光を集中させて、可燃物に着火できます。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "紙マッチ" @@ -104219,7 +104187,6 @@ msgstr "" "見返し部分の端に側薬がついている紙マッチです。タバコや薬物、火炎瓶などのアイテムを使用するならマッチを所持しましょう。隣接するアイテムに火をつける事も可能です。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "オイルライター" @@ -104258,7 +104225,6 @@ msgid "" msgstr "開閉できる蓋がついており、燃料を補充する事が可能なライターです。火が点いています。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "蓋付き十能" @@ -104288,7 +104254,6 @@ msgstr "" "火口を収納する小さな容器です。空気の供給量を調整するための小さな穴がいくつか空いていて、火の点いた火口を長時間くすぶらせておくことができます。現代的な道具が無い環境でライターの代わりになります。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "蓋付き十能(点火)" @@ -104324,7 +104289,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "防災用斧" @@ -104350,7 +104314,6 @@ msgid "" msgstr "約19Lの発泡消火剤が封入されている、緊急用の消火器です。隣接している火を消す際に役立ちます。" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "消火斧" @@ -104363,7 +104326,6 @@ msgid "" msgstr "消防士が職務で使用する大型の両手斧です。強力な近接武器として頼りになりますが、振り回した際に姿勢を戻すのが少し遅れてしまいます。" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "ハリガンバール" @@ -104417,7 +104379,6 @@ msgid "" msgstr "丈夫なグラスファイバー製の軸の先端に、小さなスチール製のフックが付いています。" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "ニューヨークフック" @@ -104430,7 +104391,6 @@ msgid "" msgstr "ひと塊の鋼鉄を鍛造して作った、片方の端に1対のフック、もう片方の端にバールが付いた道具です。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "簡易捕魚器" @@ -104460,7 +104420,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "釣り針" @@ -104471,7 +104430,6 @@ msgid "A simple fishing hook." msgstr "シンプルな釣り針です。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "簡易釣り針" @@ -104482,7 +104440,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "骨や木を削って作った即席の釣り針です。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "簡易釣り竿" @@ -104495,7 +104452,6 @@ msgid "" msgstr "これを「釣り竿」と呼べるのでしょうか。実際は木の棒に糸と釣り針が取り付けてあるだけの代物です。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "釣り竿" @@ -104508,7 +104464,6 @@ msgid "" msgstr "おもりなどが付いた熟練者用の釣り竿です。これを使えば何でも釣り上げられるでしょう。" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "ハンドプレス機" @@ -104521,7 +104476,6 @@ msgid "" msgstr "弾薬を手詰めするための小型プレス台です。手詰め弾薬を製作するのに必要な道具が全て揃っています。" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "ショットガン弾用簡易プレス機" @@ -104538,7 +104492,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "弾頭プーラー" @@ -104563,7 +104516,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "ナイフ(銅)" @@ -104590,7 +104542,6 @@ msgstr "" "短くて頑丈なナイフです。主にダイバーによって使用され、絡まった紐や海藻を切断できる細かな鋸状の刃と、貝などをこじ開けられる丸みを帯びた先端が特徴的です。とても軽く、持ち歩いても嵩張りません。" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "ハニースクレーパー" @@ -104603,7 +104554,6 @@ msgid "" msgstr "蜂蜜の収穫に使われる、ナイフに近い形状の鋭利なスクレーパーです。まずまずの威力の近接武器として使えます。" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "ポケットナイフ" @@ -104642,7 +104592,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "掘棒" @@ -104655,7 +104604,6 @@ msgid "" msgstr "末端が平たく削られている棒です。浅い穴は掘れますが、深くは掘れません。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "小型シャベル" @@ -104667,7 +104615,6 @@ msgid "" msgstr "地中にいる虫を掘り返すのに最適な、先の鋭いガーデニング用の小型シャベルです。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "鍬" @@ -104680,7 +104627,6 @@ msgid "" msgstr "農作業用の道具です。使用すると地面を耕して、歩き辛い耕作地や浅い穴を作り出します。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -104707,7 +104653,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "大鎌" @@ -104722,7 +104667,6 @@ msgstr "" "伸びた草や芝を刈り取る、昔ながらの農具です。長い棒に巨大な刃が付いている形状は一見強力な武器のようですが、本来の用途以外に使うのは非常に困難です。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "シャベル" @@ -104745,7 +104689,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "鎌" @@ -104760,7 +104703,6 @@ msgstr "" "伸びた草や芝を刈り取る、昔ながらの農具です。持ち手に湾曲した刃が付いている形状は一見強力な武器のようですが、本来の用途以外に使うのは非常に困難です。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "ヘッジトリマー(オフ)" @@ -104802,7 +104744,6 @@ msgid "" msgstr "ガソリンで動くコードレスの両刃ヘッジトリマーです。電源が入っており、ゾンビを刈り込む準備ができています。使用すると電源を切ります。" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "アトミックランプ" @@ -104824,7 +104765,6 @@ msgstr "" "放射性崩壊と低電力LEDの魔法で動き、少なくとも10年は小さな光を放ち続ける高級ランプです。大変動前は、防災意識を周囲に見せつける最も高価なアイテムでした。実際に使ってみても、結構いい感じです。使用するとカバーを閉じて照明を隠します。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "アトミックランプ(閉)" @@ -104848,7 +104788,6 @@ msgstr "" "放射性崩壊と低電力LEDの魔法で動き、少なくとも10年は小さな光を放ち続ける高級ランプです。大変動前は、防災意識を周囲に見せつける最も高価なアイテムでした。実際に使ってみても、結構いい感じです。カバーは閉じています。使用するとカバーを開けて周囲を照らします。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "アトミック読書灯" @@ -104856,7 +104795,7 @@ msgstr[0] "アトミック読書灯" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "常夜灯のカバーを閉じました。" @@ -104872,7 +104811,6 @@ msgstr "" "放射性崩壊と低電力LEDの魔法で動き、少なくとも10年は読書に十分な光源として活躍する高級ランプです。大変動前は、防災意識を周囲に見せつける最も高価なアイテムでした。実際に使ってみても、結構いい感じです。使用するとカバーを閉じて照明を隠します。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "アトミック読書灯(閉)" @@ -104882,7 +104820,7 @@ msgstr[0] "アトミック読書灯(閉)" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "常夜灯のカバーを開きました。" @@ -104933,7 +104871,6 @@ msgid "" msgstr "太いろうそくです。光は弱いですが、とても長持ちします。火がついています。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "電動ランタン(オフ)" @@ -104974,7 +104911,6 @@ msgid "You turn the lamp off." msgstr "ランプの明かりを消しました。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "懐中電灯(オフ)" @@ -105127,7 +105063,6 @@ msgid "" msgstr "燃焼中のマグネシウム発炎筒は光を発します。30分程度燃え続けます。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "高耐久懐中電灯(オフ)" @@ -105257,7 +105192,6 @@ msgid "The %s is extinguished" msgstr "%sの火が消えました。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "読書灯" @@ -105297,7 +105231,6 @@ msgid "" msgstr "暗闇の中で本を読むための、クリップで固定できるLEDライトです。ライトは点灯しています。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "スマートランプ(オフ)" @@ -105347,7 +105280,7 @@ msgstr[0] "松明" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "点火する" @@ -105355,7 +105288,7 @@ msgstr "点火する" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "松明に火をつけました。" @@ -105371,7 +105304,7 @@ msgstr "可燃性の液体を染みこませてある布を巻きつけた棒で #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "松明の火が消えました。" @@ -105383,7 +105316,6 @@ msgid "" msgstr "可燃性の液体を染みこませてある布を巻きつけた棒です。燃え盛る炎が辺りを照らします。" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "コンクリートカッター" @@ -105451,7 +105383,6 @@ msgstr "" "強力な睡眠剤、鎮痛剤、興奮剤といった薬剤入りの特殊な容器を備えた手術用の麻酔キットです。特殊な医療機器で使うものであり、手作業での使用は不可能です。" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "オートクレーブ" @@ -105493,7 +105424,6 @@ msgstr "" "Rivtech社製のRX12ジェット式注射器は、針を用いずに皮膚を通過して先進的な高速治癒薬を注入する拳銃型デバイスです。側面のラベルは1時間に付き2回以上は投薬しないように警告しています。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "メス" @@ -105521,7 +105451,6 @@ msgstr "" "医療用の小型酸素タンクです。レギュレーターとマスクが付属しており、必要な時すぐ使えます。通常、喘息発作や煙を吸い込んでしまった際などの非常時に使用しますが、ちょっとした爆発物として使うことも不可能ではありません。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "注射器" @@ -105532,7 +105461,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "医療用の注射器です。ヘロインなどの薬物の投与に使います。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "温度計" @@ -105557,7 +105485,6 @@ msgstr "" "医療用の酸素タンクです。レギュレーターとマスクが付属しており、必要な時すぐ使えます。通常、喘息発作や煙を吸い込んでしまった際などの緊急時に使用しますが、ちょっとした爆発物として使うことも不可能ではありません。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "採血キット(250ml)" @@ -105571,7 +105498,6 @@ msgid "" msgstr "サンプル保存用の試験管に血液を吸い上げる医療キットです。自分自身、または足元にある死体に使用します。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "放射線バッジ(未開封)" @@ -105603,7 +105529,6 @@ msgid "" msgstr "角にノミのような突起が付いた奇妙な形状の、非常に重い鉄の塊です。非常に多くの金属加工系製作レシピで必要になります。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "金床(青銅)" @@ -105616,7 +105541,6 @@ msgid "" msgstr "奇妙な形をした青銅製のブロックです。出っ張り部分は彫刻のような細かい作業に使います。非常に多くの金属加工系製作レシピで必要になります。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "ボルトカッター" @@ -105630,7 +105554,6 @@ msgid "" msgstr "大型のボルトカッターです。使用すると南京錠やワイヤーを切断します。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "炭火炉" @@ -105651,7 +105574,6 @@ msgid "" msgstr "頑丈な金属製の箱です。木を酸欠状態で不完全燃焼させることで炭を作ります。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "彫金用タガネ" @@ -105664,7 +105586,6 @@ msgid "" msgstr "短く頑丈な、金属加工用のタガネです。いくつかの金属加工系製作レシピで必要になります。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "るつぼ" @@ -105677,7 +105598,6 @@ msgid "" msgstr "金属加工に用いられるつぼです。いくつかのレシピに対応します。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "陶製るつぼ" @@ -105690,7 +105610,6 @@ msgid "" msgstr "金属加工に用いる陶器製のるつぼです。原始的ですが実際に使えます。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "電動炉" @@ -105706,7 +105625,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "炭焼窯(完了)" @@ -105741,7 +105659,6 @@ msgid "" msgstr "木材が詰まった炭焼窯です。火をつけて木材が燃え尽きると、炭ができあがります。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "炭焼窯(点火)" @@ -105776,7 +105693,6 @@ msgid "" msgstr "鎖をリベットで留めて作ったシートです。特定のスキルがあれば、複数のシートを繋ぎ合わせて役立つ防具を製作できます。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "金属加工セット" @@ -105789,7 +105705,6 @@ msgid "" msgstr "金属加工用の金型と成形器具一式です。いくつかの金属加工品を製造するレシピで使用します。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "火ばさみ" @@ -105825,7 +105740,6 @@ msgid "" msgstr "小型の圧縮空気ボンベにプラスチック製のホーンが取り付けられています。上部のボタンを押すと大音量の警笛を鳴らします。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "目覚まし時計" @@ -105953,7 +105867,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "塹壕用シャベル" @@ -105988,7 +105901,6 @@ msgid "" msgstr "先端付近に可燃性の液体を染み込ませた布を巻き付けた矢です。撃つ前に火をつける必要があります。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "ロールマット(毛皮)" @@ -106007,7 +105919,6 @@ msgid "" msgstr "丸めて畳んである毛皮のベッドロールです。断熱効果があり、床に敷いておくと寝心地が良くなります。使用すると地面に広げます。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "フック付きロープ" @@ -106032,7 +105943,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "円形の持ち手が付いた、シンプルな鋼鉄製の食肉用フックです。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "手押しポンプ" @@ -106080,7 +105990,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "車の電気系統に接続するタイプのクラクションです。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "高出力ヒーター" @@ -106116,7 +106025,6 @@ msgid "You turn off the heater." msgstr "ヒーターの電源を切りました。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "ライフストロー" @@ -106209,7 +106117,6 @@ msgid "" msgstr "昔ながらの懐中時計です。時刻を確認できます。解体して部品を入手できます。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "ロールマット" @@ -106253,7 +106160,6 @@ msgid "" msgstr "有害廃棄物石棺にあるエレベーターを起動するための数字配列が印刷された紙です。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "低出力ヒーター" @@ -106402,7 +106308,6 @@ msgid "" msgstr "渦巻きと小さな穴に全体が覆われた石です。大きさはかなりありますが、重さは感じません。空気が石の周りに凝縮されているように見えます。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "万能ホイッスル" @@ -106522,7 +106427,6 @@ msgid "" msgstr "不思議なオーラを纏った、輝く黄金のフィドルです。数ある楽器の中でも最上のものだったような、そんな気がします。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "ニワトリ用ケージ" @@ -106537,7 +106441,6 @@ msgstr "" "ニワトリを運ぶ際に使うワイヤー製のケージです。小動物を中に入れられます。使用して動物がいる方向を選択すれば捕獲でき、何もいない方向を選択すれば中の動物を解放できます。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "犬笛" @@ -106552,7 +106455,6 @@ msgstr "" "小さな笛です。使用すると甲高い音で付近の友好的なイヌに指示を出し、近くに呼び寄せて敵の攻撃を防がせたり、立ち止まっている敵を襲わせたりできます。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "毛刈りハサミ" @@ -106563,7 +106465,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "羊の毛を刈るためのハサミです。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "電動毛刈りハサミ" @@ -106574,7 +106475,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "動物の毛を素早く刈れる電動ハサミです。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "馬具" @@ -106587,7 +106487,6 @@ msgid "" msgstr "騎乗に適した飼い慣らされた動物に装着できる鞍、馬勒などの馬具一式です。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "ペットキャリー" @@ -106601,7 +106500,6 @@ msgstr "" "ペットを収容して運ぶための、プラスチック製のケージです。使用して動物がいる方向を選択すれば捕獲でき、何もいない方向を選択すれば中の動物を解放できます。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "ペットキャリー(木)" @@ -106614,7 +106512,6 @@ msgid "" msgstr "ペットの収容や運搬を目的として作られた木製の容器です。使用して適切な動物の方向を選択すると収容し、何もないタイルを選択すると開放します。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "木製犬笛" @@ -106651,7 +106548,6 @@ msgid "" msgstr "箱の中にはラジコンカー、無線制御装置と電池が入っています!分解して開けた後は存分に楽しんでくださいね。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "無線制御装置" @@ -106665,7 +106561,6 @@ msgid "" msgstr "ジョイスティックと色鮮やかなボタンが付いたリモコンです。もしかして、デラックスモデルの奴かな?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "ラジコンカー" @@ -106700,7 +106595,6 @@ msgid "" msgstr "この小型電子機器を特定の道具に取り付けると、無線電波を受信した時に起動するようになります。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "ラジオ(オフ)" @@ -106725,7 +106619,6 @@ msgid "" msgstr "携帯ラジオの電源は入っており、継続的に電池を消費しています。近くの電波塔が送信している任意の放送を受信しています。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "双方向無線機" @@ -106739,7 +106632,6 @@ msgstr "" "送信機能が付いた無線機です。使用すれば同じものを持っている人と連絡を取れます。残念ながら、今の状況でこれを使っている人がいるとは思えませんが..." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "遠隔車両制御装置" @@ -106815,7 +106707,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "集水シート" @@ -106832,7 +106723,6 @@ msgid "" msgstr "棒と防水シートで作った、即席の設置式集水器です。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "気圧計" @@ -106856,7 +106746,6 @@ msgid "" msgstr "缶の上部にラベルが貼ってあります。「警告:強い毒物や腐食性物質が含まれています。開封は自己責任で。」缶の中で何かが動いているようです。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "化学実験セット" @@ -106871,7 +106760,6 @@ msgstr "" "持ち運べる箱に収納された化学実験セットです。試験管やフラスコなどの各種ガラス容器、ゴムホース、金属線、ホットプレート、保護メガネなどが含まれています。いくつかの化学系レシピの製作に使えそうです。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "基礎化学実験器具セット" @@ -106886,7 +106774,6 @@ msgstr "" "基本的な化学実験器具のセットです。試験管やフラスコなどの各種ガラス容器、ゴムホース、保護メガネなどが含まれています。いくつかの化学系レシピの製作に使えますが、この道具の他に何らかの熱源が必要です。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "電解キット" @@ -106913,7 +106800,6 @@ msgid "" msgstr "圧縮ブタンが入ったタンクです。有機物から精油を抽出する際に使います。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "水素タンク" @@ -106926,7 +106812,6 @@ msgid "" msgstr "高圧の水素ガスが充填されたタンクです。ゼロから水を作り出したい時や、ツェッペリン号を浮遊させたい時なら、役に立つでしょう。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "湿度計" @@ -106937,7 +106822,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "大気中の湿度を測るプラスチック製の湿度計です。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "窒素タンク" @@ -106950,7 +106834,6 @@ msgid "" msgstr "高圧の窒素ガスが充填されたタンクです。反応性に乏しいため様々な所で利用されています。吸ってみようなどと考えないでください。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "酸素ボンベ" @@ -106963,7 +106846,6 @@ msgid "" msgstr "加圧されたガスを保存するための大きな鋼鉄製シリンダーです。表面は色あせていますが、酸素のシンボルマークは簡単に読み取れます。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "プラチナ担体" @@ -107012,7 +106894,6 @@ msgid "" msgstr "起動すると短距離のテレポートが可能になる実験装置です。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "ドップラーレーダーターボ2000" @@ -107029,7 +106910,6 @@ msgstr "" "Replicator)がやってきた兆候はまだ見つかりません。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "基礎検査分析キット" @@ -107046,7 +106926,6 @@ msgstr "" "精密な化学検査に必要不可欠な道具類が入った、ずっしりと重い装備です。小型天秤ばかり、分光光度計、融点測定装置、pHメーター、何枚かの薄層クロマトグラフィーが揃っています。これらの道具を使えば、目当ての化学物質を生成できたかどうか、簡単に確認できます。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "小型天秤ばかり" @@ -107059,7 +106938,6 @@ msgid "" msgstr "竿に取り付けられた鋼鉄製のおもりを使ってサンプルの質量をほぼ正確に測定する、簡素な作りの測定器です。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "分光光度計" @@ -107072,7 +106950,6 @@ msgid "" msgstr "キュベットと呼ばれる特殊なチューブ内に液体サンプルを入れて吸光度を測定する、おなじみの分析化学ツールです。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "pHメーター" @@ -107087,7 +106964,6 @@ msgstr "" "2本の電極が接続された電圧計です。一方の電極を標準液(都合のいいことに付属しています)に、もう一方を検査対象に浸すことで、酸性度を測定します。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "電圧計" @@ -107102,7 +106978,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "融点測定装置" @@ -107120,7 +106995,6 @@ msgstr "" "要するに、金属製の筐体が取り付けられたホットプレートです。筐体には拡大レンズ、結晶化したサンプルを入れる毛細管挿入スロットが付いています。この装置を使えば結晶の融点を正確に測定でき、物質の種別や純度の特定に役立ちます。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "ボルテックスミキサー" @@ -107137,7 +107011,6 @@ msgstr "" "小さく、重く、つまらない見た目の機械です。重い台形の土台には電源スイッチとダイヤルが1つずつ付いており、上部にはゴム製の容器があります。試験管を容器に挿入して電源を入れると、内容物を素早く攪拌します。使ってみると想像以上に楽しめます。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "光センサー" @@ -107150,7 +107023,6 @@ msgid "" msgstr "チップに取り付けられたフォトダイオードです。受けた光を電気エネルギーに変換して測定する機能を持っています。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "プリズム" @@ -107175,7 +107047,6 @@ msgid "" msgstr "小さなガラス管です。これ以上説明する事はありませんよ?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "顕微鏡" @@ -107191,7 +107062,6 @@ msgstr "" "昔ながらの古典的な道具です!この重く頑丈な実験器具を使えば、小さな物体をより大きく拡大して観察できます。電気がなければ照明は機能しませんが、それ以外の機能は非常に実用的です。残念ながら、今の状況ではあまり役に立ちません。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "解剖顕微鏡" @@ -107208,7 +107078,6 @@ msgstr "" "この顕微鏡は標準的なものより拡大倍率が低くなっています。立体視が可能で、試料の表面を詳細に観察できます。一般的に小さな生物の解剖や細かい作業をする際に使われます。光源があれば今の状態でも使えそうですが、一体何のために使えばいいのでしょう?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "分液漏斗" @@ -107226,7 +107095,6 @@ msgstr "" "とても漏斗には見えない形状です。膨らんだ上部に栓、下部に弁が付いた涙滴型のガラス瓶です。水と油などの互いに交じり合わない液体の分離や、一方の液体に含まれている化合物の除去に使われます。高度なスキルを持っていれば、吹き鳴らすことも可能かもしれません。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "ロータリーエバポレーター" @@ -107244,7 +107112,6 @@ msgstr "" "傍に置くだけで、典型的なマッドサイエンティストになったような気分になれます。ガラス管と複数の丸型フラスコが連結された容器に、モーターと加熱装置が接続されています。モーターで一方のフラスコを回転させながら加熱し、内容物を蒸発させます。その蒸気はガラス管で集められ、別のフラスコに溜まります。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "蒸留装置" @@ -107264,7 +107131,6 @@ msgstr "" "古典的なマッドサイエンティストに似合うこの装置は、蒸留塔に蒸気を通し、その後凝集器で留出物を冷却して凝集させ、回収します。大学院生やロボット(この2つに違いはありませんね?)は、特定の物質を分析できるように蒸留した成分を収集します。一度に数mlしか蒸留できないため、ウイスキーなどの蒸留には非常に不向きです。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "電気泳動装置" @@ -107281,7 +107147,6 @@ msgstr "" "ゲルを入れる一組のプラスチック製トレイに電極が付いており、電源を入れると、電圧勾配が生じます。タンパク質やDNAは、電荷とサイズに応じてゲル内で分離されます。現状では、分解して部品を利用する以外の使い道はありません。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "微量遠心分離機" @@ -107335,7 +107200,6 @@ msgid "" msgstr "木や皮革で作った小型のシェルターです。使用して設置します。損傷しており、修復が必要です。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "大型テント" @@ -107348,7 +107212,6 @@ msgid "" msgstr "ファミリーサイズのテントです。十分過ぎる広さがありますが、非常に嵩張ります。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "シェルターキット" @@ -107359,7 +107222,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "木や皮革で作った小型のシェルターです。使用して設置します。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "テント" @@ -107420,7 +107282,6 @@ msgid "" msgstr "手彫りの木製パイプです。効率的にタバコを楽しめるよう設計されています。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "ホッチキス" @@ -107431,7 +107292,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "紙をまとめて固定するための道具です。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "ペン" @@ -107442,7 +107302,6 @@ msgid "A plastic ball point pen." msgstr "プラスチック製のボールペンです。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "ハサミ" @@ -107456,7 +107315,6 @@ msgid "" msgstr "しっかりとした刃の付いたハサミです。使用する事で布や綿製のアイテムを裁断して布切れにします。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "紙" @@ -107467,7 +107325,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "1枚の紙です。焚き火にくべましょう。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "千枚通し(骨)" @@ -107482,7 +107339,6 @@ msgstr "" "骨を尖らせて作った簡易的な千枚通しです。金属が発見される前は革の加工に使われていました。刺突武器として使うこともできそうですが、すぐに壊れてしまうでしょう。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "千枚通し(鋼)" @@ -107495,7 +107351,6 @@ msgid "" msgstr "木製のグリップを取り付けた鋼鉄製の千枚通しです。主に革細工に使います。刺突武器として使うこともできそうですが、すぐに壊れてしまうでしょう。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "編針" @@ -107509,7 +107364,6 @@ msgid "" msgstr "先端部が丸くなっている、2本の頑丈な木製の針です。毛糸を編むのに使用します。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "針(骨)" @@ -107532,7 +107386,6 @@ msgstr "" "弧を描くように曲げられた針です。この形状によって素材の片面だけに糸を通せます。通常の裁縫には使いにくい針ですが、ネオプレンを縫うことができます。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "針(木)" @@ -107548,8 +107401,7 @@ msgstr "" "木を削って作った針です。一方の先端には小さな穴が開いており、縫い針として使えます。即席の道具なので、速度や精度が必要な作業や、ケブラーなどの硬い素材を使った製作には不向きです。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "裁縫道具" @@ -107578,8 +107430,7 @@ msgid "" msgstr "仕立てに使う大量の型紙です。布や革で様々な製品をゼロから作るのにも便利ですが、より複雑なものを作りたい時は必要不可欠です。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "仕立て屋キット" @@ -107594,7 +107445,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "体重計" @@ -107605,7 +107455,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "裸になった際に体重を計る小型の装置です。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "たわし" @@ -107616,7 +107465,6 @@ msgid "This is a simple scrub brush." msgstr "シンプルな作りのたわしです。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "電動バリカン" @@ -107654,7 +107502,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "剃刀用替刃" @@ -107679,7 +107526,6 @@ msgstr "" "洗顔と顔剃りに使う道具が一式揃った、コンパクトで軽量な洗面キットです。固形石鹸を充填して使用することで、しばらくの間さっぱりした良い気分が持続します。1回の使用で固形石鹸を1単位消費します。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "スポンジ" @@ -107714,7 +107560,6 @@ msgid "" msgstr "簡易的な洗面キットです。固形石鹸を充填して使用することで、髭を剃って整えます。1回の使用で固形石鹸を1単位消費します。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "洗濯板" @@ -107727,7 +107572,6 @@ msgid "" msgstr "木製の洗濯板です。洗濯用の薬品が充填された状態で使用すれば、不潔な衣類を洗うことができます。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "洗濯洗浄キット" @@ -107765,7 +107609,6 @@ msgstr "" "バネで固定された一対の鋼鉄製の爪が、感度の高い圧力板に繋がっています。地面に設置すると、上に乗った者を強く挟んでダメージを与える罠になります。シャベルを持っていれば、設置する時に埋めて隠せます。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "刃の罠" @@ -107785,7 +107628,6 @@ msgstr "" "水平にマチェットが取り付けられたモーターです。仕掛け線でモーターのスロットルを制御します。仕掛け線を引っ張ると、強い力でマチェットが振り回されます。罠の効果範囲は3x3タイルに及びます。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "釘板の罠" @@ -107829,7 +107671,6 @@ msgid "" msgstr "空気が入った突起に覆われているビニールシートです。使用すると地面に設置し、誰かが踏んだ際に音を立てて警戒を促します。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "鉄菱" @@ -107847,7 +107688,6 @@ msgid "" msgstr "表面に何箇所も尖った箇所がある小さな金属片です。何も知らない犠牲者が上に乗れば、足に突き刺さるでしょう。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "ガラス棘" @@ -107899,7 +107739,6 @@ msgid "" msgstr "上に乗ると作動する、軍用の対人地雷です。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -107926,7 +107765,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "仕掛け線" @@ -107960,7 +107798,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "ガラス片の罠" @@ -107980,7 +107817,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "斧" @@ -108005,7 +107841,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "チェーンソー(オフ)" @@ -108040,7 +107875,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "チェーンソーは大きな騒音を立てて動いています。使用すると電源を切ります。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "電動丸ノコギリ(オフ)" @@ -108081,7 +107915,6 @@ msgid "" msgstr "コードレスの軽量手持ち丸ノコギリです。電源が入り、刃が回転しています。使用すると電源を切ります。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "斧(銅)" @@ -108106,7 +107939,6 @@ msgid "" msgstr "片手で扱えるハチェットです。優れた近接武器ですが、斧やハンマーの代用品としても利用できます。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "電動チェーンソー(オフ)" @@ -108197,7 +108029,6 @@ msgid "" msgstr "幅の狭い石を木の棒に固定したものです。木の伐採も可能ですが、現代の斧よりも相当苦労します。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "ノコギリ" @@ -108208,14 +108039,12 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "刃の薄いノコギリです。木材を切るのに用います。" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "ノミ" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -108343,7 +108172,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "アセチレンガス生成機" @@ -108356,7 +108184,6 @@ msgid "" msgstr "水と炭化カルシウムから非加圧のアセチレンを作り出す大がかりな装置です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "アングルグラインダー" @@ -108369,7 +108196,6 @@ msgid "" msgstr "素材の表面の平滑化や研磨をする際に使う一般的な電動工具です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "レンガ窯" @@ -108382,7 +108208,6 @@ msgid "" msgstr "炭を燃やして使う携帯型の窯です。レンガを焼成するためのものですが、粘土で作ったものを焼くこともできます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "ハンドカード器" @@ -108396,7 +108221,6 @@ msgid "" msgstr "繊維を均して布製品を作るための、2枚の木製の櫛です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "ペイントスクレーパー" @@ -108407,7 +108231,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "塗料を剥がし取る時に使う、ノミに似た道具です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "かすがい" @@ -108420,7 +108243,6 @@ msgid "" msgstr "複数の資材を繋げて固定する際に役立つ道具です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "小型バール" @@ -108435,7 +108257,6 @@ msgstr "" "曲がった部分を釘などに引っかけてこじ開ける小型の工具です。使用することで鍵のかかった扉を破壊せずに解錠し、マンホールの蓋を持ち上げます。もちろん、誰かの頭に叩きつけることもできますよ。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "コンクリートミキサー" @@ -108448,7 +108269,6 @@ msgid "" msgstr "持ち運びできるコンクリートミキサーです。大きくて重いですが、一人で操作でき、電池で駆動します。ヒーターが内蔵されています。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "電動ドリル" @@ -108460,7 +108280,6 @@ msgid "" msgstr "電池で稼働するコードレスハンドドリルです。付け替え用の先端部品がいくつか付属しています。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "糸巻き棒と紡錘" @@ -108473,7 +108292,6 @@ msgid "" msgstr "糸を紡ぐために使用する、特殊な形をした2本の棒です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "電動ジャックハンマー" @@ -108487,7 +108305,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "弓鋸" @@ -108511,7 +108328,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "ハンマー" @@ -108539,7 +108355,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "手回しドリル" @@ -108552,7 +108367,6 @@ msgid "" msgstr "原始的な手回し式のドリルです。ドリルビットはひとつだけです。穴を空けるのに時間がかかり、疲れます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "ゴムホース" @@ -108565,7 +108379,6 @@ msgid "" msgstr "柔軟なゴムホースです。製作用の材料になりますが、車両から燃料を抜き取ることも可能です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "ボトルジャッキ" @@ -108576,7 +108389,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "車両を持ち上げるのに使用する、携帯可能な油圧式ボトルジャッキです。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "簡易ジャッキ" @@ -108589,7 +108401,6 @@ msgid "" msgstr "みすぼらしい造りの即席シザースジャッキです。これを使う勇気があるなら、車両を持ち上げるのに使用できます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "シザースジャッキ" @@ -108600,7 +108411,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "車両を持ち上げる際に使う、小型のシザースジャッキです。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "ジャックハンマー" @@ -108614,7 +108424,6 @@ msgid "" msgstr "硬い岩や地面に穴をあけるための工事用ツールです。ガソリンで動きます。燃料がある状態で隣接する地形に対して使用すれば削岩できます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -108627,7 +108436,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "電動窯" @@ -108643,7 +108451,6 @@ msgstr "" "電池で作動する携帯型の電動窯です。レンガを焼成するためのものですが、粘土で作ったものを焼くこともできます。ちょっとした機械整備の知識があれば、車両電源で動くように改造できるかもしれません。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "プロ用銃器修復キット" @@ -108658,7 +108465,6 @@ msgstr "" "損傷した銃器を修復するための専用工具が完璧に備わった修復キットです。通常の電池で作動します。銃器を長く使うには必須のものと言えます。1回の使用で電池容量を25消費します。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "簡易ハンマー" @@ -108671,7 +108477,6 @@ msgid "" msgstr "棒に金属片を括りつけたハンマーの代用品です。ハンマーとしては十分に機能しますが、本物には遠く及びません。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "ヤスリ" @@ -108684,7 +108489,6 @@ msgid "" msgstr "金属製の素材の表面を滑らかにする際に使う、一般的な工具です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "左官ごて(金属)" @@ -108697,7 +108501,6 @@ msgid "" msgstr "建設現場でコンクリートやモルタルを平滑にする時に用いられます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "多目的修復キット" @@ -108727,7 +108530,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "プラスチック用金型" @@ -108740,7 +108542,6 @@ msgid "" msgstr "プラスチック用の金型です。プラスチック製アイテムの製作や形状を整えるのに使います。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "万能ツール" @@ -108753,7 +108554,6 @@ msgid "" msgstr "持ち手の部分に小さな工具が複数収納されている、ペンチの形をした便利な工具です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "アセチレンバーナー" @@ -108770,7 +108570,6 @@ msgstr "" "持ち手と切断機アタッチメントがセットになった、金属溶接、切断作業に用いる持ち運びに便利な小型アセチレンバーナーです。使用するには、溶接用ガスが入った加圧シリンダーを用意する必要があります。金属加工だけでなく、金属製の壁を破壊する用途にも使えます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "刷毛" @@ -108781,7 +108580,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "壁面を塗装するのに適した幅広のブラシです。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "つるはし" @@ -108794,7 +108592,6 @@ msgid "" msgstr "鋼製の大きなつるはしです。硬い壁や(スキル次第では)硬い敵などの破壊に適しています。大地を削れ!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "ピンリーマー" @@ -108807,7 +108604,6 @@ msgid "" msgstr "穴の径を広げたり形状を整えたりする際に使う、手持ち式の工具の一種です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "プライヤー" @@ -108821,7 +108617,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "電動ポリッシャー" @@ -108846,7 +108641,6 @@ msgid "" msgstr "棒に石を括り付けたハンマーの代用品です。ハンマーとしては十分に機能しますが、本物には遠く及びません。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "ドライバー" @@ -108859,7 +108653,6 @@ msgid "" msgstr "プラスドライバーです。大抵の電子機器や機械工作で重要な役割を果たし、他にも様々な用途があります。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "ドライバーセット" @@ -108872,7 +108665,6 @@ msgid "" msgstr "数種類のサイズと先端の形状が揃ったドライバーセットです。より精密な作業に適した工具が揃っています。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "銃器修復キット" @@ -108887,7 +108679,6 @@ msgstr "" "損傷した銃器を修復するための専用工具が詰まった携帯式修復キットです。通常の電池で作動します。銃器を長く使うには必須のものと言えます。1回の使用で電池容量を100消費します。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "電気はんだごて" @@ -108915,7 +108706,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "工具箱" @@ -108928,7 +108718,6 @@ msgid "" msgstr "頑丈な金属の箱に収められた完璧な工具セットです。一般家庭で想定されるほとんどの修繕・建築作業を可能とします。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "業務用工具箱" @@ -108955,7 +108744,6 @@ msgid "" msgstr "手と一体化した工具セットです。切断したり、さいの目に刻んだりと、様々な作業が可能です。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "アーク溶接機" @@ -108968,7 +108756,6 @@ msgid "" msgstr "アーク放電を利用して金属同士を溶接する、電池駆動の工具です。建設作業や修理には欠かせません。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "左官ごて(木)" @@ -108981,7 +108768,6 @@ msgid "" msgstr "この簡易ごては建設現場でコンクリートやモルタルを平滑にするときに使います。簡易的な鈍器として使用することもできます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "羊毛" @@ -108994,7 +108780,6 @@ msgid "" msgstr "天然の羊毛の塊です。フェルトや糸に加工することができます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "アートナイフ" @@ -109010,7 +108795,6 @@ msgstr "" "小型の鋭利な刃物です。織物や工作などの精密作業をするための道具ですが、傷の焼灼にも使えます。切れ味はまともですが、刃が小さ過ぎるため武器として使うのは困難です。死体の解体はできません。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "レンチ" @@ -109023,7 +108807,6 @@ msgid "" msgstr "サイズ調節が可能なレンチです。武器としても頼りになり、様々な機械工作で使われます。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "革製ホース" @@ -109037,7 +108820,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "簡易手回しドリル" @@ -110181,6 +109963,16 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -110485,7 +110277,6 @@ msgstr "" "拡声器とステレオシステムが組み込まれた内蔵装置です。簡単な音楽を再生できます。かつて脳みそよりもアイスクリームを欲しがっていた子供たちの注意を引くために、アイスクリームトラックで使われていました。" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "板金" @@ -110876,6 +110667,12 @@ msgstr[0] "木製テーブル" msgid "A crude wooden table." msgstr "作りの粗い木製のテーブルです。" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -111175,6 +110972,28 @@ msgstr[0] "キャスター" msgid "A set of casters, like on a shopping cart." msgstr "ショッピングカートに取り付けるキャスターセットです。" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -111992,13 +111811,6 @@ msgstr "セメント" msgid "FERTILIZER" msgstr "肥料" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "石" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -112319,13 +112131,6 @@ msgstr "紙" msgid "PLASTIC" msgstr "プラスチック" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "電子機器" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -112889,7 +112694,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "苦痛が増加します。" @@ -112913,7 +112718,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "スタミナを減少させます。ミ=ゴ・スレイヴァーのビームで使われます。" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "苦痛" @@ -116579,14 +116384,14 @@ msgstr[0] "邪悪な多機能調理器具" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "多機能調理機に意思が宿りました!気を付けろ!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "ホログラム" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "光の投射によって形作られた本物そっくりの映像です。" @@ -126363,9 +126168,9 @@ msgstr "私の旅に同行する気はない?" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "物品の取引をしようか。" @@ -127170,9 +126975,9 @@ msgstr "ここで何をしているんだ?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "ここを出て一緒に行動しないか?" @@ -127188,9 +126993,9 @@ msgstr "ここを出て一緒に行動しないか?" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "何か手伝える事はあるか?" @@ -127218,25 +127023,25 @@ msgstr "事が起こったとき、私は持ち場で見張り中だった。連 #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "どうして他の場所に移らないんだ?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "それじゃあ、取引をしようか。" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "悪いけど、もう行かないと。" @@ -127257,9 +127062,9 @@ msgid "You've seen other survivors?" msgstr "他の生存者と会ったのか?" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "何を売ってくれるんだ?" @@ -133582,7 +133387,7 @@ msgstr "もうたくさんだ" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "やあ、。" @@ -143461,17 +143266,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "任務について..." #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "任務の1つについて..." @@ -144693,7 +144498,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "意味が分からない。" @@ -150587,9 +150392,9 @@ msgstr "何かサバイバルの助言はあるかな?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "さようなら。" @@ -159348,7 +159153,6 @@ msgid "" msgstr "家畜の放牧や干し草に加工する牧草を栽培している畑と、関連施設(納屋など)の土地です。" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "森林" @@ -159727,7 +159531,7 @@ msgid "island" msgstr "島" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "小屋" @@ -159749,7 +159553,6 @@ msgstr "小屋(地下室)" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "森林" @@ -162502,7 +162305,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "湖岸" @@ -162549,7 +162351,7 @@ msgstr "武器" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "全部" @@ -162674,6 +162476,13 @@ msgstr "電子機器" msgid "CBMS" msgstr "CBM" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "道具" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -162687,7 +162496,7 @@ msgstr "光源" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "防具" @@ -162728,7 +162537,7 @@ msgstr "医療" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "素材" @@ -173093,7 +172902,7 @@ msgstr "折畳軽量フレーム" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -173177,6 +172986,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "通路灯" @@ -174923,6 +174739,24 @@ msgid "" "chair or grocery cart." msgstr "オフィスの回転イスや食料品店のカートに付いている、旋回可能な小型ホイール一式です。" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "ホイール" @@ -174992,7 +174826,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "車外を見渡せるガラスの薄板です。ワイヤーで補強されており、一般的なガラスよりも損傷に強くなっています。" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "自転車" @@ -175060,6 +174894,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "自転車(カーボン)" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "カヌー" @@ -175205,8 +175043,8 @@ msgid "Wheelbarrow" msgstr "手押し車" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "折り畳み式車椅子" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -175548,7 +175386,6 @@ msgid "Tour Bus" msgstr "ツアーバス" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "セキュリティバン" @@ -182135,7 +181972,7 @@ msgid "Holographic Flash Explosion" msgstr "ホログラフィック・フラッシュ・エクスプロージョン" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "ホログラフィック・トランスポジション" @@ -182143,8 +181980,8 @@ msgstr "ホログラフィック・トランスポジション" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -183036,10 +182873,10 @@ msgstr[0] "銃床(バットフック)" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " -msgstr "折り畳むと銃を小型化できる軍用銃床です。部品自体の重量と旋回するフックによって、銃の安定性が大幅に向上します。" +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." +msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "diffracting lens" @@ -183050,9 +182887,8 @@ msgstr[0] "回析レンズ" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" -"レーザー兵器用に作られた光学ツールです。レーザービームをより低出力の複数のビームに回析させることで威力と精度を向上させますが、射程が大幅に減少します。" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json msgid "C.R.I.T. gasmask (off)" @@ -199238,74 +199074,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -199315,177 +199083,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "分類: 予備部品" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -200696,90 +200293,109 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" -msgstr[0] "CBM: 血液発電装置" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" +msgstr[0] "結晶化マナ製人工鼻" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." -msgstr "死んだ生物の血液を消費してCBMの電力を生成できる強力な魔法道具が背中に埋め込まれています。最大100mlの血液を保管できます。" +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." +msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "転移ゲートを設置する" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "転移ゲート" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "転移用のゲートです。転移に関する呪文を詠唱するか転移装置を使用すれば、このゲートを目的地として転移できます。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "魔法陣" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "地面に刻まれた荒い作りの魔法陣は、血やろうそく、その他の小物類で彩られています。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "輝く大岩" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "この岩は何かが普通ではない気がします。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "魔法の作業台" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " @@ -200787,12 +200403,12 @@ msgid "" msgstr "" "錬金術での大抵の液体流出や出火に強い、頑丈な樹脂で表面をコーティングされた豪華なオーク材の収納棚です。電気とガスの配線が付属しており、守護のルーンで装飾されています。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "アランビック" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " @@ -200800,12 +200416,12 @@ msgid "" msgstr "" "錬金術において調合物を蒸留する際に使う、ガラスと銅の大きな蒸留器です。銅の鍋の上部にガラス製の細い管が伸びており、その先端に付いた取り外し可能な瓶の中に蒸留物が流れ込みます。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "太陽系儀" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -200814,44 +200430,45 @@ msgid "" msgstr "" "美しい姿の、縮尺が均一でない太陽系の模型です。クランクを回すと歯車が複雑に連動し、惑星の相対的な動きを観察することができます。最新のものにはBluetoothが搭載されており、電源があればアプリを使って制御できるそうです。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "巨大マナクリスタル" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "芽を出す雑草のように地面から飛び出したマナクリスタルです。エネルギーを発してほのかな黄色に脈動し、時折まばゆい光を迸らせています。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "[ガラスが粉々に砕ける音!]" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "[マナが爆ぜる音!]" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "石の祭壇" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "大きな石の祭壇です。道徳的に見て疑問視される儀式で頻繁に登場します。" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "デーモンフォージ" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " @@ -200859,41 +200476,51 @@ msgid "" msgstr "" "炎を好む巨大な赤いクモのキチン質を使って作られた炉です。アルメンタムの熱に耐えられる特別製であり、魔法の金属を溶かして加工しやすい鋳塊にすることができます。" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "魔法の皮" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "黒竜皮" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "デーモンキチン" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "オリハルコン" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" -msgstr "追加 - Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" +msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "呪文" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" @@ -200901,70 +200528,112 @@ msgid "" msgstr "" "魔法の理論とそれに伴うあらゆる技術に関連した、神秘的な呪文のスキルです。レベルが高いほど呪文の拾得速度が上昇し、呪文失敗の確率が減少します。魔法に関する本を読み、呪文を研究することでレベルが上昇します。" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "%1$sはトライデントで%2$sを貫きました!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "%1$sはトライデントでの%2$sを貫きました!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "%1$sはトライデントで%2$sを貫こうとしましたが、装甲に阻まれました!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "%1$sはトライデントでの%2$sを貫こうとしましたが、装甲に阻まれました!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "%1$sはグレートクラブで%2$sを叩き潰しました!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "%1$sはグレートクラブでの%2$sを叩き潰しました!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "%1$sはグレートクラブで%2$sを叩き潰そうとしましたが、狙いが外れてふらつきました。" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "%1$sはグレートクラブでの%2$sを叩き潰そうとしましたが、狙いが外れてふらつきました。" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "魔剣" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "呪文によって召喚された、光り輝きながら素早く動き回って敵を細切れにするロングソードです。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "魔法使い志望者" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "魔法使い志望者" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -200972,25 +200641,25 @@ msgid "" msgstr "魔法使いになれると書かれたカラフルなパンフレットを見つけました。世界が崩壊し始めたというのに、妙にのどかな話です。" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "魔法使いになれると書かれたカラフルなパンフレットを見つけました。世界が崩壊し始めたというのに、妙にのどかな話です。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "放火癖のケルビニスト" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "放火癖のケルビニスト" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -200998,25 +200667,25 @@ msgid "" msgstr "全身全霊をかけて炎を愛していました。心の奥底に内なる炎を発見し、それをこの世に行使せんとしています。" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "全身全霊をかけて炎を愛していました。心の奥底に内なる炎を発見し、それをこの世に行使せんとしています。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "ドルイド" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "ドルイド" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -201024,7 +200693,7 @@ msgid "" msgstr "古くからのドルイド僧の仲間は大変動と共に消えました。今こそ自然が栄える時です。" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -201032,7 +200701,7 @@ msgid "" msgstr "古くからのドルイド僧の仲間は大変動と共に消えました。今こそ自然が栄える時です。" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -201043,7 +200712,7 @@ msgstr "" "黙示録の日が訪れた時、教区内を守るためにできるあらゆることを誠実にこなしましたが、祈りは天には届かなかったようです。死者達から身を守るために必要なのは、もっと具体的な対策です。" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -201054,7 +200723,7 @@ msgstr "" "黙示録の日が訪れた時、教区内を守るためにできるあらゆることを誠実にこなしましたが、祈りは天には届かなかったようです。死者達から身を守るために必要なのは、もっと具体的な対策です。" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -201065,7 +200734,7 @@ msgstr "" "黙示録の日が訪れる前は、預言者の声を聞き、コーランを熟読し、地域社会を平和に導くために地元のモスクで祈りを捧げる日々を過ごしていました。かつては遠方から信者達が話を聞きに来てくれましたが、今では脳味噌を食べにやってくる者ばかりです。" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -201076,7 +200745,7 @@ msgstr "" "黙示録の日が訪れる前は、預言者の声を聞き、コーランを熟読し、地域社会を平和に導くために地元のモスクで祈りを捧げる日々を過ごしていました。かつては遠方から信者達が話を聞きに来てくれましたが、今では脳味噌を食べにやってくる者ばかりです。" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -201086,7 +200755,7 @@ msgstr "" "長い間、世界中を旅して見聞を広めてきました。いつもならばどんな質問でも答える自信がありますが、そこかしこに跋扈する貪欲な死者に対して何をするべきかという問いには...答えを出せそうにありません。" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -201096,7 +200765,7 @@ msgstr "" "長い間、世界中を旅して見聞を広めてきました。いつもならばどんな質問でも答える自信がありますが、そこかしこに跋扈する貪欲な死者に対して何をするべきかという問いには...答えを出せそうにありません。" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -201107,7 +200776,7 @@ msgstr "" "町から町へ、常に動き続け、善き教えを広める事に人生を捧げてきました。さて、何もかもが地獄の底に堕ち、今日の分のポッドキャスト配信も中止になり、死者に説教をしてみたところでその心が動くこともありません。" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -201117,18 +200786,18 @@ msgid "" msgstr "" "町から町へ、常に動き続け、善き教えを広める事に人生を捧げてきました。さて、何もかもが地獄の底に堕ち、今日の分のポッドキャスト配信も中止になり、死者に説教をしてみたところでその心が動くこともありません。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "死霊術師見習い" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "死霊術師見習い" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -201138,7 +200807,7 @@ msgstr "" "魔法使いの世界で一般的に受け入れられない類の魔法を扱っていたため、隠れて過ごしていました。大変動がやってきた今、書物からあらゆる知恵を借りる必要があります。" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -201147,18 +200816,18 @@ msgid "" msgstr "" "魔法使いの世界で一般的に受け入れられない類の魔法を扱っていたため、隠れて過ごしていました。大変動がやってきた今、書物からあらゆる知恵を借りる必要があります。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "ストームシェイパー見習い" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "ストームシェイパー見習い" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -201169,7 +200838,7 @@ msgstr "" "天気予報士の息子として生まれ、天気に興味を持っていましたが、最近、天気を操作する不思議な力を秘めていることに気付きました!大事件が起こったため、残念ながら力を発揮して楽しむほどの余裕はありません。" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -201179,18 +200848,18 @@ msgid "" msgstr "" "天気予報士の息子として生まれ、天気に興味を持っていましたが、最近、天気を操作する不思議な力を秘めていることに気付きました!大事件が起こったため、残念ながら力を発揮して楽しむほどの余裕はありません。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "アースシェイパー見習い" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "アースシェイパー見習い" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -201198,25 +200867,25 @@ msgid "" msgstr "戦いは苦手でしたが、その克服に役立ついくつかの魔法をコーチから教わりました。" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "戦いは苦手でしたが、その克服に役立ついくつかの魔法をコーチから教わりました。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "テクノマンサー見習い" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "テクノマンサー見習い" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -201224,59 +200893,91 @@ msgid "" msgstr "テストでズルをするために使っていた魔法は、大変動の世界で他の用途に役立つかもしれません。" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "テストでズルをするために使っていた魔法は、大変動の世界で他の用途に役立つかもしれません。" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "魔法" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "ポーション" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "ルーン" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "マナ集中" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "マナ注入" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "マナ織込" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "失われた信仰" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "失われた信仰" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -201287,7 +200988,7 @@ msgstr "" " " #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -201298,25 +200999,25 @@ msgstr "" " " #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "教会" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "魔法使いの弟子" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "魔法使いの弟子" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -201329,7 +201030,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -201341,25 +201042,25 @@ msgstr "" "魔法使いの弟子として、大変動から逃れられる可能性を秘めた試作装置の製作を手伝っていました。試運転で何を間違えたのか、師匠は身体の外と中を交換転移してしまいました。これからは生き残る方法を自分で探さねばなりません。師匠のノートは手元に残っていますが..." #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "魔法使いの秘匿研究室" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "魔法使いの休日" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "魔法使いの休日" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -201370,7 +201071,7 @@ msgstr "" "魔法使いの弟子として何年間か過ごした後、人里離れた塔で悠々自適の休日を送ろうとしていましたが、自分探しは大変動によって中断されました。まずは自力で生き残る方法を学ぶ必要がありそうです。" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -201381,418 +201082,421 @@ msgstr "" "魔法使いの弟子として何年間か過ごした後、人里離れた塔で悠々自適の休日を送ろうとしていましたが、自分探しは大変動によって中断されました。まずは自力で生き残る方法を学ぶ必要がありそうです。" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "魔法使いの隠れ家" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "ゴブリン" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "魔法使いの秘匿研究室" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "湖畔の隠れ家" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "焼けた木" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "この木は酷く焼け焦げていますが、何故か倒れずに立ったままです。" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "内部に何らかの生物の影が見える、大きな繭状の物体です。生きている状態で何時間かけてクモに体液を吸われていたのか、あまり考えたくありません。" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "壁(クモの巣)" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "クモの糸、木片、石の破片、暗い色の樹脂などが寄せ集まって壁を形作っているようです。" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "荒廃地" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "土です。荒廃しており耕作には向きません。掘り返して建設準備を行うことも可能です。" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "魔法混合" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "ブレス" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "身体に力を与え、能力を向上させる祝福の呪文です。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "ホーリー・ブレード" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "光の剣が接触したあらゆる敵を切り裂きます!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "スピリチュアル・アーマー" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "信仰が十分に強ければ、悪がこの鎧を打ち破ることはありません!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "スマイト" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "悪は世界中に蔓延っています。この力を暗闇の中で輝く光に変えましょう!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "ライフ・コンバージョン" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "自身の生命力を霊的エネルギーに変換します。HPを消費してマナを回復します。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "マインド・オーバー・ペイン" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "激しいフィットネスのような儀式を行うことで苦痛を和らげます。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "サモン・ゾンビ" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "気味の悪いゾンビを地下深くから召喚して戦わせます。呪文のレベルを高めると召喚できる量が増加します。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "サモン・スケルトン" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "不気味な骸骨ゾンビを地下深くから召喚して戦わせます。呪文のレベルを高めると召喚できる量が増加します。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "サモン・ゾンビピューマ" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "痩せ細った大型のネコ科ゾンビを地下深くから召喚して戦わせます。呪文のレベルを高めると召喚できる量が増加します。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "ネクロティック・ゲイズ" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "自身の血の力を使って視線に腐敗のエネルギーを込め、視界内の標的にダメージを与えます。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "アニミスト・ルーン" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "儀式によってアニミストと波長の合う神秘的な石を創り出します。石はレシピの触媒として利用できます。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "イグニス・ファトゥス" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "湿地の大気から鬼火を呼び出し、敵を惑わせます。より経験を積むと、一度の詠唱で複数の鬼火を呼び出せるようになります。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "キュア・ライト・ウーンズ" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "対象のダメージを少し回復します。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "ペイン・スプリット" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "四肢のダメージを均等化します。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "ビシャス・テンタクル" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "鋭い骨をもち酸を滴らせる凶悪な長い触手を詠唱者の体内から発生させます。触手は強力な遠距離攻撃を繰り出します。" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "グロテスク・エンハンスメント" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "外法によって詠唱者の身体を歪め、能力と強度を高めます。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "アシディック・スプレー" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "詠唱者の口から敵を溶かすドロドロの酸を円錐状に放出します。口からドロドロを吐き出す姿をイメージして唱えましょう。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "フレッシュ・ポーチ" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "詠唱者の背中を変形させ、内部にアイテムを保存できる大きな袋を作り出します。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "コンジャー・ボーンスピア" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "刃で縁取られた邪悪な骨の槍を生成します。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "バイオマンサー・ルーン" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "儀式によってバイオマンサーと波長の合う神秘的な石を創り出します。石はレシピの触媒として利用できます。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "パラリティック・ダート" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "筋線維と骨で作られた歪な針を射出し、標的に刺し傷を与えて動きを鈍らせます。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "ヴィセラル・プロジェクション" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "周囲に刺激性の血液をまき散らし、毒をもつ触手を生一帯に生やして標的を捕らえます。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "麻痺(副次効果)" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "ヴィセラル・プロジェクションの麻痺効果です。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "反動(副次効果)" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "詠唱者に対する副作用です。" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "コアグラント・ウィーヴ" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " @@ -201800,166 +201504,214 @@ msgid "" msgstr "" "体内の生理機能を支配し、医療面での肉体強化を施します。回復力は上昇しませんが、空腹と喉の渇きを犠牲にして、敗血症になる前に失血を抑えて傷口を清潔に保つことができます。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "クリスタライズ・マナ" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "マナを固体化します。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "マナ酔い" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "クリスタライズ・マナの呪文の副次効果です。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "ダーク・サイト" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "暗闇を見通す力を与えます。" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "瞳が一瞬緑色に光り、暗黒を見通す力を得ました。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "メガブラスト" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "子供の頃に見たアニメのようにビームを発射してみたいと思っていました。今なら可能です!" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "マジカル・ライト" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "魔法の光源を作り出します。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "ブラインディング・フラッシュ" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "眩い光を発生させて敵を短時間盲目にします。レベルが高いほど威力も少しずつ高くなります。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "エーテル・グラスプ" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "霊体の針が地面から大量に出現し、範囲内の全てのモンスターの速度が低下します。レベルが高いほど効果範囲が広くなり、効果時間も長くなります。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "オブファスケーテッド・ボディ" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "魔法のオーラが身体の周りの光を歪め、1ターンで回避できる攻撃回数を増加させます。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "オーラ・オブ・プロテクション" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "全身を魔法のオーラで包み、有害な環境から身体を保護します。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "トランスロケート・セルフ" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "使用者を特定の波長を出すゲートへ転移します。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "アシッド・レジスタンス" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "酸から身体を守ります。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "グレーター・アシッド・レジスタンス" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "呪文テンプレート" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "利用可能なすべての値を表示するテンプレートです。" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "%sを唱えると、耳がツーンとなりました。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "デバッグモンスター召喚(デバッグ専用)" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "レベルに応じて出現するモンスターの数が増加します。" @@ -201971,245 +201723,218 @@ msgstr "レベルに応じて出現するモンスターの数が増加します #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "%sを唱えました。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "スタミナ消費(デバッグ専用)" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "スタミナを少し消費します。" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "%sは効果がありません。デバッグ警告の可能性があります。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "疲労増加(デバッグ専用)" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "疲労が少し増加します。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "HP消費(デバッグ専用)" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "HPを少し消費します。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "電力消費(デバッグ専用)" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "CBMの電力を少し消費します。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "効果付与(デバッグ専用)" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "標的に効果を付与します。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "オブジェクト引き寄せ(デバッグ専用)" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "指定位置に全てのオブジェクトを引き寄せます。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "空間引き寄せ(デバッグ専用)" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "指定位置に全てのタイル上空間を引き寄せます。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "オブジェクト押し出し(デバッグ専用)" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "指定位置から全てのオブジェクトを押し出します。" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "完全防御(デバッグ専用)" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "あらゆるものから害されることがなくなります。" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "不死身になりました。何者からも害されません!" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "落下耐性(デバッグ専用)" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "羽根のように軽やかに落下できます。" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "羽根を食べました!" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "ブラック・ドラゴンズ・ブレス" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "口から一直線上に酸を噴き出します。" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "ベジテイティブ・グラスプ" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "地面から飛び出した根や蔓で敵を掴み、動きを鈍くして多少のダメージを与えます。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "ルート・ストライク" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "地面から槍のように根が飛び出し、円内の敵を突き刺します。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "ウッデン・シャフト" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "手から硬い木の枝を生み出して高速で射出し、敵に突き刺します。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "ネイチャーズ・ボウ" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "本体が消えるまでは無限に矢を発射できる木製の弓を生成します。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "ネイチャーズ・トランス" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "生きとし生けるものとの繋がりによって魔術的なトランス状態に入ります。マナを消費して疲労を素早く回復します。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "バグ・オブ・キャッツ" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "ネコはお好きですか?" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "コーズ・ベア" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -202218,258 +201943,278 @@ msgid "" msgstr "" "この呪文は大変な効果をもたらす気がします。呪文の名前がコーズ・ベアであることは明らかですが、効果の内容がほとんど読み取れなくなっているため、どんな事になるか想像もつきません。ともかく、大変動を生き抜くためにも、まずは唱えてみましょう!" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "キル・ファンガス" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "真菌の影響を受けた区域を浄化します。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "ドルイド・ルーン" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "儀式によってドルイドと波長の合う神秘的な石を創り出します。石はレシピの触媒として利用できます。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "ピュリフィケーション・シード" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "浄水効果を持つ種が大地から贈られます。使用しないと種は急速に劣化します。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "サクリフィシャル・リグロース" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "自身の生命力を消費して、付近の枯れた植物や収穫済みの作物を復活させます。完全な復活には時間を要します。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "サクリフィシャル・ヒーリング" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "自身の生命力を消費して仲間を治療します。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "ストーンフィスト" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "腕と手を近接戦闘での素手攻撃や防御に利用できる魔法の石の鎧で包みます。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "サイズミック・ストンプ" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "マナを集中させた足を踏み降ろし、地面を伝う衝撃を周囲の敵にぶつけて転倒させます。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "ストーンズ・エンデュランス" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "足下の石に精神を集中し、その不変性を受け継ぎます。マナを消費してスタミナに変換します。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "シャードスプレー" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "鋭い金属片を広範囲に放射し、敵味方関係なく切り刻みます。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "ピアシング・ボルト" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "鉄の棘を発射して、敵対者を串刺しにします。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "シャードストーム" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "剃刀のような鋭い金属片を全方向に放射します。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "ロックボルト" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "石を高速で発射します。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "ムーブ・アース" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "エッセンスが周囲を漂い、大地が変動します。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "アースシェイパー・ルーン" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "儀式によってアースシェイパーと波長の合う神秘的な石を創り出します。石はレシピの触媒として利用できます。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "ラヴァ・ボム・シャープネル" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "ラヴァ・ボムスの副次的効果です。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "ラヴァ・ボム・ヒート" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "ラヴァ・ボム・テライン" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "ラヴァ・ボム" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "硬い岩で覆われた熱い溶岩の爆弾が、地面を引き裂き飛び出します。溶岩爆弾は衝撃で砕け、岩や溶岩の破片を至るところにまき散らします。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "ストーンスキン" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "流動する岩で作られた鎧で全身を包み込みます。動きが妨げられますが防御力が向上します。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "ピラー・オブ・ストーン" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "大地の力を借りて、硬い岩の柱を出現させます。経験を積むとより楽に詠唱でき、周辺の地形への影響も少なくなります。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "石の柱(副次効果)" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "打撃効果が付与されますが、呪文レベルによってダメージと範囲が減少します。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "ツイステッド・レストレーション" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" @@ -202477,12 +202222,12 @@ msgid "" msgstr "" "脈拍を加速させ、筋肉を増強します。危険が迫っている状況で詠唱するのは賢明ではありませんし、体調が万全でないと致命的な状態になる場合があります。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "ツイステッド・レストレーション改" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" @@ -202490,37 +202235,37 @@ msgid "" msgstr "" "脈拍を加速させ、筋肉を増強します。危険が迫っている状況で詠唱するのは賢明ではありませんし、体調が万全でないと致命的な状態になる場合があります。薬の抽出方法を改良し、悪影響を緩和しました。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "コンジャー・スローイング・ブレードI" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "3本の投げナイフを召喚します。" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "指輪を使い、3本の投げナイフを召喚しました!" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "リカバー・マナ" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "マナを回復します。" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "マナが回復し始めました!" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" @@ -202528,27 +202273,27 @@ msgstr "" "血管が燃えるように熱いと感じます!\n" "マナが回復し始めました!" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "ポイント・フレア" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "標的のいる地点に強い熱を発生させてダメージを与えます。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "フィンガー・ファイアライター" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" @@ -202556,474 +202301,518 @@ msgid "" msgstr "" "火種として使える、身体に燃え移らない小さな炎を生み出します。炎はポケットに入れておくこともできますが、他の物に着火したい時はそう念じる必要があります。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "アイス・スパイク" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "鋭く尖った氷柱を標的の頭上に作り出し、落下させてダメージを与えます。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "ファイアボール" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "標的に向かってえんどう豆サイズの光球を放ちます。光球が標的や障害物に当たると、爆風を伴わない高熱の爆発を引き起こします。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "コーン・オブ・コールド" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "標的に円錐状に集めた冷気をぶつけます。" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "バーニング・ハンズ" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "何かのゲームで見たことがある気がします。射程の短い円錐状の炎を発射します。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "フロスト・スプレー" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "何かのゲームで見たことがある気がします。射程の短い円錐状の氷を発射します。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "チリング・タッチ" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "触れた標的を一気に冷やして凍らせます。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "グライド・オン・アイス" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "足を魔法の氷でコーティングし、平坦な地形を滑って素早く移動できるようになります。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "ホワイト・ブラスト" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "白く輝く氷の結晶を発射します。結晶は衝撃を受けると爆発して粉々になり、強烈な冷気の花を咲かせます。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "アイス・シールド" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "腕に近接戦闘での攻撃や防御に利用できる魔法の氷の盾を生成します。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "フロスト・アーマー" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "全身を魔法の氷の鎧で包み身体を保護します。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "ケルビニスト・ルーン" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "儀式によってケルビニストと波長の合う神秘的な石を創り出します。石はレシピの触媒として利用できます。" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "ワニ召喚" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "1体のワニを召喚します。" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "呪術師はワニを召喚しました!" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "リザードフォーク用呪文" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "呪術師が使う呪文です。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "マジック・ミサイル" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "「私は闇に向かってマジック・ミサイルの呪文を唱える!」" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "フェイズ・ドア" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "ランダムな近い位置にテレポートします。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "グラビティ・ウェル" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "特定の地点を中心とする重力の井戸を召喚します。範囲内の全てのモンスターに打撃ダメージを与えます。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "マナ・ブラスト" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "魔力を集中させて広範囲を消し飛ばす爆発を引き起こします。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "マナ・ボルト" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "敵にのみダメージを与える魔法の矢を発射します。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "ヘイスト" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "短い期間、詠唱者の速度を大幅に上昇させます。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "マナ・ビーム" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "魔力を収束させて進路上の敵にダメージを与えるビームを発射します。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "エスケープ" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "中距離のランダムな位置にテレポートし、危機的状況からの脱出を支援します。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "メイガス・ルーン" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "儀式によって魔法使いと波長の合う神秘的な石を創り出します。石はレシピの触媒として利用できます。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "キャッツ・グレース" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "より優雅に、敏捷に、器用になります。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "イーグルズ・サイト" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "ワシのもつ高い感覚を得ます。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "オーガズ・ストレングス" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "鬼のもつ高い筋力を得ます。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "フォックセズ・カンニング" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "キツネのように賢くなります。" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "マナを結晶化します。体質が変化したことにより、より効率的かつ簡単に詠唱できるようになりました。" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "シーカー・ボルツ" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "範囲内のランダムに選ばれた標的に対して、指先からマナの矢を発射します。" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "ビュン。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "吸血" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "標的一体から敵を吸い取ります。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "ベア・トラップ" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "クマを召喚する罠です!期待していた効果と違いましたか?" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "「罠だ!」" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "ロケットパンチ" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "腕から巨大な拳を発射します。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "ガス攻撃" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "有毒ガスを周囲に拡散します。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "デーモン・ファイアボール" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "モンスターが使用する呪文です。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "サモン・デーモン・スパイダーリングス" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "4体のデーモンスパイダー(幼体)を召喚します。" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "ジョルト" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "指先から電撃を短い扇状に放出します。" @@ -203031,20 +202820,20 @@ msgstr "指先から電撃を短い扇状に放出します。" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "パシッ。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "ライトニング・ボルト" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -203053,74 +202842,74 @@ msgid "" msgstr "" "多くのストームシェイパーが切り札とする呪文であり、その名前から期待できる通り、指先から稲妻を放つ印象的な呪文です。ただし、この電は指向性が高く、ほとんどの非固体物質を一直線に通り抜けて進みます。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "ウィンドストライク" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "掌からすべてを巻き込む強烈な風を放出します。" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "ビュウ。" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "ウィンドランニング" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "魔法の風が身体を押すことで移動が楽になり速度が上昇します。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "コール・ストームハンマー" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "雷の力に満ちた、火花を散らす魔法の戦鎚を召喚します。この鎚は敵を打ち倒し、そしてもちろん、粉々に砕きます!" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "ストームシェイパー・ルーン" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "儀式によってストームシェイパーと波長の合う神秘的な石を創り出します。石はレシピの触媒として利用できます。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "ライトニング・ブラスト" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -203128,21 +202917,21 @@ msgid "" msgstr "標的に対して稲妻を小さく圧縮した球体を放ちます。電撃はすぐに拡散するためダメージは高くありませんが、素早く連続して放つことが可能です。" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "大地を穿つ天の力を呼び覚まします。指先から標的目がけて複数の雷を放ちます。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "イオニゼーション" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -203150,105 +202939,129 @@ msgid "" "foes reeling." msgstr "大気中の電荷を操作することで、広範囲に稲妻を招来します。自然現象の雷とは比べ物にならない低威力ですが、敵に衝撃を与えます。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "雷光(副次効果)" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "閃光効果を追加します。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "ウォール・オブ・フォグ" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "分厚い霧の壁を広範囲に出現させます。敵が霧に触れると強烈な気圧が発生して地面に押し付けられますが、仲間は問題なく通り抜けられます。" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "インビジビリティ" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "他者から自分が視認できなくなる魔法の力場を発生させます。いわゆる不可視ですが、科学的なややこしい手順は必要ありません。" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "姿が消え、外の世界から視認できなくなりました!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "ランプ" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "魔法のランプを作り出します。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "マナトリシティ" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "霊的エネルギーをCBM用の電力に変換します。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "テクノマンサー・ルーン" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "儀式によってテクノマンサーと波長の合う神秘的な石を創り出します。石はレシピの触媒として利用できます。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "テイズ" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "敵に衝撃を与える非常に射程距離の短い電撃を放ちます。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "レッサー・クアンタム・トンネル" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -203257,16 +203070,16 @@ msgid "" msgstr "" "何らかの量子的な操作を行うことで、物体を通り抜けて短距離を移動します。重要かつ残念なことに、通り抜けた先の地点については不確実性が伴います。通り抜けた際に、少し眩暈が生じます。" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "シナプティック・スティミュレーション" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -203274,74 +203087,74 @@ msgid "" "responsibly!" msgstr "脳内のシナプスを刺激して処理速度を高め、反射神経、速度、知性などを大幅に上昇させます。くれぐれも慎重に使いましょう!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "レイズ" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "レーザーとも呼ばれる光線を収束させて標的に放ちます。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "アニメイテッド・ブレード" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "敵を切り刻む、または粉みじんにする力をもった、自立行動する剣を召喚します。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "ミラー・イメージ" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "光で生物の形を複製し、魔術的なホログラムとして実体化します。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "サモン・フローティング・ディスク" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "荷物を運ぶ浮遊円盤を召喚します。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "過熱(副次効果)" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "オーバーチャージの呪文を詠唱した際の副次効果です。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "オプティカル・スニーズ・ビーム" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -203349,356 +203162,356 @@ msgid "" msgstr "体内のバッテリーを過充電させて、顔から半指向性のビームを発射します。この呪文の開発者は奇妙なユーモアのセンスをもっていたようです。" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "ビビビビッ!" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "内なるレイラインを使ってCBM用の電力を過充電し、顔の中心に力を集中させました。" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "大量のマナに精神を集中し、疲れが溜まりました。" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "大量のマナに精神を集中すると倦怠感が増加します。" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "マナに関連した倦怠感が治まってきました。" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "風の力に身体を支えられ、後押しを受けています。" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "風の力に身体を支えられ、後押しを受けています。" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "背中を押していた風の勢いが衰えました。" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "暗闇でも視界が確保できます。" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "視界が暗闇に順応しました。" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "暗闇を見通す力が失われました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "エーテルの呪縛" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "霊体の腕が身体を掴み引っ張っています!" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "エーテルの腕が地面から飛び出し、身体を掴みました!" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "霊体の腕は消え去りました。" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "誰からも見られません。" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "姿が消えました。" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "姿が見えるようになりました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "祝福" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "身体を強化する魔法の力で満たされています。" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "身体を強化する魔法の力で満たされました!" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "魔法の力は消え去りました。" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "異常発達した筋肉が震え、四肢は伸び、目は緑色に輝いています。" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "身体が急速に元に戻りました。" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "根や蔓が敵に絡みついています。" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "根や蔓が敵に絡みつき、動きを鈍くしています!" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "根や蔓が朽ちました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "刺突根" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "根が地面を割って表れ、敵を突き刺しました!" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "根が朽ちました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "酸の爆発" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "酸が飛び散りました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "ヘイスト" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "速度が飛躍的に上昇しています。" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "速度が飛躍的に上昇し、超人的なレベルに達しています!" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "通常の速度に戻りました。" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "情報処理速度が上昇しました。" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "精神が加速しました。" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "通常の情報処理速度に戻りました。" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "鬼の筋力を得ました!" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "強くなった気がします!" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "筋力が元に戻りました。" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "ワシの感覚を得ました!" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "細部までよく分かります!" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "感覚が元に戻りました。" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "ネコの機敏さを得ました!" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "器用が高まっています!" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "器用が元に戻りました。" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "キツネの狡猾さを得ました!" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "知性が高まっています!" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "知性が元に戻りました。" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "開発者の力を得て皮膚が疼いています!" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "肌の疼きが治まり、人生は空虚で無意味なものに戻りました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "落下耐性(デバッグ専用)" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "羽根のように軽やかに落下できます。" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "身体が羽根のように軽くなりました。" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "地球の引力に囚われました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "怯え" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "恐怖" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "恐慌" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "膝は震え、心拍数は高まり、胃は引きつっています。" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "恐怖を感じました!" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "恐怖感が薄れました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "過剰負担" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "広範囲に影響力を広げ過ぎたため、身体に負担がかかり気分が悪くなっています。" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "出血と咬傷に対する免疫がつき、スタミナ回復力が増大し、空腹感と喉の渇きが増しました。" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "肉体を駆け巡っていた力が薄れました。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "生体毒" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "呪文詠唱によって中毒にかかり、身体の動きが鈍り弱体化しました。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "オウルベアの胃石" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -203707,146 +203520,74 @@ msgid "" msgstr "" "オウルベアの喉から消化器の間で作られ、複雑な消化システムの一部として使われていた奇妙な形の石です。錬金術でも同様の役割を持っており、2つの異なるもの同士を結合する働きを助ける機能があるようです。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "石の殻" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "オウルベアの卵の殻です。運が良ければ内容物の力がまだ残っているかもしれませんが、縁が鋭い以外は注目すべき点はありません。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "マナブレスレット(銅)" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "神秘的な雰囲気を漂わせる、ルーン文字が刻まれたブレスレットです。マナを素材に注入する際に役立ちます。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "マナブレスレット(銀)" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "マナサークレット" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "木製の輪に銅の飾りが付いた、頭に着用する装身具です。着用していると心がとても落ち着きます。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "ポーション(基礎)" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "呪文を溶け込ませて保存することができる、強い酒にマナを注入した濃厚な液体です。この状態でも飲もうと思えば飲めます。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "上級ポーション(基礎)" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "魔法のエネルギーが満ちた純粋なエタノールです。内部に集まった力によって、液体の表面が常に波立っています。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "大きな副腎" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" "腎臓の上部に位置する、アドレナリンやコルチゾール、アルドステロンなどを分泌する器官です。一般的な動物か変異体かにかかわらず大きく発達しています。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "光粉" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "実体化したウィルオウィスプが残した粉です。今もなお超自然の光を放っているようです。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "マジカル読書灯" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" -"光粉とマナ小回復ポーションの魔法で動き、少なくとも10年は読書に十分な光源として活躍する高級ランプです。使用するとカバーを閉じて照明を隠します。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "マジカル読書灯(閉)" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" -"光粉とマナ小回復ポーションの魔法で動き、少なくとも10年は読書に十分な光源として活躍する高級ランプです。カバーは閉じています。使用するとカバーを開けて周囲を照らします。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "ブレイプレート" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "ブレイの後頭部に付いていた巨大な装甲です。盾や鎧の材料として高く評価されています。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "ブレイパール" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " @@ -203854,124 +203595,96 @@ msgid "" msgstr "" "ブレイが大地を突き破る時、えらに微量の貴金属や宝石が集まります。それらが徐々に一つに固まることで、美しさと力を備えた光沢のある宝石が生まれます。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "エッセンス(竜)" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "ドラゴンの持つ魔法のエッセンスを濃縮して蒸留したものです。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "スタージの口吻" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "スタージの死体から切り取った口吻です。威力は貧弱なものの近接武器として使えます。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "デーモンキチンの塊" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "デーモンスパイダーの外骨格の一部です。軽くて非常に耐久性があり、恐らくは魔法に関する特性を持っています。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "デーモンキチンプレート" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "成体のデーモンスパイダーから剥ぎ取った、大きな外骨格の一部です。このサイズのプレートを使って装甲板を制作できます。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "デーモンスパイダーの牙" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "まだ毒が滴り落ちている、デーモンスパイダーの牙です。錬金術の材料として利用できそうな気がしませんか?" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "アルメンタム" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -"石炭や木炭を魔法の力で加工した物質です。マグネシウムと同じくらいの高温で、かなり長時間燃え続けます。その有用性のため、現在でも大量に生産されている数少ない魔法素材の一つです。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "マナダスト" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "結晶化したマナが粉末状になったものです。魔法のエネルギーによってかすかに明滅しています。" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "竜の血" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "マナ血液" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "矢(オリハルコン)" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "水銀" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "イチイバル" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -203979,7 +203692,7 @@ msgid "" msgstr "イチイバルと呼ばれるオーディンの弓です。一度に10の矢を放つと言われています。ワタリガラスを象った金や銀の装飾が施されています。" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" @@ -203987,319 +203700,293 @@ msgid "" msgstr "" "オリハルコンの小片で作られた矢です。矢尻は神秘的な輝きを放っています。放った矢がほぼ確実に地面に残りますが、イチイバルという名の弓でしか放てません。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "デーモンキチンアームガード" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "デーモンスパイダーの外骨格を丁寧に洗浄し切り取って作った、赤いアームガードです。耐火性があり、耐久性に優れています。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "デーモンキチンアーマー" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "デーモンスパイダーの外骨格を丁寧に洗浄し切り取って作った、脚と胴を覆う赤い鎧です。耐火性があり、耐久性に優れています。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "デーモンキチンヘルメット" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "デーモンスパイダーの外骨格を丁寧に洗浄し切り取って作った、頭部全体を覆う赤いヘルメットです。耐火性があり、耐久性に優れています。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "デーモンキチンガントレット" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "デーモンスパイダーの外骨格を丁寧に洗浄し切り取って作った、赤いガントレットです。耐火性があり、耐久性に優れています。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "デーモンキチンブーツ" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "デーモンスパイダーの外骨格を丁寧に洗浄し切り取って作った、赤いブーツです。耐火性があり、耐久性に優れています。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "ドッグハーネス(デーモンキチン)" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "デーモンキチンのメッシュ素材で作られた、イヌの首から脇腹にかけてを保護する自作ハーネスです。友好的なイヌに装着できます。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "馬鎧(デーモンキチン)" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "デーモンキチンのメッシュ素材で自作した、それぞれクリニエール、ペイトレール、クルーピエと呼ばれる馬鎧です。友好的なウマに装着できます。" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" -"血液内に蓄積された生得的エネルギーをCBM用の電力に変換する、最新技術を用いた装置です。血液が健康であるほど発電に適しています。100mlの血液を保管できます。" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "結晶化マナ製人工鼻" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" -"結晶化したマナや安定した金属類を組み合わせた、大粒の宝石です。内なるレイラインを阻害しない特別な作りのマナパック(頭蓋骨埋め込み式)が付属しています。警告:このCBMはテクノマンサー専用装備です。このCBMを利用した呪文を詠唱することにより、詠唱者はFrikken" -" Laser Beams株式会社とその子会社への免責に同意したものとみなします。" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "鱗(ブラックドラゴン)" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "ブラックドラゴンの鱗です。魔法の力と耐酸性を維持しています。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "粗皮(ブラックドラゴン)" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "ブラックドラゴンから剥ぎ取って丁寧に折り畳んだ生の皮です。防具を作るのに十分な大きさがあり、鱗があれば竜鱗の鎧を製作できます。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "粗皮(鞣し加工中/ブラックドラゴン)" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "鞣したブラックドラゴンの皮を慎重に広げ、揺すって綺麗にしました。" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "ブラックドラゴンの皮はまだ鞣し終わっていません。" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "素材として使用するために必要な化学処理を行ったブラックドラゴンの皮です。使用することで広げて他の用途に使えます。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "黒竜皮" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "加工したブラックドラゴンの皮です。硬く酸に強い特性があり、鱗と合わせれば鋼鉄のように硬く非常に軽い鎧を制作できます。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "黒竜鱗ブーツ" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "黒い竜の鱗でできたブーツです。とても頑丈で、驚くほど軽量です。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "黒竜皮ブーツ" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "黒い竜の皮でできたブーツです。とても頑丈で、驚くほど軽量です。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "黒竜鱗ヘルメット" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "黒い竜の皮と鱗で作られた兜です。装備すると顔全体を覆います。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "黒竜皮ヘルメット" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "黒い竜の皮でできた兜です。頭をしっかり保護しますが、顔面は覆われません。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "黒竜鱗アーマー" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "黒い竜の鱗で作られた一揃いの鎧です。腹部、脚部、腕部を覆う副装具がセットになっており、非常に軽量で柔軟性にも優れています。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "黒竜皮アーマー" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "黒い竜の皮で作られた一揃いの鎧です。腹部、脚部、腕部を覆う副装具がセットになっており、非常に軽量で柔軟性にも優れています。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "黒竜鱗ガントレット" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "頑丈な黒い竜の鱗で作られた、両手を覆うガントレットです。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "黒竜皮グローブ" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "XL黒竜鱗ブーツ" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "変異した体型でも着用できる、黒い竜の鱗でできた大きなブーツです。とても頑丈で、驚くほど軽量です。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "XL黒竜皮ブーツ" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "変異した体型でも着用できる、黒い竜の皮でできた大きなブーツです。とても頑丈で、驚くほど軽量です。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "XL黒竜鱗ガントレット" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "変異した体型でも着用できる、頑丈な黒い竜の鱗で作られた両手を覆う大きなガントレットです。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "XL黒竜皮グローブ" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " @@ -204307,39 +203994,39 @@ msgid "" msgstr "" "革をケブラーで補強した特製グローブです。極限状況で身体を最大限保護するよう作られており、着心地も良好です。変異した体型でも着用できるサイズです。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "XL黒竜鱗ヘルメット" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "変異した体型でも着用できる、黒い竜の皮と鱗で作られた大きな兜です。装備すると顔全体を覆います。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "XL黒竜皮ヘルメット" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "変異した体型でも着用できる、黒い竜の皮でできた大きな兜です。頭をしっかり保護しますが、顔面は覆われません。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "XL黒竜鱗アーマー" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -204347,13 +204034,13 @@ msgid "" msgstr "" "変異した体型でも着用できる、黒い竜の鱗で作られた大きな一揃いの鎧です。腹部、脚部、腕部を覆う副装具がセットになっており、非常に軽量で柔軟性にも優れています。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "XL黒竜皮アーマー" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -204361,19 +204048,19 @@ msgid "" msgstr "" "変異した体型でも着用できる、黒い竜の皮で作られた大きな一揃いの鎧です。腹部、脚部、腕部を覆う副装具がセットになっており、非常に軽量で柔軟性にも優れています。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "リゾート地の広告" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "特定の地点をマップに追記しました。" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -204382,281 +204069,133 @@ msgid "" msgstr "" "湖畔の隠居所や人里離れた山小屋での宿泊予約を提案する、光沢のあるパンフレットです。小島にそびえる塔やへんぴな森の中に建つ山小屋などの自然豊かな写真と共に、その地域の地図が載っています。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "巣穴の地図" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "古びて掠れた地図です。地図の中に注意深く打たれた印の傍に、幻想的な生物の絵が描かれています。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "古い写真" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "年老いた陽気な魔法使いの写真です。地下室でコート掛けと一緒に踊っているようです。背後にはスーツケースが山積みになっています。" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "ポーション(マナ小回復)" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "非売品なので、ラスボスと戦う時まで取っておきましょう!実際は、最後まで使わずクリアしてしまうのでしょうね!" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "ポーション(マナ回復)" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "ポーション(マナ大回復)" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "ポーション(キャッツ・グレース)" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "キャッツ・グレースのポーションです。器用の値が10分間上昇します。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "ポーション(オーガズ・ストレングス)" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "オーガズ・ストレングスのポーションです。筋力の値が10分間上昇します。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "ポーション(イーグルズ・サイト)" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "イーグルズ・サイトのポーションです。感覚の値が10分間上昇します。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "ポーション(フォックセズ・カンニング)" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "フォックセズ・カンニングのポーションです。知性の値が10分間上昇します。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "ブードゥー人形(ゾンビ)" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" -"骨や臓器を使って死んだ人間を非常に正確に再現した人形です。死霊術によって腐敗を遅らせていますが、永久に腐敗を止めることはできません。付属の針で刺すことで力を発揮します。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "ブードゥー人形(骸骨ゾンビ)" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" -"臓器を使って死んだ人間を正確に再現した、骨で覆われた人形です。死霊術によって腐敗を遅らせていますが、永久に腐敗を止めることはできません。付属の針で刺すことで力を発揮します。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "ブードゥー人形(ゾンビピューマ)" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" -"毛皮や骨、臓器を使って死んだピューマを非常に正確に再現した人形です。死霊術によって腐敗を遅らせていますが、永久に腐敗を止めることはできません。付属の針で刺すことで力を発揮します。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "ポーション(ツイステッド・レストレーション)" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" -"悪臭が漂う液体です。脈拍を危険なレベルまで加速させてアンデッドの自然治癒力を再現します。危険な状況や体調が万全でない時に飲むのは止めた方が良さそうです。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "ポーション(ツイステッド・レストレーション改)" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" -"悪臭が漂う液体です。脈拍を危険なレベルまで加速させてアンデッドの自然治癒力を再現します。危険な状況や体調が万全でない時に飲むのは止めた方が良さそうです。煎じ方を改良し、摂取に伴う負担が軽減されました。" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "ルーン(バイオマンサー)" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "表面に引き裂かれた肉や骨を表す印が刻まれた奇妙な小石です。バイオマンサーがアイテムに魔力を込める際に必要になります。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "ルーン(テクノマンサー)" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "表面にゼンマイと歯車を表す印が刻まれた奇妙な小石です。テクノマンサーがアイテムに魔力を込める際に必要になります。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "ルーン(魔法使い)" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "表面に水晶とマナの宝玉を表す印が刻まれた奇妙な小石です。魔法使いがアイテムに魔力を込める際に必要になります。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "ルーン(アースシェイパー)" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "表面に鋼と岩を表す印が刻まれた奇妙な小石です。アースシェイパーがアイテムに魔力を込める際に必要になります。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "ルーン(ケルビニスト)" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "表面に氷と炎を表す印が刻まれた奇妙な小石です。ケルビニストがアイテムに魔力を込める際に必要になります。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "ルーン(ストームシェイパー)" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "表面に雷と嵐を表す印が刻まれた奇妙な小石です。ストームシェイパーがアイテムに魔力を込める際に必要になります。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "ルーン(ドルイド)" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "表面に自然と木々を表す印が刻まれた奇妙な小石です。ドルイドがアイテムに魔力を込める際に必要になります。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "ルーン(アニミスト)" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "表面に召喚士を表す印が刻まれた奇妙な小石です。アニミストがアイテムに魔力を込める際に必要になります。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "ルーン(錬金術師)" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " @@ -204664,13 +204203,126 @@ msgid "" msgstr "" "表面に錬金術と水薬を表す印が刻まれた奇妙な小石です。用途は様々ですが、どの流派とも波長が合っていないため、より高度なレシピの製作は不可能です。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "バイオマンサーの骨槍" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "頑丈な木の棒に不気味な骨の槍が固定されています。槍の付け根にバイオマンサーのルーンが埋め込まれています。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "テクノマンサーのツールバー" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "バールの上部には頑丈な自在スパナが、もう一方の端にはハンマーが内蔵されています。ハンマーの頭にテクノマンサーのルーンが埋め込まれています。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "魔法使いの杖" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" +"ルーン文字が刻まれたクォータースタッフに、耐熱性と耐久性を備えた2つのガラス瓶が固定されており、瓶の中にはマナを保管できるようになっています。先端には魔法使いのルーンが2つ埋め込まれています。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "ケルビニストのフランベルジュ" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "炎のような波状の刃をもつ剣です。柄頭にケルビニストのルーンが埋め込まれています。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "ストームシェイパーの斧" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "木製の持ち手に固定された、銀の縁飾りが付いた鍛造銅製の斧です。柄の先端にストームシェイパーのルーンが埋め込まれています。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "アニミストのアサメ" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "アニミストが召喚用の血を採取する時に使う、鋼鉄製の儀式用ナイフです。十字型の鍔にアニミストのルーンが埋め込まれています。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "テクノマンサーのツールベルト" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "欲しい道具をすぐに作れる、特製の革製ツールベルトです。使用すると武器を収納/装備します。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "ドルイドのコンポジットボウ" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "複数の素材を組み合わせてエネルギー効率を高めた弓です。両端に一つずつドルイドのルーンが埋め込まれています。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "アースシェイパーの拳闘グローブ" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" +"ルーン文字が刻まれた石を巻き付けた、拳闘用グローブです。拳を保護しつつ打撃力を高めます。掌の部分にはアースシェイパーのルーンが埋め込まれています。" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "卵(オウルベア)" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -204680,70 +204332,70 @@ msgid "" msgstr "" "触れてみないとほとんど大岩と見分けがつかないような姿の、オウルベアが持っていた卵です。潜在的な生命エネルギーが放つ暖かい輝きを、内部から感じ取れます。この程度の大きさのタマゴから生まれるオウルベアが、あれほど急速に成長するとは信じられません。慎重に割り開けば、中に入っている黄金色の素晴らしい滋味にありつけるかもしれません。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "オウルベアの卵黄" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "オウルベアの卵の中に入っていた液状の卵黄です。素晴らしい食材です。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "毛玉" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "気味の悪い大きな動物の毛玉です。飲み込もうとしないでください。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "竜の肉" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "ドラゴンを倒して得た肉です。他の肉のようには調理できず、明らかに何か魔法の力を秘めているようです。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "サケビタケ" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "死んだシュリーカーから採取したキノコです。ポーションの材料になります。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "脱変異肉" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "大変動前に流通していた培養肉とほとんど同じ外見の肉です。非常に美味しければ良かったのですが、味は普通の肉と同じです。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "脱汚染肉" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " @@ -204751,3855 +204403,4404 @@ msgid "" msgstr "" "以前ほどは汚染されておらず、まともな味がします。これを使った料理は友人に振る舞いたくありませんが、もし振る舞ったとしてもまず気づかれません。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "壊れたゴーレム(粘土)" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "壊れて前衛芸術のような姿になった、粘土のゴーレムです。叩き壊せば粘土が入手できます。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "壊れたゴーレム(プラスチック)" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" "巨大化した子犬に噛まれた巨大化したアクションフィギュアのような姿になった、壊れたプラスチックのゴーレムです。叩き壊せばプラスチック片が入手できます。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "壊れたゴーレム(石)" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "壊れて大きな岩とそう変わらない姿になった、石のゴーレムです。叩き壊せば石が入手できます。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "壊れたゴーレム(鉄)" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "壊れた鉄のゴーレムです。叩き壊せば貴重な鉄が入手できます。" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "筋力のベルト+2" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "速度のベルト" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" -msgstr[0] "賢者の中級杖" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" +msgstr[0] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." -msgstr "魔法の木とミスリルで作られた、美しい装飾付きの杖です。呪文を唱える際にかすかに光ります。頑丈な近接武器ではありません。" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" -msgstr[0] "魔法使いの帽子" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" +msgstr[0] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." -msgstr "いくつかの星が刺繍された青いとんがり帽子です。着用するとマナの回復が早まります。" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" -msgstr[0] "鎚" - -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" -msgstr "使用にはご注意を!燃えます!爆発します!" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" -msgstr[0] "魔法のレザーベルト" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "速度のベルト" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" -msgstr[0] "メギンギョルズ" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" +msgstr[0] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." -msgstr "雷の神トールが身に着けていた魔法の帯、またはそのレプリカです。着用者の基礎筋力が2倍になります。" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "魔法の腰袋" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "石の籠手" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." -msgstr "腰に巻き付ける幅の広い帯です。収納した物の重量が大幅に軽減される小さな袋が多数付いています。" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "柔軟な石のような魔法の物質で作られた、防御と攻撃に適したガントレットです。" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "魔法の大容量腰袋" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" +msgstr[0] "フィンガーライター" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" -msgstr[0] "抜刀のベルト" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." -msgstr "腰に巻き付ける幅の広い帯です。付属している鞘に武器を入れるとどこか他の次元に転送して保管されるようで、瞬く間に武器を収納/装備できます。" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "テクノマンサーのツールベルト" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "手に持って使える小さな炎です。心の中で念じれば点火できます。" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." -msgstr "欲しい道具をすぐに作れる、特製の革製ツールベルトです。使用すると武器を収納/装備します。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" -msgstr[0] "鉄鞭ベルト" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" -msgstr "ベルトを手に取ると、自在に曲がる金属製の鞭に変化しました!" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." -msgstr "一見すると金属製の紐を編んで作った柔軟なベルトです。使用すると敵を打ち据える鞭に変化します。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "魔法のランプ" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" -msgstr[0] "鉄鞭" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." -msgstr "輪の形状にした鉄鞭は一瞬でベルトに変形しました。" +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "狭い範囲を照らす魔法の光源です。" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." -msgstr "先端が刃のように鋭く尖った、長く柔軟な鋼鉄の鞭です。敵を簡単に細かく切り刻めます。使用すると変形してベルトになります。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" -msgstr[0] "セブンリーグブーツ" +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -"古くから使われ続けてきたように見える、すり減った革と鋼鉄で作られた、丈夫で履き心地も非常に快適なブーツです。着用すると動きが軽快になります。" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "速度のブーツ" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "魔法の灯火" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" -msgstr[0] "転移のブーツ" +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." +msgstr "読書に役立つ小さな光源です。" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." -msgstr "" -"古くから使われ続けてきたように見える、すり減った革と鋼鉄で作られた、丈夫で履き心地も非常に快適なブーツです。使用するとランダムな方向に転移し、厄介な状況から逃走できます。1日1回しか使用できません。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" -msgstr[0] "大地のブーツ" +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." -msgstr "細かいルーン文字が刻まれた、丈夫で履き心地も非常に快適なゴム製ブーツです。着用すると電撃によるダメージを受けなくなります。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "氷の大盾" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" -msgstr[0] "鋼鉄の篭手" +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "魔法の氷だけで作られた軽量かつ頑丈な盾です。" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." -msgstr "腕部を保護する中世の防具です。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "薄氷の膜" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "鋼鉄の篭手(片手)" +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." +msgstr "滑りやすい魔法の氷で足を包みます。平坦な地形では非常に素早く移動できますが、起伏の多い地形では上手く動けません。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" -msgstr[0] "防御の篭手" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" +msgstr[0] "嵐の戦鎚" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." -msgstr "表面に施された銀細工の美しい紋様が目を惹く、軽量ながら非常に頑丈な鋼鉄製の篭手です。受けるダメージを軽減し、身体を保護します。" +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" +msgstr "雷の力に満ちた、火花を散らす魔法の戦鎚です。敵を打ち倒し、そしてもちろん、粉々に砕きます!" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" -msgstr[0] "鉄壁の篭手" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" +msgstr[0] "ストームフィスト" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." -msgstr "表面に施された金細工の美しい紋様が目を惹く、軽量ながら非常に頑丈な鋼鉄製の篭手です。受けるダメージを大幅に軽減し、身体を保護します。" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." +msgstr "腕と手を、火花を散らす魔法の稲妻で包みます。近接戦闘の際に攻撃と防御に利用できます。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" -msgstr[0] "電光の篭手" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "触手鞭" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." -msgstr "" -"表面に施された銀細工の美しい稲妻模様が目を惹く、軽量ながら非常に頑丈な鋼鉄製の篭手です。オーラで全身を包み、電撃によるダメージを軽減します。1日に3回までジョルトの呪文を詠唱できます。" +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." +msgstr "鋭い骨の刃と尖った突起に覆われた、蠢く長い触手です。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" -msgstr[0] "雷撃の篭手" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "肉のポーチ" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." -msgstr "" -"表面に施された金細工の美しい稲妻模様が目を惹く、軽量ながら非常に頑丈な鋼鉄製の篭手です。オーラで全身を包み、電撃によるダメージを大幅に軽減します。1日に3回までライトニング・ボルトの呪文を詠唱できます。" +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." +msgstr "無数の小さな触手が生えた、背中に着用する大きな肉の袋です。袋自体が動いて変形し、動作制限を最小限に抑えます。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" -msgstr[0] "サプレッサー(サイレント・ウィンズ)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "骨の槍" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." -msgstr "チューブ内に専用の無音化呪文を掛けることで、一般的な消音素材を使わずに銃声を聞き取れないレベルまで小さくします。" +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." +msgstr "槍やハルバードに似た、骨から作られた邪悪な武器です。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" -msgstr[0] "マナレーザーサイト(レール)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" +msgstr[0] "ウッドボウ" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." -msgstr "" -"レールに取り付ける、マナクリスタルを利用した小型の可視光レーザー発振器です。標的を素速く簡単に照準できるようになります。重量は増えますが、他に欠点はありません。部品を動かしてアンダーバレルに取り付けることも可能です。" +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." +msgstr "頑丈で柔軟な木に凝った装飾が施された、魔法の力を秘めた弓です。弓を引き絞ると対応する木の矢が生成されます。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" -msgstr[0] "マナレーザーサイト(アンダーバレル)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" +msgstr[0] "浄化の種" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." -msgstr "" -"レールに取り付ける、マナクリスタルを利用した小型の可視光レーザー発振器です。標的を素速く簡単に照準できるようになります。重量は増えますが、他に欠点はありません。部品を動かしてレールに取り付けることも可能です。" +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "種を潰す" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "マナドットサイト" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "潰した種が細かい粉末状に変化しました。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." -msgstr "アイアンサイトを取り外し、マナクリスタルで作った光学式ブルードットサイトを搭載します。精度が向上し、重量が増加します。" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "魔法の種を潰すと生成される粉末は浄水作用を持っており、3.75Lまでの水を浄水できます。" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" -msgstr[0] "魔法の仮面" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" +msgstr[0] "浄化の粉" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." -msgstr "一般的な魔法の仮面です。" +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "粉が放つ光はどんどん強くなっていきます。" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" -msgstr[0] "消失の仮面" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "オーラ(幻惑)" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." -msgstr "表面に何も描かれていない、目と口の部分に穴が開いただけの仮面です。使用するとあらゆるものから存在を無視されます。" +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." +msgstr "全身を覆う目に見えないオーラが周囲の光を歪めます。1ターンにつき最大2回の攻撃を回避できます。" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" -msgstr[0] "慧眼の仮面" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "オーラ(耐酸)" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." -msgstr "目の部分だけを覆うスチームパンク的なデザインの仮面です。目元には大きなレンズが付いており、着用者の視力を補正して大幅に向上させます。" +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." +msgstr "酸に対する耐性を付与する透明な保護膜です。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "棍棒+1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "オーラ(強耐酸)" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" -msgstr[0] "棍棒+2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "氷の鎧" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" -msgstr[0] "クォータースタッフ+1" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "魔法の氷で作られた薄い層が全身を覆っています。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "クォータースタッフ+2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "石肌の衣" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" -msgstr[0] "鉄張りクォータースタッフ+1" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "流動的な岩で作られた薄い層が全身を覆っています。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "鉄張りクォータースタッフ+2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "過熱" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" -msgstr[0] "ロングソード+1" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "アチッ、酷い痛みです!きっとすぐに治りますよ。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "ロングソード+2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "防御のオーラ" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" -msgstr[0] "スレッジハンマー+1" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "有害な環境から全身を保護する、目に見えない魔法のオーラです。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "スレッジハンマー+2" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "ウォーハンマー+1" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" -msgstr[0] "ウォーハンマー+2" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "熱を持っており、本物の火のような模様が次々に浮かんでは消えています。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "野球バット+1" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "溢れんばかりのエネルギーで満たされた血液です。かすかに青い光を放っています。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "野球バット+2" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "マナの欠片" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "金属バット+1" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "結晶化したマナです。マナクリスタルに充填できますが、一度充填すると元に戻せません。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" -msgstr[0] "金属バット+2" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" +msgstr[0] "マナクリスタル" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "スチールスピア+1" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "杖に取り付けられる特殊な小型のマナクリスタルです。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" -msgstr[0] "スチールスピア+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "中国槍+1" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" -msgstr[0] "中国槍+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "ハルバード+1" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" -msgstr[0] "ハルバード+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "グレイブ+1" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" -msgstr[0] "グレイブ+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "薙刀+1" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" -msgstr[0] "薙刀+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "メイス+1" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" -msgstr[0] "メイス+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" +msgstr[0] "ブレイプレート" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "モーニングスター+1" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "ブレイの後頭部に付いていた巨大な装甲です。盾や鎧の材料として高く評価されています。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" -msgstr[0] "モーニングスター+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" +msgstr[0] "デーモンキチンの塊" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "中国剣+1" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "デーモンスパイダーの外骨格の一部です。軽くて非常に耐久性があり、恐らくは魔法に関する特性を持っています。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" -msgstr[0] "中国剣+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" +msgstr[0] "デーモンキチンプレート" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "シミター+1" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "成体のデーモンスパイダーから剥ぎ取った、大きな外骨格の一部です。このサイズのプレートを使って装甲板を制作できます。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" -msgstr[0] "シミター+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" +msgstr[0] "オリハルコン塊" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "エストック+1" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "加工していないオリハルコンの塊です。様々な用途に使うには、まず鋳塊に加工する必要があります。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" -msgstr[0] "エストック+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" +msgstr[0] "オリハルコン片" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "アーミングソード+1" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "オリハルコンの塊から割れ落ちた破片です。様々な用途に使うには、まず鋳塊に加工する必要があります。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" -msgstr[0] "アーミングソード+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" +msgstr[0] "オリハルコン鋳塊" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "ブロードソード+1" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "オリハルコンの鋳塊です。サイズは約3cm×7cm×12cmで、そのまま様々な鍛冶作業に使えます。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" -msgstr[0] "ブロードソード+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" +msgstr[0] "水銀" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "バトルアックス+1" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "水銀の液体です。温度計に使われていることで有名です。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" -msgstr[0] "バトルアックス+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "騎兵刀+1" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" -msgstr[0] "騎兵刀+2" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "バール+1" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" -msgstr[0] "バール+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "ミョルニル" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "カトラス+1" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "ミョルニールと呼ばれる雷神トールの戦鎚です。一振りで山脈を叩き潰して平野に変えると言われています。鎚を通してアスガルドの力が感じられます。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" -msgstr[0] "カトラス+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "グングニル" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "消火斧+1" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" +"グングニルと呼ばれるオーディンの槍です。装備した者の力や技量に関係なく、どのような標的にも命中すると言われています。オーディンの加護が感じられます。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" -msgstr[0] "消火斧+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" +msgstr[0] "グラム" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "日本刀+1" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" +"グラムと呼ばれるシグルズの剣です。伝説のドラゴンであるファフニールを殺した剣であると言われています。かつてレギンの金床を真っ二つに切断したという話も頷ける鋭さです。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" -msgstr[0] "日本刀+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "レーヴァテイン" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "コンバットナイフ+1" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "レーヴァテインと呼ばれるロキの杖です。ロキが死の扉の下より引き揚げたと言われています。秩序を乱す神の魔力が染み込んでいます。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" -msgstr[0] "コンバットナイフ+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" +msgstr[0] "コンバットナイフ(オリハルコン)" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "狩猟用ナイフ+1" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" +"スチールの代わりにオリハルコンを使ったコンバットナイフです。鋼鉄より鋭く高密度なため手入れが楽で、刃が薄いため重量もある程度軽くなっています。" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" -msgstr[0] "狩猟用ナイフ+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" +msgstr[0] "ロングソード(オリハルコン)" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "サバイバルナイフ+1" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "スチールの代わりにオリハルコンを使ったロングソードです。鋼鉄より鋭く高密度なため手入れが楽で、刃が薄いため重量もある程度軽くなっています。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" -msgstr[0] "サバイバルナイフ+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" +msgstr[0] "消火斧(オリハルコン)" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "トレンチナイフ+1" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "スチールの代わりにオリハルコンを使った消化斧です。硬い素材でも切り刻むことが可能になり、設備が充実した消防署には欠かせない装備です。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" -msgstr[0] "トレンチナイフ+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "クリス+1" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" -msgstr[0] "クリス+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "ククリ+1" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" -msgstr[0] "ククリ+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "野太刀+1" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" -msgstr[0] "野太刀+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "つるはし+1" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" -msgstr[0] "つるはし+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "パイク+1" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" -msgstr[0] "パイク+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "レイピア+1" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" -msgstr[0] "レイピア+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "短刀+1" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" -msgstr[0] "短刀+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "脇差+1" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" -msgstr[0] "脇差+2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "ツヴァイヘンダー+1" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" -msgstr[0] "ツヴァイヘンダー+2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" +msgstr[0] "グレートクラブ" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "ケペシュ+1" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "端に大きな持ち手が付いた、節くれだった頑丈な棍棒です。非常に重いですが、力の強い者が持てばとても効果的な武器になります。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" -msgstr[0] "ケペシュ+2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" +msgstr[0] "ウッドトライデント" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "サイフォス+1" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" -msgstr[0] "サイフォス+2" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "中国刀+1" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" +"先端に鍛造した鋼製のフォークを取り付けた、木製の武器です。近接武器の他にも投擲して敵に突き刺すこともでき、上手く扱えば敵の武装解除も可能です。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" -msgstr[0] "中国刀+2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" +msgstr[0] "棘付きジャベリン" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "投擲精度を高める矢羽がついた、長さ約90cmの武器です。先端には邪悪な見た目の棘が複数付いており、命中すれば酷い出血を引き起こします。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "棘付きジャベリンを発射する疑似アイテムです。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" -msgstr[0] "バイオマンサーの骨槍" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" +msgstr[0] "濃縮マナポーション" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "頑丈な木の棒に不気味な骨の槍が固定されています。槍の付け根にバイオマンサーのルーンが埋め込まれています。" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "マナポーションを極限まで濃縮した液体です。摂取するとどのような効果を発揮するのか、よく分かっていません..." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" -msgstr[0] "テクノマンサーのツールバー" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" +msgstr[0] "ブードゥー人形(ゾンビ)" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "バールの上部には頑丈な自在スパナが、もう一方の端にはハンマーが内蔵されています。ハンマーの頭にテクノマンサーのルーンが埋め込まれています。" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"骨や臓器を使って死んだ人間を非常に正確に再現した人形です。死霊術によって腐敗を遅らせていますが、永久に腐敗を止めることはできません。付属の針で刺すことで力を発揮します。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" -msgstr[0] "魔法使いの杖" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" +msgstr[0] "ブードゥー人形(骸骨ゾンビ)" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -"ルーン文字が刻まれたクォータースタッフに、耐熱性と耐久性を備えた2つのガラス瓶が固定されており、瓶の中にはマナを保管できるようになっています。先端には魔法使いのルーンが2つ埋め込まれています。" +"臓器を使って死んだ人間を正確に再現した、骨で覆われた人形です。死霊術によって腐敗を遅らせていますが、永久に腐敗を止めることはできません。付属の針で刺すことで力を発揮します。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" -msgstr[0] "ケルビニストのフランベルジュ" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" +msgstr[0] "ブードゥー人形(ゾンビピューマ)" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "炎のような波状の刃をもつ剣です。柄頭にケルビニストのルーンが埋め込まれています。" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"毛皮や骨、臓器を使って死んだピューマを非常に正確に再現した人形です。死霊術によって腐敗を遅らせていますが、永久に腐敗を止めることはできません。付属の針で刺すことで力を発揮します。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" -msgstr[0] "ストームシェイパーの斧" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" +msgstr[0] "ファイアボールの杖" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "木製の持ち手に固定された、銀の縁飾りが付いた鍛造銅製の斧です。柄の先端にストームシェイパーのルーンが埋め込まれています。" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "ファイアボールを失敗せずに撃てる、古典的な杖です。熟練のケルビニストであれば、より効率的に呪文を詠唱できます。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" -msgstr[0] "アニミストのアサメ" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" +msgstr[0] "マジック・ミサイルの杖" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "アニミストが召喚用の血を採取する時に使う、鋼鉄製の儀式用ナイフです。十字型の鍔にアニミストのルーンが埋め込まれています。" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "マジック・ミサイルを失敗せずに撃てる、古典的な杖です。熟練の魔法使いであれば、より効率的に呪文を詠唱できます。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" -msgstr[0] "折り畳み杖(折畳)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" +msgstr[0] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "展開する" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "折り畳み杖を展開しました。" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "ポーション(マナ小回復)" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "テクノマンサーの技術で強化したバネを使って折り畳めるように改造した可変式の杖です。使用すると杖を展開します。" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "非売品なので、ラスボスと戦う時まで取っておきましょう!実際は、最後まで使わずクリアしてしまうのでしょうね!" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" -msgstr[0] "折り畳み杖(展開)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" +msgstr[0] "ポーション(マナ回復)" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "折り畳む" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "ポーション(マナ大回復)" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "折り畳み杖を折り畳みました。" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "ポーション(キャッツ・グレース)" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "テクノマンサーの技術で強化したバネを使って折り畳めるように改造した可変式の杖です。使用すると杖を折り畳みます。" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" -msgstr[0] "ヒートキューブ" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "キャッツ・グレースのポーションです。器用の値が10分間上昇します。" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "トーチモード" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" +msgstr[0] "ポーション(オーガズ・ストレングス)" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "照明モードのボタンを押すと、立方体の上部に火がつきました。この火は熱を発していますが、他の物体を燃やすことはありません。" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "オーガズ・ストレングスのポーションです。筋力の値が10分間上昇します。" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "ポーション(イーグルズ・サイト)" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "拳大の滑らかな鋼鉄製の立方体です。側面に付いているボタンを押せば、機能が有効化されます。" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "イーグルズ・サイトのポーションです。感覚の値が10分間上昇します。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" -msgstr[0] "ヒートキューブ(トーチ)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" +msgstr[0] "ポーション(フォックセズ・カンニング)" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "火が消えました。" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "フォックセズ・カンニングのポーションです。知性の値が10分間上昇します。" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" +msgstr[0] "ポーション(ツイステッド・レストレーション)" + +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "ヒートキューブはトーチモードになっており、熱と光を発する燃えない炎が上がっています。" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" +"悪臭が漂う液体です。脈拍を危険なレベルまで加速させてアンデッドの自然治癒力を再現します。危険な状況や体調が万全でない時に飲むのは止めた方が良さそうです。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" -msgstr[0] "マスターキー" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "ポーション(ツイステッド・レストレーション改)" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "金色のマスターキーです。使用すると施錠を解除できます。" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" +"悪臭が漂う液体です。脈拍を危険なレベルまで加速させてアンデッドの自然治癒力を再現します。危険な状況や体調が万全でない時に飲むのは止めた方が良さそうです。煎じ方を改良し、摂取に伴う負担が軽減されました。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" -msgstr[0] "消えずの松明" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" +msgstr[0] "本(学習/ブラックドラゴン: 沼地の廃墟)" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "精緻な彫刻が施された木製の松明です。使用すると炎が燃え上がり、かなりの光量を確保できます。永遠に燃え尽きることがありません。" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" +"ブラックドラゴンについて詳しく書かれた書物です。ブラックドラゴンは最も邪悪な竜であり、一般的には沼地の廃墟に生息しています。酸に耐性があり、口から酸を吐きます。書物には、この竜の耐酸性の部位を使った様々な防具の作り方も解説されています。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" -msgstr[0] "無限の酒瓶" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "本(学習/はじめての錬金術)" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "酒瓶の中には芳醇なウイスキーが大量に入っています!" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "酒以外の液体を使った魔法の技術を解説したペーパーバック本です。" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "酒はまだ充填されていません。" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgstr[0] "本(学習/ソウルバインダーの死霊術ガイド)" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" -msgstr[0] "魔法仕立て屋キット" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "アンデッドの魂を人形に縛り付けて自然治癒力を再現する技術を解説した、大型のペーパーバック本です。" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" +msgstr[0] "本(学習/図解魔科学)" + +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -"数本の針、プラスチックの糸巻き、小さなハサミ、さらにプラスチックを溶かしたり繋いだりできる発熱器がセットになった、彫刻が施された高品質のキットです。使用すると、裁縫スキルを活用して衣服や防具の修復や補強を行えます。ゆっくりと糸を生成し続ける魔法のクモもセットに入っています。" +"現代科学と魔法を組み合わせた技術について解説したペーパーバック本です。裏表紙には免責事項が載っています。「Cannith " +"Industries社は、本書に記載されている製品に関する誤作動や事故について一切責任を負いません」" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" -msgstr[0] "クモの巣箱" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" +msgstr[0] "本(学習/アスガルドと冥府の武器)" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "内部でクモが昼夜を問わず熱心に糸を紡いでいる、小さなガラス製の箱です。作られた糸は取り出して利用できます。" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "北欧のルーン文字のような書体で記された鮮やかな書物です。様々な神が使う多数の武器の作り方が、詳細なイラストで解説されています。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" -msgstr[0] "ドルイドのコンポジットボウ" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" +msgstr[0] "本(学習/毒物調理法)" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "複数の素材を組み合わせてエネルギー効率を高めた弓です。両端に一つずつドルイドのルーンが埋め込まれています。" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "表紙にエンボス加工された大釜の絵が載っている革装本です。不思議な力で食べ物を浄化する方法が記されています。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" -msgstr[0] "ハンドガン(M47A1テクノ-メデューサ)" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" +msgstr[0] "本(学習/伝説の金属)" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" -"フィリップ&ロジャース社のM47メデューサに魔法のような改造を加えた、サバイバー向けの多口径対応リボルバーです。テクノマンサーはより小さい弾薬を使うことで信頼性を向上させていますが、薬室にフリーボアを設けているため、一般的なリボルバーほど正確ではありません。" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "オリハルコンなどの魔法の金属の作り方を教えると謳う、表紙が真鍮で覆われた本です。錬金術に関する本とはいえ、内容は退屈です。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" -msgstr[0] "ショットガン(12ga/ガンブレード)" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" +msgstr[0] "本(学習/魔獣の防具)" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -"ファルカタのような形状の湾曲したブレードの背には、とどめの一撃もしくは先制攻撃に用いる銃身の短いポンプアクション式ショットガンが取り付けられています。" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" -msgstr[0] "魔法の指輪(銅)" +"ドラゴンの吐く炎を押しとどめる盾の絵が表紙に書かれた、革装丁の本です。モンスターの皮革を加工して身体を保護する防具を作る様々な方法が掲載されています。" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "銅製の一般的な魔法の指輪です。" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" -msgstr[0] "魔法の指輪" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "銀製の一般的な魔法の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "呪文書" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "金製の一般的な魔法の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" +msgstr[0] "呪文書(クリスタライズ・マナ)" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "プラチナ製の一般的な魔法の指輪です。" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "真の魔法使いは準備を欠かしません。将来のためにマナを結晶化して保存します!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" -msgstr[0] "剣の指輪" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" +msgstr[0] "呪文書(ダーク・サイト)" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." -msgstr "短剣の装飾が彫られた華やかな銀製の指輪です。使用すると手元に投げナイフを召喚します。" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "秘儀の前では暗闇も秘密を隠せません。完全な暗闇も見通せる視覚を手に入れましょう!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" -msgstr[0] "ウナギの指輪" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" +msgstr[0] "呪文書(インビジビリティ)" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." -msgstr "とぐろを巻くウナギを象った銀の指輪です。着用すると1ターンで回避できる攻撃回数が1増加します。" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "自分から望まない限り、全身が光を反射しなくなります。完全な透明です!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" -msgstr[0] "双頭ウナギの指輪" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" +msgstr[0] "呪文書(オブファスケーテッド・ボディ)" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "とぐろを巻く双頭のウナギを象った金の指輪です。着用すると1ターンで回避できる攻撃回数が2増加します。" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "魔法のオーラが身体の周りの光を歪め、敵の攻撃を避けやすくなります。" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" -msgstr[0] "筋力の指輪+1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" +msgstr[0] "呪文書(ホログラフィック・トランスポジション)" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "着用すると少し強くなれる銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" +msgstr[0] "呪文書(スマイト)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" -msgstr[0] "筋力の指輪+2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" +msgstr[0] "呪文書(ライフ・コンバージョン)" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "着用するとそこそこ強くなれる銀製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" +msgstr[0] "呪文書(マインド・オーバー・ペイン)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" -msgstr[0] "筋力の指輪+3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" +msgstr[0] "呪文書(サモン・ゾンビ)" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "着用するとかなり強くなれる金製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" +msgstr[0] "呪文書(サモン・スケルトン)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" -msgstr[0] "筋力の指輪+4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" +msgstr[0] "呪文書(サモン・フローティング・ディスク)" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "着用すると驚くほど強くなれるプラチナ製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" +msgstr[0] "呪文書(サモン・ゾンビピューマ)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" -msgstr[0] "器用の指輪+1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" +msgstr[0] "呪文書(キュア・ライト・ウーンズ)" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "着用すると少し機敏になれる銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" +msgstr[0] "呪文書(ペイン・スプリット)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" -msgstr[0] "器用の指輪+2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" +msgstr[0] "呪文書(ビシャス・テンタクル)" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "着用するとそこそこ機敏になれる銀製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" +msgstr[0] "呪文書(グロテスク・エンハンスメント)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" -msgstr[0] "器用の指輪+3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" +msgstr[0] "呪文書(アシディック・スプレー)" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "着用するとかなり機敏になれる金製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" +msgstr[0] "呪文書(フレッシュ・ポーチ)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" -msgstr[0] "器用の指輪+4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" +msgstr[0] "呪文書(コンジャー・ボーンスピア)" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "着用すると驚くほど機敏になれるプラチナ製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" +msgstr[0] "呪文書(メガブラスト)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" -msgstr[0] "知性の指輪+1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" +msgstr[0] "呪文書(マジカル・ライト)" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "着用すると少し賢くなれる銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" +msgstr[0] "呪文書(ブラインディング・フラッシュ)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" -msgstr[0] "知性の指輪+2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" +msgstr[0] "呪文書(エーテル・グラスプ)" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "着用するとそこそこ賢くなれる銀製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" +msgstr[0] "呪文書(オーラ・オブ・プロテクション)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" -msgstr[0] "知性の指輪+3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" +msgstr[0] "呪文書(ベジテイティブ・グラスプ)" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "着用するとかなり賢くなれる金製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" +msgstr[0] "呪文書(ルート・ストライク)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" -msgstr[0] "知性の指輪+4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" +msgstr[0] "呪文書(ウッデン・シャフト)" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "着用すると驚くほど賢くなれるプラチナ製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" +msgstr[0] "呪文書(ネイチャーズ・ボウ)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" -msgstr[0] "感覚の指輪+1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" +msgstr[0] "呪文書(ネイチャーズ・トランス)" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "着用すると少し鋭くなれる銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" +msgstr[0] "呪文書(バグ・オブ・キャッツ)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" -msgstr[0] "感覚の指輪+2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "呪文書(ストーンフィスト)" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "着用するとそこそこ鋭くなれる銀製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "呪文書(サイズミック・ストンプ)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" -msgstr[0] "感覚の指輪+3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" +msgstr[0] "呪文書(ストーンズ・エンデュランス)" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "着用するとかなり鋭くなれる金製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "呪文書(シャードスプレー)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" -msgstr[0] "感覚の指輪+4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "呪文書(ピアシング・ボルト)" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "着用すると驚くほど鋭くなれるプラチナ製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" +msgstr[0] "呪文書(シャードストーム)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" -msgstr[0] "速度の指輪+3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "呪文書(ロックボルト)" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "着用すると少し素早くなれる銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "呪文書(ポイント・フレア)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" -msgstr[0] "速度の指輪+5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "呪文書(フィンガー・ファイアライター)" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "着用するとそこそこ素早くなれる銀製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "呪文書(アイス・スパイク)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" -msgstr[0] "速度の指輪+7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "呪文書(ファイアボール)" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "着用するとかなり素早くなれる金製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" +msgstr[0] "呪文書(コーン・オブ・コールド)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" -msgstr[0] "速度の指輪+10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "呪文書(バーニング・ハンズ)" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "着用すると驚くほど素早くなれるプラチナ製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "呪文書(フロスト・スプレー)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" -msgstr[0] "防御の指輪+2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "呪文書(チリング・タッチ)" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "着用するとダメージを少し軽減する銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "呪文書(グライド・オン・アイス)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" -msgstr[0] "防御の指輪+4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "呪文書(ホワイト・ブラスト)" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "着用するとダメージをそこそこ軽減する銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "呪文書(アイス・シールド)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" -msgstr[0] "防御の指輪+6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "呪文書(フロスト・アーマー)" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "着用するとダメージをかなり軽減する銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "呪文書(マジック・ミサイル)" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" -msgstr[0] "防御の指輪+8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "呪文書(フェイズ・ドア)" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "着用するとダメージを驚くほど軽減する銅製の指輪です。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "呪文書(グラビティ・ウェル)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" -msgstr[0] "魔法硬貨" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "呪文書(マナ・ブラスト)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" -msgstr[0] "魔法硬貨(ロングソード)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" +msgstr[0] "呪文書(マナ・ボルト)" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいロングソードになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "呪文書(ヘイスト)" -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはロングソードが描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "呪文書(マナ・ビーム)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" -msgstr[0] "魔法硬貨(アーミングソード)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" +msgstr[0] "呪文書(エスケープ)" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいアーミングソードになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "呪文書(キャッツ・グレース)" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはアーミングソードが描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "呪文書(イーグルズ・サイト)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" -msgstr[0] "魔法硬貨(ブロードソード)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "呪文書(オーガズ・ストレングス)" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいブロードソードになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" +msgstr[0] "呪文書(フォックセズ・カンニング)" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはブロードソードが描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "呪文書(ジョルト)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" -msgstr[0] "魔法硬貨(バトルアックス)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "呪文書(ライトニング・ボルト)" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいバトルアックスになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" +msgstr[0] "呪文書(ウィンドストライク)" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはバトルアックスが描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "呪文書(ウィンドランニング)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" -msgstr[0] "魔法硬貨(パイク)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" +msgstr[0] "呪文書(コール・ストームハンマー)" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいパイクになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "呪文書(ブレス)" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはパイクが描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" +msgstr[0] "呪文書(ホーリー・ブレード)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" -msgstr[0] "魔法硬貨(メイス)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "呪文書(スピリチュアル・アーマー)" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいメイスになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" +msgstr[0] "呪文書(ランプ)" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはメイスが描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "呪文書(マナトリシティ)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" -msgstr[0] "魔法硬貨(クォータースタッフ)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" +msgstr[0] "呪文書(テイズ)" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいクォータースタッフになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "呪文書(レッサー・クアンタム・トンネル)" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはクォータースタッフが描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" +msgstr[0] "呪文書(シナプティック・スティミュレーション)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" -msgstr[0] "魔法硬貨(ハンマー)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "呪文書(レイズ)" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいハンマーになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" +msgstr[0] "呪文書(アニメイテッド・ブレード)" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはハンマーが描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "呪文書(ミラー・イメージ)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" -msgstr[0] "魔法硬貨(ドライバーセット)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "呪文書(ライトニング・ブラスト)" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいドライバーセットになりました!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "呪文書(ネクロティック・ゲイズ)" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" +msgstr[0] "呪文書(ピュリフィケーション・シード)" + +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはドライバーセットが描かれています。" +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." +msgstr "浄水効果を持つ種が大地から贈られます。レベルが高いほど得られる種の数が増加します。" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" -msgstr[0] "魔法硬貨(工具箱)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" +msgstr[0] "呪文書(オプティカル・スニーズ・ビーム)" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しい工具箱になりました!" +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." +msgstr "体内のバッテリーを過充電させて、顔から半指向性のビームを発射します。" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨には工具箱が描かれています。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" +msgstr[0] "呪文書(ラヴァ・ボム)" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" -msgstr[0] "魔法硬貨(バール)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" +msgstr[0] "呪文書(アシッド・レジスタンス)" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいバールになりました!" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "透明な保護膜を作って酸から身体を守る呪文です。" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" +msgstr[0] "呪文書(ライトニング・ストーム)" + +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはバールが描かれています。" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." +msgstr "ストームシェイパー達が「ライトニング・ブラスト」と呼んでいる呪文を、より多くのマナを込めることで更に強化した巻物です。" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" +msgstr[0] "呪文書(サクリフィシャル・リグロース)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "呪文書(サクリフィシャル・ヒーリング)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" +msgstr[0] "呪文書(ストーンスキン)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "呪文書(ピラー・オブ・ストーン)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" +msgstr[0] "呪文書(パラリティック・ダート)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "呪文書(ヴィセラル・プロジェクション)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" +msgstr[0] "呪文書(コアグラント・ウィーヴ)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "呪文書(イオニゼーション)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" +msgstr[0] "呪文書(イグニス・ファトゥス)" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "呪文書(ウォール・オブ・フォグ)" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" -msgstr[0] "食肉解体キット+1" +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" -msgstr[0] "食肉解体キット+2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" -msgstr[0] "セスタス+1" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" -msgstr[0] "セスタス+2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" -msgstr[0] "炎の拳" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" +msgstr[0] "" + +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -"拳を覆って打撃力を高める、鋼鉄製の武具です。着用者の手を保護するために、裏面には頑丈なパッドが入っています。敵のみにダメージを与える暗黒の炎を放つ魔法がかかっています。" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" -msgstr[0] "炎の拳+1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "炎の拳+2" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" -msgstr[0] "打撃の籠手" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" +msgstr[0] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "魔術的な紋様で覆われた金属製の大きな籠手です。驚くほど強力な打撃攻撃を繰り出せます。" +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" -msgstr[0] "ショットガン(12ga/ショットセスタス)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -"金属製のセスタスに、銃身を短く切断した二連式ショットガンが取り付けられています。反撃を吸収する銃床がないため、発射にはある程度の筋力が必要です。" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" -msgstr[0] "アースシェイパーの拳闘グローブ" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" +msgstr[0] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -"ルーン文字が刻まれた石を巻き付けた、拳闘用グローブです。拳を保護しつつ打撃力を高めます。掌の部分にはアースシェイパーのルーンが埋め込まれています。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "魔法の杖" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" +msgstr[0] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" -msgstr[0] "魔法の杖(使い捨て)" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" -msgstr[0] "下級杖(マジック・ミサイル)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" +msgstr[0] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." -msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。マジック・ミサイルを詠唱する機能をもっています。" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" -msgstr[0] "中級杖(マジック・ミサイル)" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" -msgstr[0] "上級杖(マジック・ミサイル)" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" -msgstr[0] "下級杖(ファイアボール)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" +msgstr[0] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。ファイアボールを詠唱する機能をもっています。" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" -msgstr[0] "中級杖(ファイアボール)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +msgstr[0] "呪文書(テクノマンサーのC:DDAデバッグガイド)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" -msgstr[0] "上級杖(ファイアボール)" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "static std::string description( spell sp ) const;" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" -msgstr[0] "下級杖(マナ・ビーム)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" +msgstr[0] "呪文書(はじめての魔法)" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。マナ・ビームを詠唱する機能をもっています。" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" -msgstr[0] "中級杖(マナ・ビーム)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" +msgstr[0] "呪文書(バックパッカー用魔法ガイド)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" -msgstr[0] "上級杖(マナ・ビーム)" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "バックパッカーとして活動する際の持ち物、ではなく呪文を解説したガイド本のようです。少し嵩張りますが、役には立ちます。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" -msgstr[0] "下級杖(ポイント・フレア)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" +msgstr[0] "呪文書(異端者のための炎術)" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." -msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。ポイント・フレアを詠唱する機能をもっています。" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "焼け残った本の中には、ものを燃やし尽くす様々な方法が書かれています。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" -msgstr[0] "中級杖(ポイント・フレア)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" +msgstr[0] "呪文書(魔法の諸要素に関する一考察)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" -msgstr[0] "上級杖(ポイント・フレア)" +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This details complex diagrams, rituals, and choreography that describes " +"various spells." +msgstr "様々な呪文を示す複雑な図形、儀式、身振りなどを詳述した論文です。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" -msgstr[0] "下級杖(マナ・ビーム)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" +msgstr[0] "呪文書(聖職者入門)" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." -msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。ホワイト・ブラストを詠唱する機能をもっています。" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "文章のほとんどが宗教的なものですが、治癒に関する興味深い記述も見られます。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" -msgstr[0] "下級杖(ホワイト・ブラスト)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +msgstr[0] "呪文書(聖騎士現代呪文集)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "上級杖(ホワイト・ブラスト)" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "「現代」というタイトルですが、内容は中世英語で書かれています。少しあやふやな部分もありますが、ほとんどの単語は十分理解できます。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" -msgstr[0] "下級杖(コーン・オブ・コールド)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" +msgstr[0] "呪文書(永遠なる冬の支配)" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." -msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。コーン・オブ・コールドを詠唱する機能をもっています。" +"This slim book almost seems to be made from ice, it's cold to the touch." +msgstr "氷で作られたかのような華奢な本です。触ると寒さすら感じます。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" -msgstr[0] "中級杖(コーン・オブ・コールド)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" +msgstr[0] "呪文書(来たるべき嵐の書)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "上級杖(コーン・オブ・コールド)" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "雷雲と交差する稲妻が表紙に浮き彫りで描かれた大きな書物です。触れるとピリピリとした刺激を感じます。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" -msgstr[0] "下級杖(マジック・ミサイル/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" +msgstr[0] "呪文書(名もなき呪文書)" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." -msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとマジック・ミサイルを詠唱できます。" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" -msgstr[0] "中級杖(マジック・ミサイル/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" +msgstr[0] "呪文書(光と偽りについて)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "上級杖(マジック・ミサイル/使い捨て)" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." +msgstr "小さな白い本です。周囲の光をわずかに増幅させています。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" -msgstr[0] "下級杖(ファイアボール/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "呪文書(肉の書)" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとファイアボールを詠唱できます。" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "小さな書物です。表紙が鞣した人間の皮膚で覆われているように見えます。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" -msgstr[0] "中級杖(ファイアボール/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" +msgstr[0] "呪文書(木々の書)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" -msgstr[0] "上級杖(ファイアボール/使い捨て)" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "表紙が樹皮で覆われた書物です。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" -msgstr[0] "下級杖(マナ・ビーム/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "呪文書(エネルギー源としてのマナの効用)" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとマナ・ビームを詠唱できます。" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" -msgstr[0] "中級杖(マナ・ビーム/使い捨て)" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" -msgstr[0] "上級杖(マナ・ビーム/使い捨て)" +"This book details spells that use your mana to recover various physiological" +" effects." +msgstr "体内のマナを使って身体の回復を図る様々な呪文について詳しく書かれています。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" -msgstr[0] "下級杖(ポイント・フレア/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" +msgstr[0] "呪文書(魔法戦士の書)" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとポイント・フレアを詠唱できます。" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "まさに魔法といった感じの呪文が多く書かれた、魔法戦士が戦闘で使う呪文について記した書物です。良い本を手に入れましたね!" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" -msgstr[0] "中級杖(ポイント・フレア/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "呪文書(虚ろなる大地の書)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" -msgstr[0] "上級杖(ポイント・フレア/使い捨て)" +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." +msgstr "この分厚く埃っぽい魔法書は、何と言うか、とにかく、埃っぽいです。大地の持つ力に関して記されています。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" -msgstr[0] "下級杖(ホワイト・ブラスト/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" +msgstr[0] "呪文書(魔法の動作)" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとホワイト・ブラストを詠唱できます。" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." +msgstr "" +"ほとんどまったく存在しなていないように見えるものの97%の確率で本当に存在していると言える小さく軽い書物です。運動や動作に注目した魔法使いの呪文が記されています。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" -msgstr[0] "中級杖(ホワイト・ブラスト/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "呪文書(汚れた巻物)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" -msgstr[0] "上級杖(ホワイト・ブラスト/使い捨て)" +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." +msgstr "" +"新しい呪文を開発しようとしたものの、途中でマグカップに入ったコーヒーをこぼしてしまい怒りのあまりくしゃくしゃにされたように見える巻物です。確実に呪文は覚えられそうですが、素晴らしい効果かどうかは分かりません。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" -msgstr[0] "下級杖(コーン・オブ・コールド/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" +msgstr[0] "呪文書(サルでもわかる死霊召喚)" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとコーン・オブ・コールドを詠唱できます。" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." +msgstr "使用者の命に従い戦う死霊を召喚する呪文について詳しく書かれた本です。召喚した死霊はしばらくすると跡形もなく消えてしまうそうです。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" -msgstr[0] "中級杖(コーン・オブ・コールド/使い捨て)" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "呪文書(テクノマンシーの基礎)" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" -msgstr[0] "上級杖(コーン・オブ・コールド/使い捨て)" +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." +msgstr "様々な形態の物質やエネルギーを操作して力を与える呪文について解説された、分厚い教本です。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" -msgstr[0] "石の籠手" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" +msgstr[0] "呪文書(バカでも分かるテクノマンシー)" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "柔軟な石のような魔法の物質で作られた、防御と攻撃に適したガントレットです。" +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." +msgstr "テクノマンシーの分野に明るくない人に向けて書かれた、非常に基本的な呪文をカラフルな図や漫画で解説する教本です。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" -msgstr[0] "フィンガーライター" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "呪文書(テクノマンシーと電磁スペクトル)" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "手に持って使える小さな炎です。心の中で念じれば点火できます。" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "魔法と電磁波の融合に関する情報がびっしりと載っている、研究所の参考資料です。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "魔法のランプ" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +msgstr[0] "呪文書(地理空間体系: 線形性の嘘)" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "狭い範囲を照らす魔法の光源です。" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" +"時間と空間がどれほど不安定で非ユークリッド的であるかを非常に詳しく解説した書物です。更には、時空が互換的な12の異なる座標系を持っているとする、非常に理解が困難な内容も記されています。専門用語が多分に含まれていますが、熱心に読み込めばポータルに関する呪文をいくつか習得できそうです。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "魔法の灯火" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "呪文書(人類超越)" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "読書に役立つ小さな光源です。" +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "" +"人間は自己を改善しようとする唯一の生物です。この論文にはより恒久的な解決策の発見を目指して、一時的に様々な能力を高める様々な呪文についての考察が書かれています。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" -msgstr[0] "氷の大盾" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" +msgstr[0] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "魔法の氷だけで作られた軽量かつ頑丈な盾です。" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" -msgstr[0] "薄氷の膜" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "滑りやすい魔法の氷で足を包みます。平坦な地形では非常に素早く移動できますが、起伏の多い地形では上手く動けません。" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" -msgstr[0] "嵐の戦鎚" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "雷の力に満ちた、火花を散らす魔法の戦鎚です。敵を打ち倒し、そしてもちろん、粉々に砕きます!" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" -msgstr[0] "ストームフィスト" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "腕と手を、火花を散らす魔法の稲妻で包みます。近接戦闘の際に攻撃と防御に利用できます。" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" -msgstr[0] "触手鞭" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" +msgstr[0] "浄化の大釜" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "鋭い骨の刃と尖った突起に覆われた、蠢く長い触手です。" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" -msgstr[0] "肉のポーチ" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" +"デーモンスパイダーの外骨格で作られた漆黒の大釜です。16L分の食べ物を投入でき、毒を消す効果を持っています。毒の浄化には他の道具が必要な場合もあります。" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "無数の小さな触手が生えた、背中に着用する大きな肉の袋です。袋自体が動いて変形し、動作制限を最小限に抑えます。" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" +"魔法の金属を溶かして加工しやすい鋳塊にするための、携帯できる高性能な炉です。デーモンスパイダーのキチンを使って魔術的な強化が施されています。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" -msgstr[0] "骨の槍" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" +msgstr[0] "耐火モルタル" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "槍やハルバードに似た、骨から作られた邪悪な武器です。" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "いつでも建築に使えるよう調整された、ドラゴンの炎の温度にも耐えるモルタルです。錬金術士が扱っています。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" -msgstr[0] "ウッドボウ" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "マナブレスレット(銅)" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "頑丈で柔軟な木に凝った装飾が施された、魔法の力を秘めた弓です。弓を引き絞ると対応する木の矢が生成されます。" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "神秘的な雰囲気を漂わせる、ルーン文字が刻まれたブレスレットです。マナを素材に注入する際に役立ちます。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" -msgstr[0] "浄化の種" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "マナブレスレット(銀)" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "種を潰す" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "マナサークレット" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "潰した種が細かい粉末状に変化しました。" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "木製の輪に銅の飾りが付いた、頭に着用する装身具です。着用していると心がとても落ち着きます。" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" +msgstr[0] "" + +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "魔法の種を潰すと生成される粉末は浄水作用を持っており、3.75Lまでの水を浄水できます。" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" -msgstr[0] "浄化の粉" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" +msgstr[0] "賢者の中級杖" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "粉が放つ光はどんどん強くなっていきます。" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "魔法の木とミスリルで作られた、美しい装飾付きの杖です。呪文を唱える際にかすかに光ります。頑丈な近接武器ではありません。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" -msgstr[0] "オーラ(幻惑)" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" +msgstr[0] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "全身を覆う目に見えないオーラが周囲の光を歪めます。1ターンにつき最大2回の攻撃を回避できます。" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" -msgstr[0] "オーラ(耐酸)" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "酸に対する耐性を付与する透明な保護膜です。" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "魔法使いの帽子" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" -msgstr[0] "オーラ(強耐酸)" +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "いくつかの星が刺繍された青いとんがり帽子です。着用するとマナの回復が早まります。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" -msgstr[0] "氷の鎧" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" +msgstr[0] "鎚" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "魔法の氷で作られた薄い層が全身を覆っています。" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "使用にはご注意を!燃えます!爆発します!" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" -msgstr[0] "石肌の衣" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "魔法のレザーベルト" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "流動的な岩で作られた薄い層が全身を覆っています。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "速度のベルト" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" -msgstr[0] "過熱" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "メギンギョルズ" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "アチッ、酷い痛みです!きっとすぐに治りますよ。" +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." +msgstr "雷の神トールが身に着けていた魔法の帯、またはそのレプリカです。着用者の基礎筋力が2倍になります。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" -msgstr[0] "防御のオーラ" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" +msgstr[0] "魔法の腰袋" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "有害な環境から全身を保護する、目に見えない魔法のオーラです。" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "腰に巻き付ける幅の広い帯です。収納した物の重量が大幅に軽減される小さな袋が多数付いています。" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" +msgstr[0] "魔法の大容量腰袋" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "抜刀のベルト" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." +msgstr "腰に巻き付ける幅の広い帯です。付属している鞘に武器を入れるとどこか他の次元に転送して保管されるようで、瞬く間に武器を収納/装備できます。" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "熱を持っており、本物の火のような模様が次々に浮かんでは消えています。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" +msgstr[0] "鉄鞭ベルト" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "ブロブに汚染された生物の血液です。黒い泥のような液体は、そよ風に吹かれているかのようにゆっくりと波打っています。" +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" +msgstr "ベルトを手に取ると、自在に曲がる金属製の鞭に変化しました!" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "溢れんばかりのエネルギーで満たされた血液です。かすかに青い光を放っています。" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "一見すると金属製の紐を編んで作った柔軟なベルトです。使用すると敵を打ち据える鞭に変化します。" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "マナの欠片" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" +msgstr[0] "鉄鞭" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "結晶化したマナです。マナクリスタルに充填できますが、一度充填すると元に戻せません。" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" -msgstr[0] "マナクリスタル" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "輪の形状にした鉄鞭は一瞬でベルトに変形しました。" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "杖に取り付けられる特殊な小型のマナクリスタルです。" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" -msgstr[0] "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "先端が刃のように鋭く尖った、長く柔軟な鋼鉄の鞭です。敵を簡単に細かく切り刻めます。使用すると変形してベルトになります。" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "筋力のベルト+2" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "セブンリーグブーツ" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" +"古くから使われ続けてきたように見える、すり減った革と鋼鉄で作られた、丈夫で履き心地も非常に快適なブーツです。着用すると動きが軽快になります。" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" -msgstr[0] "" - -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "速度のブーツ" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "転移のブーツ" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" +"古くから使われ続けてきたように見える、すり減った革と鋼鉄で作られた、丈夫で履き心地も非常に快適なブーツです。使用するとランダムな方向に転移し、厄介な状況から逃走できます。1日1回しか使用できません。" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "ミョルニル" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "大地のブーツ" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "ミョルニールと呼ばれる雷神トールの戦鎚です。一振りで山脈を叩き潰して平野に変えると言われています。鎚を通してアスガルドの力が感じられます。" +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." +msgstr "細かいルーン文字が刻まれた、丈夫で履き心地も非常に快適なゴム製ブーツです。着用すると電撃によるダメージを受けなくなります。" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "グングニル" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" +msgstr[0] "鋼鉄の篭手" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" -"グングニルと呼ばれるオーディンの槍です。装備した者の力や技量に関係なく、どのような標的にも命中すると言われています。オーディンの加護が感じられます。" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "腕部を保護する中世の防具です。" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" -msgstr[0] "グラム" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" +msgstr[0] "鋼鉄の篭手(片手)" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "防御の篭手" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" -"グラムと呼ばれるシグルズの剣です。伝説のドラゴンであるファフニールを殺した剣であると言われています。かつてレギンの金床を真っ二つに切断したという話も頷ける鋭さです。" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." +msgstr "表面に施された銀細工の美しい紋様が目を惹く、軽量ながら非常に頑丈な鋼鉄製の篭手です。受けるダメージを軽減し、身体を保護します。" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "レーヴァテイン" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" +msgstr[0] "鉄壁の篭手" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "レーヴァテインと呼ばれるロキの杖です。ロキが死の扉の下より引き揚げたと言われています。秩序を乱す神の魔力が染み込んでいます。" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "表面に施された金細工の美しい紋様が目を惹く、軽量ながら非常に頑丈な鋼鉄製の篭手です。受けるダメージを大幅に軽減し、身体を保護します。" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" -msgstr[0] "コンバットナイフ(オリハルコン)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" +msgstr[0] "電光の篭手" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -"スチールの代わりにオリハルコンを使ったコンバットナイフです。鋼鉄より鋭く高密度なため手入れが楽で、刃が薄いため重量もある程度軽くなっています。" +"表面に施された銀細工の美しい稲妻模様が目を惹く、軽量ながら非常に頑丈な鋼鉄製の篭手です。オーラで全身を包み、電撃によるダメージを軽減します。1日に3回までジョルトの呪文を詠唱できます。" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" -msgstr[0] "ロングソード(オリハルコン)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" +msgstr[0] "雷撃の篭手" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "スチールの代わりにオリハルコンを使ったロングソードです。鋼鉄より鋭く高密度なため手入れが楽で、刃が薄いため重量もある程度軽くなっています。" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." +msgstr "" +"表面に施された金細工の美しい稲妻模様が目を惹く、軽量ながら非常に頑丈な鋼鉄製の篭手です。オーラで全身を包み、電撃によるダメージを大幅に軽減します。1日に3回までライトニング・ボルトの呪文を詠唱できます。" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" -msgstr[0] "消火斧(オリハルコン)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" +msgstr[0] "サプレッサー(サイレント・ウィンズ)" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "スチールの代わりにオリハルコンを使った消化斧です。硬い素材でも切り刻むことが可能になり、設備が充実した消防署には欠かせない装備です。" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "チューブ内に専用の無音化呪文を掛けることで、一般的な消音素材を使わずに銃声を聞き取れないレベルまで小さくします。" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" +msgstr[0] "マナレーザーサイト(レール)" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" +"レールに取り付ける、マナクリスタルを利用した小型の可視光レーザー発振器です。標的を素速く簡単に照準できるようになります。重量は増えますが、他に欠点はありません。部品を動かしてアンダーバレルに取り付けることも可能です。" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" +msgstr[0] "マナレーザーサイト(アンダーバレル)" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" +"レールに取り付ける、マナクリスタルを利用した小型の可視光レーザー発振器です。標的を素速く簡単に照準できるようになります。重量は増えますが、他に欠点はありません。部品を動かしてレールに取り付けることも可能です。" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" +msgstr[0] "マナドットサイト" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "アイアンサイトを取り外し、マナクリスタルで作った光学式ブルードットサイトを搭載します。精度が向上し、重量が増加します。" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" +msgstr[0] "魔法の仮面" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "一般的な魔法の仮面です。" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" -msgstr[0] "オリハルコン塊" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" +msgstr[0] "消失の仮面" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "加工していないオリハルコンの塊です。様々な用途に使うには、まず鋳塊に加工する必要があります。" +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." +msgstr "表面に何も描かれていない、目と口の部分に穴が開いただけの仮面です。使用するとあらゆるものから存在を無視されます。" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" -msgstr[0] "オリハルコン片" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" +msgstr[0] "慧眼の仮面" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "オリハルコンの塊から割れ落ちた破片です。様々な用途に使うには、まず鋳塊に加工する必要があります。" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "目の部分だけを覆うスチームパンク的なデザインの仮面です。目元には大きなレンズが付いており、着用者の視力を補正して大幅に向上させます。" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" -msgstr[0] "オリハルコン鋳塊" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" +msgstr[0] "棍棒+1" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "オリハルコンの鋳塊です。サイズは約3cm×7cm×12cmで、そのまま様々な鍛冶作業に使えます。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "棍棒+2" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" -msgstr[0] "水銀" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" +msgstr[0] "クォータースタッフ+1" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "水銀の液体です。温度計に使われていることで有名です。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "クォータースタッフ+2" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" -msgstr[0] "濃縮マナポーション" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" +msgstr[0] "鉄張りクォータースタッフ+1" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "鉄張りクォータースタッフ+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" +msgstr[0] "ロングソード+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "ロングソード+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "スレッジハンマー+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "スレッジハンマー+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "ウォーハンマー+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "ウォーハンマー+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "野球バット+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "野球バット+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "金属バット+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "金属バット+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "スチールスピア+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "スチールスピア+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "中国槍+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "中国槍+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "ハルバード+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "ハルバード+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "グレイブ+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "グレイブ+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "薙刀+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "薙刀+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "メイス+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "メイス+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "モーニングスター+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "モーニングスター+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "中国剣+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "中国剣+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "シミター+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "シミター+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "エストック+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "エストック+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "アーミングソード+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "アーミングソード+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "ブロードソード+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "ブロードソード+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "バトルアックス+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "バトルアックス+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "騎兵刀+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "騎兵刀+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "バール+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "バール+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "カトラス+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "カトラス+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "消火斧+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "消火斧+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "日本刀+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "日本刀+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "コンバットナイフ+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "コンバットナイフ+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "狩猟用ナイフ+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "狩猟用ナイフ+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "サバイバルナイフ+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "サバイバルナイフ+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "トレンチナイフ+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "トレンチナイフ+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "クリス+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "クリス+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "ククリ+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "ククリ+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "野太刀+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "野太刀+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "つるはし+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "つるはし+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "パイク+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "パイク+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "レイピア+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "レイピア+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "短刀+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "短刀+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "脇差+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "脇差+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "ツヴァイヘンダー+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "ツヴァイヘンダー+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "ケペシュ+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "ケペシュ+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "サイフォス+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "サイフォス+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "中国刀+1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "中国刀+2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "折り畳み杖(折畳)" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "展開する" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "折り畳み杖を展開しました。" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "マナポーションを極限まで濃縮した液体です。摂取するとどのような効果を発揮するのか、よく分かっていません..." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "テクノマンサーの技術で強化したバネを使って折り畳めるように改造した可変式の杖です。使用すると杖を展開します。" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" -msgstr[0] "ファイアボールの杖" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" +msgstr[0] "折り畳み杖(展開)" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "折り畳む" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "折り畳み杖を折り畳みました。" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "ファイアボールを失敗せずに撃てる、古典的な杖です。熟練のケルビニストであれば、より効率的に呪文を詠唱できます。" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "テクノマンサーの技術で強化したバネを使って折り畳めるように改造した可変式の杖です。使用すると杖を折り畳みます。" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" -msgstr[0] "マジック・ミサイルの杖" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" +msgstr[0] "ヒートキューブ" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "トーチモード" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "マジック・ミサイルを失敗せずに撃てる、古典的な杖です。熟練の魔法使いであれば、より効率的に呪文を詠唱できます。" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "照明モードのボタンを押すと、立方体の上部に火がつきました。この火は熱を発していますが、他の物体を燃やすことはありません。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" -msgstr[0] "本(学習/ブラックドラゴン: 沼地の廃墟)" +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "拳大の滑らかな鋼鉄製の立方体です。側面に付いているボタンを押せば、機能が有効化されます。" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" +msgstr[0] "ヒートキューブ(トーチ)" + +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "火が消えました。" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" -"ブラックドラゴンについて詳しく書かれた書物です。ブラックドラゴンは最も邪悪な竜であり、一般的には沼地の廃墟に生息しています。酸に耐性があり、口から酸を吐きます。書物には、この竜の耐酸性の部位を使った様々な防具の作り方も解説されています。" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "ヒートキューブはトーチモードになっており、熱と光を発する燃えない炎が上がっています。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" -msgstr[0] "本(学習/はじめての錬金術)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" +msgstr[0] "マスターキー" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "酒以外の液体を使った魔法の技術を解説したペーパーバック本です。" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "金色のマスターキーです。使用すると施錠を解除できます。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" -msgstr[0] "本(学習/ソウルバインダーの死霊術ガイド)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" +msgstr[0] "消えずの松明" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "アンデッドの魂を人形に縛り付けて自然治癒力を再現する技術を解説した、大型のペーパーバック本です。" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "精緻な彫刻が施された木製の松明です。使用すると炎が燃え上がり、かなりの光量を確保できます。永遠に燃え尽きることがありません。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" -msgstr[0] "本(学習/図解魔科学)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" +msgstr[0] "無限の酒瓶" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "酒瓶の中には芳醇なウイスキーが大量に入っています!" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "酒はまだ充填されていません。" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" +msgstr[0] "魔法仕立て屋キット" + +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -"現代科学と魔法を組み合わせた技術について解説したペーパーバック本です。裏表紙には免責事項が載っています。「Cannith " -"Industries社は、本書に記載されている製品に関する誤作動や事故について一切責任を負いません」" +"数本の針、プラスチックの糸巻き、小さなハサミ、さらにプラスチックを溶かしたり繋いだりできる発熱器がセットになった、彫刻が施された高品質のキットです。使用すると、裁縫スキルを活用して衣服や防具の修復や補強を行えます。ゆっくりと糸を生成し続ける魔法のクモもセットに入っています。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" -msgstr[0] "本(学習/アスガルドと冥府の武器)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" +msgstr[0] "クモの巣箱" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "北欧のルーン文字のような書体で記された鮮やかな書物です。様々な神が使う多数の武器の作り方が、詳細なイラストで解説されています。" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "内部でクモが昼夜を問わず熱心に糸を紡いでいる、小さなガラス製の箱です。作られた糸は取り出して利用できます。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" -msgstr[0] "本(学習/毒物調理法)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" +msgstr[0] "マジカル読書灯(閉)" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "表紙にエンボス加工された大釜の絵が載っている革装本です。不思議な力で食べ物を浄化する方法が記されています。" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" +"光粉とマナ小回復ポーションの魔法で動き、少なくとも10年は読書に十分な光源として活躍する高級ランプです。カバーは閉じています。使用するとカバーを開けて周囲を照らします。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" -msgstr[0] "本(学習/伝説の金属)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" +msgstr[0] "マジカル読書灯" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "オリハルコンなどの魔法の金属の作り方を教えると謳う、表紙が真鍮で覆われた本です。錬金術に関する本とはいえ、内容は退屈です。" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" +"光粉とマナ小回復ポーションの魔法で動き、少なくとも10年は読書に十分な光源として活躍する高級ランプです。使用するとカバーを閉じて照明を隠します。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" -msgstr[0] "本(学習/魔獣の防具)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" +msgstr[0] "ハンドガン(M47A1テクノ-メデューサ)" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -"ドラゴンの吐く炎を押しとどめる盾の絵が表紙に書かれた、革装丁の本です。モンスターの皮革を加工して身体を保護する防具を作る様々な方法が掲載されています。" +"フィリップ&ロジャース社のM47メデューサに魔法のような改造を加えた、サバイバー向けの多口径対応リボルバーです。テクノマンサーはより小さい弾薬を使うことで信頼性を向上させていますが、薬室にフリーボアを設けているため、一般的なリボルバーほど正確ではありません。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" +msgstr[0] "ショットガン(12ga/ガンブレード)" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" +"ファルカタのような形状の湾曲したブレードの背には、とどめの一撃もしくは先制攻撃に用いる銃身の短いポンプアクション式ショットガンが取り付けられています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" -msgstr[0] "呪文書" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" +msgstr[0] "魔法の指輪(銅)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" -msgstr[0] "呪文書(クリスタライズ・マナ)" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "銅製の一般的な魔法の指輪です。" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "真の魔法使いは準備を欠かしません。将来のためにマナを結晶化して保存します!" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" +msgstr[0] "魔法の指輪" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" -msgstr[0] "呪文書(ダーク・サイト)" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "銀製の一般的な魔法の指輪です。" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "秘儀の前では暗闇も秘密を隠せません。完全な暗闇も見通せる視覚を手に入れましょう!" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "金製の一般的な魔法の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" -msgstr[0] "呪文書(インビジビリティ)" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "プラチナ製の一般的な魔法の指輪です。" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" +msgstr[0] "剣の指輪" + +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "自分から望まない限り、全身が光を反射しなくなります。完全な透明です!" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "短剣の装飾が彫られた華やかな銀製の指輪です。使用すると手元に投げナイフを召喚します。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" -msgstr[0] "呪文書(オブファスケーテッド・ボディ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" +msgstr[0] "ウナギの指輪" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "魔法のオーラが身体の周りの光を歪め、敵の攻撃を避けやすくなります。" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "とぐろを巻くウナギを象った銀の指輪です。着用すると1ターンで回避できる攻撃回数が1増加します。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" -msgstr[0] "呪文書(ホログラフィック・トランスポジション)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" +msgstr[0] "双頭ウナギの指輪" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" -msgstr[0] "呪文書(スマイト)" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "とぐろを巻く双頭のウナギを象った金の指輪です。着用すると1ターンで回避できる攻撃回数が2増加します。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" -msgstr[0] "呪文書(ライフ・コンバージョン)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" +msgstr[0] "筋力の指輪+1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" -msgstr[0] "呪文書(マインド・オーバー・ペイン)" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "着用すると少し強くなれる銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" -msgstr[0] "呪文書(サモン・ゾンビ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" +msgstr[0] "筋力の指輪+2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" -msgstr[0] "呪文書(サモン・スケルトン)" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "着用するとそこそこ強くなれる銀製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" -msgstr[0] "呪文書(サモン・フローティング・ディスク)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" +msgstr[0] "筋力の指輪+3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" -msgstr[0] "呪文書(サモン・ゾンビピューマ)" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "着用するとかなり強くなれる金製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" -msgstr[0] "呪文書(キュア・ライト・ウーンズ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" +msgstr[0] "筋力の指輪+4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" -msgstr[0] "呪文書(ペイン・スプリット)" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "着用すると驚くほど強くなれるプラチナ製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" -msgstr[0] "呪文書(ビシャス・テンタクル)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" +msgstr[0] "器用の指輪+1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" -msgstr[0] "呪文書(グロテスク・エンハンスメント)" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "着用すると少し機敏になれる銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" -msgstr[0] "呪文書(アシディック・スプレー)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" +msgstr[0] "器用の指輪+2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" -msgstr[0] "呪文書(フレッシュ・ポーチ)" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "着用するとそこそこ機敏になれる銀製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "呪文書(コンジャー・ボーンスピア)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" +msgstr[0] "器用の指輪+3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" -msgstr[0] "呪文書(メガブラスト)" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "着用するとかなり機敏になれる金製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "呪文書(マジカル・ライト)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" +msgstr[0] "器用の指輪+4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" -msgstr[0] "呪文書(ブラインディング・フラッシュ)" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "着用すると驚くほど機敏になれるプラチナ製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "呪文書(エーテル・グラスプ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" +msgstr[0] "知性の指輪+1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" -msgstr[0] "呪文書(オーラ・オブ・プロテクション)" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "着用すると少し賢くなれる銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "呪文書(ベジテイティブ・グラスプ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" +msgstr[0] "知性の指輪+2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" -msgstr[0] "呪文書(ルート・ストライク)" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "着用するとそこそこ賢くなれる銀製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "呪文書(ウッデン・シャフト)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" +msgstr[0] "知性の指輪+3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" -msgstr[0] "呪文書(ネイチャーズ・ボウ)" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "着用するとかなり賢くなれる金製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "呪文書(ネイチャーズ・トランス)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" +msgstr[0] "知性の指輪+4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" -msgstr[0] "呪文書(バグ・オブ・キャッツ)" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "着用すると驚くほど賢くなれるプラチナ製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "呪文書(ストーンフィスト)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" +msgstr[0] "感覚の指輪+1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" -msgstr[0] "呪文書(サイズミック・ストンプ)" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "着用すると少し鋭くなれる銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "呪文書(ストーンズ・エンデュランス)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" +msgstr[0] "感覚の指輪+2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" -msgstr[0] "呪文書(シャードスプレー)" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "着用するとそこそこ鋭くなれる銀製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "呪文書(ピアシング・ボルト)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" +msgstr[0] "感覚の指輪+3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" -msgstr[0] "呪文書(シャードストーム)" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "着用するとかなり鋭くなれる金製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "呪文書(ロックボルト)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" +msgstr[0] "感覚の指輪+4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" -msgstr[0] "呪文書(ポイント・フレア)" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "着用すると驚くほど鋭くなれるプラチナ製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "呪文書(フィンガー・ファイアライター)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" +msgstr[0] "速度の指輪+3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" -msgstr[0] "呪文書(アイス・スパイク)" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "着用すると少し素早くなれる銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "呪文書(ファイアボール)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" +msgstr[0] "速度の指輪+5" + +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "着用するとそこそこ素早くなれる銀製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" -msgstr[0] "呪文書(コーン・オブ・コールド)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" +msgstr[0] "速度の指輪+7" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "呪文書(バーニング・ハンズ)" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "着用するとかなり素早くなれる金製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" -msgstr[0] "呪文書(フロスト・スプレー)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" +msgstr[0] "速度の指輪+10" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "呪文書(チリング・タッチ)" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "着用すると驚くほど素早くなれるプラチナ製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" -msgstr[0] "呪文書(グライド・オン・アイス)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" +msgstr[0] "防御の指輪+2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" -msgstr[0] "呪文書(ホワイト・ブラスト)" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "着用するとダメージを少し軽減する銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "呪文書(アイス・シールド)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" +msgstr[0] "防御の指輪+4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "呪文書(フロスト・アーマー)" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "着用するとダメージをそこそこ軽減する銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" -msgstr[0] "呪文書(マジック・ミサイル)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" +msgstr[0] "防御の指輪+6" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "呪文書(フェイズ・ドア)" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "着用するとダメージをかなり軽減する銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "呪文書(グラビティ・ウェル)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" +msgstr[0] "防御の指輪+8" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" -msgstr[0] "呪文書(マナ・ブラスト)" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "着用するとダメージを驚くほど軽減する銅製の指輪です。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "呪文書(マナ・ボルト)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" +msgstr[0] "魔法硬貨" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "呪文書(ヘイスト)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" +msgstr[0] "魔法硬貨(ロングソード)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" -msgstr[0] "呪文書(マナ・ビーム)" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいロングソードになりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "呪文書(エスケープ)" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはロングソードが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "呪文書(キャッツ・グレース)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" +msgstr[0] "魔法硬貨(アーミングソード)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" -msgstr[0] "呪文書(イーグルズ・サイト)" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいアーミングソードになりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" -msgstr[0] "呪文書(オーガズ・ストレングス)" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはアーミングソードが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" -msgstr[0] "呪文書(フォックセズ・カンニング)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" +msgstr[0] "魔法硬貨(ブロードソード)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" -msgstr[0] "呪文書(ジョルト)" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいブロードソードになりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" -msgstr[0] "呪文書(ライトニング・ボルト)" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはブロードソードが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" -msgstr[0] "呪文書(ウィンドストライク)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" +msgstr[0] "魔法硬貨(バトルアックス)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" -msgstr[0] "呪文書(ウィンドランニング)" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいバトルアックスになりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" -msgstr[0] "呪文書(コール・ストームハンマー)" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはバトルアックスが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" -msgstr[0] "呪文書(ブレス)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" +msgstr[0] "魔法硬貨(パイク)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" -msgstr[0] "呪文書(ホーリー・ブレード)" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいパイクになりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" -msgstr[0] "呪文書(スピリチュアル・アーマー)" +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはパイクが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" -msgstr[0] "呪文書(ランプ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" +msgstr[0] "魔法硬貨(メイス)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" -msgstr[0] "呪文書(マナトリシティ)" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいメイスになりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" -msgstr[0] "呪文書(テイズ)" +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはメイスが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" -msgstr[0] "呪文書(レッサー・クアンタム・トンネル)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" +msgstr[0] "魔法硬貨(クォータースタッフ)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" -msgstr[0] "呪文書(シナプティック・スティミュレーション)" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいクォータースタッフになりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" -msgstr[0] "呪文書(レイズ)" +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはクォータースタッフが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" -msgstr[0] "呪文書(アニメイテッド・ブレード)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" +msgstr[0] "魔法硬貨(ハンマー)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" -msgstr[0] "呪文書(ミラー・イメージ)" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいハンマーになりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" -msgstr[0] "呪文書(ライトニング・ブラスト)" +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはハンマーが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" -msgstr[0] "呪文書(ネクロティック・ゲイズ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" +msgstr[0] "魔法硬貨(ドライバーセット)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" -msgstr[0] "呪文書(ピュリフィケーション・シード)" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいドライバーセットになりました!" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." -msgstr "浄水効果を持つ種が大地から贈られます。レベルが高いほど得られる種の数が増加します。" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはドライバーセットが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" -msgstr[0] "呪文書(オプティカル・スニーズ・ビーム)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" +msgstr[0] "魔法硬貨(工具箱)" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "体内のバッテリーを過充電させて、顔から半指向性のビームを発射します。" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" -msgstr[0] "呪文書(ラヴァ・ボム)" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しい工具箱になりました!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" -msgstr[0] "呪文書(アシッド・レジスタンス)" +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨には工具箱が描かれています。" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." -msgstr "透明な保護膜を作って酸から身体を守る呪文です。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" +msgstr[0] "魔法硬貨(バール)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" -msgstr[0] "呪文書(ライトニング・ストーム)" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "裏面に刻まれた呪文を唱えると、硬貨は急速に変化し、真新しいバールになりました!" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." -msgstr "ストームシェイパー達が「ライトニング・ブラスト」と呼んでいる呪文を、より多くのマナを込めることで更に強化した巻物です。" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "裏面に刻まれた呪文を読み上げると表面に描かれた物に変化する、大きな銀貨です。この硬貨にはバールが描かれています。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" -msgstr[0] "呪文書(サクリフィシャル・リグロース)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" -msgstr[0] "呪文書(サクリフィシャル・ヒーリング)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" -msgstr[0] "呪文書(ストーンスキン)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "呪文書(ピラー・オブ・ストーン)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" -msgstr[0] "呪文書(パラリティック・ダート)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" -msgstr[0] "呪文書(ヴィセラル・プロジェクション)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" -msgstr[0] "呪文書(コアグラント・ウィーヴ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "呪文書(イオニゼーション)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" -msgstr[0] "呪文書(イグニス・ファトゥス)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" +msgstr[0] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" -msgstr[0] "呪文書(ウォール・オブ・フォグ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" +msgstr[0] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" -msgstr[0] "呪文書(テクノマンサーのC:DDAデバッグガイド)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" +msgstr[0] "食肉解体キット+1" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "static std::string description( spell sp ) const;" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" +msgstr[0] "食肉解体キット+2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" -msgstr[0] "呪文書(はじめての魔法)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" +msgstr[0] "セスタス+1" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "呪文書というよりもパンフレットに見えますが、少なくとも1つは興味深い呪文が載っているようです。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" +msgstr[0] "セスタス+2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" -msgstr[0] "呪文書(バックパッカー用魔法ガイド)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" +msgstr[0] "炎の拳" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "バックパッカーとして活動する際の持ち物、ではなく呪文を解説したガイド本のようです。少し嵩張りますが、役には立ちます。" +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." +msgstr "" +"拳を覆って打撃力を高める、鋼鉄製の武具です。着用者の手を保護するために、裏面には頑丈なパッドが入っています。敵のみにダメージを与える暗黒の炎を放つ魔法がかかっています。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" -msgstr[0] "呪文書(異端者のための炎術)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" +msgstr[0] "炎の拳+1" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "焼け残った本の中には、ものを燃やし尽くす様々な方法が書かれています。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" +msgstr[0] "炎の拳+2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" -msgstr[0] "呪文書(魔法の諸要素に関する一考察)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" +msgstr[0] "打撃の籠手" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "様々な呪文を示す複雑な図形、儀式、身振りなどを詳述した論文です。" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." +msgstr "魔術的な紋様で覆われた金属製の大きな籠手です。驚くほど強力な打撃攻撃を繰り出せます。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" -msgstr[0] "呪文書(聖職者入門)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" +msgstr[0] "ショットガン(12ga/ショットセスタス)" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "文章のほとんどが宗教的なものですが、治癒に関する興味深い記述も見られます。" +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." +msgstr "" +"金属製のセスタスに、銃身を短く切断した二連式ショットガンが取り付けられています。反撃を吸収する銃床がないため、発射にはある程度の筋力が必要です。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" -msgstr[0] "呪文書(聖騎士現代呪文集)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" +msgstr[0] "魔法の杖" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "「現代」というタイトルですが、内容は中世英語で書かれています。少しあやふやな部分もありますが、ほとんどの単語は十分理解できます。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" +msgstr[0] "魔法の杖(使い捨て)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" -msgstr[0] "呪文書(永遠なる冬の支配)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" +msgstr[0] "下級杖(マジック・ミサイル)" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "氷で作られたかのような華奢な本です。触ると寒さすら感じます。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。マジック・ミサイルを詠唱する機能をもっています。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" -msgstr[0] "呪文書(来たるべき嵐の書)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" +msgstr[0] "中級杖(マジック・ミサイル)" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." -msgstr "雷雲と交差する稲妻が表紙に浮き彫りで描かれた大きな書物です。触れるとピリピリとした刺激を感じます。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" +msgstr[0] "上級杖(マジック・ミサイル)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" -msgstr[0] "呪文書(名もなき呪文書)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" +msgstr[0] "下級杖(ファイアボール)" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "魔法を覚えたての初心者によって書かれた、呪文などが載っている小さな本です。" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。ファイアボールを詠唱する機能をもっています。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" -msgstr[0] "呪文書(光と偽りについて)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" +msgstr[0] "中級杖(ファイアボール)" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "小さな白い本です。周囲の光をわずかに増幅させています。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" +msgstr[0] "上級杖(ファイアボール)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" -msgstr[0] "呪文書(肉の書)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" +msgstr[0] "下級杖(マナ・ビーム)" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." -msgstr "小さな書物です。表紙が鞣した人間の皮膚で覆われているように見えます。" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。マナ・ビームを詠唱する機能をもっています。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" -msgstr[0] "呪文書(木々の書)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" +msgstr[0] "中級杖(マナ・ビーム)" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "表紙が樹皮で覆われた書物です。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" +msgstr[0] "上級杖(マナ・ビーム)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" -msgstr[0] "呪文書(エネルギー源としてのマナの効用)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" +msgstr[0] "下級杖(ポイント・フレア)" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "体内のマナを使って身体の回復を図る様々な呪文について詳しく書かれています。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." +msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。ポイント・フレアを詠唱する機能をもっています。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" -msgstr[0] "呪文書(魔法戦士の書)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" +msgstr[0] "中級杖(ポイント・フレア)" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" -msgstr "まさに魔法といった感じの呪文が多く書かれた、魔法戦士が戦闘で使う呪文について記した書物です。良い本を手に入れましたね!" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" +msgstr[0] "上級杖(ポイント・フレア)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" -msgstr[0] "呪文書(虚ろなる大地の書)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" +msgstr[0] "下級杖(マナ・ビーム)" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "この分厚く埃っぽい魔法書は、何と言うか、とにかく、埃っぽいです。大地の持つ力に関して記されています。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." +msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。ホワイト・ブラストを詠唱する機能をもっています。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" -msgstr[0] "呪文書(魔法の動作)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" +msgstr[0] "下級杖(ホワイト・ブラスト)" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" -"ほとんどまったく存在しなていないように見えるものの97%の確率で本当に存在していると言える小さく軽い書物です。運動や動作に注目した魔法使いの呪文が記されています。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "上級杖(ホワイト・ブラスト)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" -msgstr[0] "呪文書(汚れた巻物)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" +msgstr[0] "下級杖(コーン・オブ・コールド)" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." -msgstr "" -"新しい呪文を開発しようとしたものの、途中でマグカップに入ったコーヒーをこぼしてしまい怒りのあまりくしゃくしゃにされたように見える巻物です。確実に呪文は覚えられそうですが、素晴らしい効果かどうかは分かりません。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." +msgstr "マナクリスタルを嵌め込むソケットが付いた、細長い木製の杖です。コーン・オブ・コールドを詠唱する機能をもっています。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" -msgstr[0] "呪文書(サルでもわかる死霊召喚)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" +msgstr[0] "中級杖(コーン・オブ・コールド)" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "使用者の命に従い戦う死霊を召喚する呪文について詳しく書かれた本です。召喚した死霊はしばらくすると跡形もなく消えてしまうそうです。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" +msgstr[0] "上級杖(コーン・オブ・コールド)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" -msgstr[0] "呪文書(テクノマンシーの基礎)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" +msgstr[0] "下級杖(マジック・ミサイル/使い捨て)" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "様々な形態の物質やエネルギーを操作して力を与える呪文について解説された、分厚い教本です。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." +msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとマジック・ミサイルを詠唱できます。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" -msgstr[0] "呪文書(バカでも分かるテクノマンシー)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" +msgstr[0] "中級杖(マジック・ミサイル/使い捨て)" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." -msgstr "テクノマンシーの分野に明るくない人に向けて書かれた、非常に基本的な呪文をカラフルな図や漫画で解説する教本です。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" +msgstr[0] "上級杖(マジック・ミサイル/使い捨て)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" -msgstr[0] "呪文書(テクノマンシーと電磁スペクトル)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" +msgstr[0] "下級杖(ファイアボール/使い捨て)" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "魔法と電磁波の融合に関する情報がびっしりと載っている、研究所の参考資料です。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." +msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとファイアボールを詠唱できます。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" -msgstr[0] "呪文書(地理空間体系: 線形性の嘘)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" +msgstr[0] "中級杖(ファイアボール/使い捨て)" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" -"時間と空間がどれほど不安定で非ユークリッド的であるかを非常に詳しく解説した書物です。更には、時空が互換的な12の異なる座標系を持っているとする、非常に理解が困難な内容も記されています。専門用語が多分に含まれていますが、熱心に読み込めばポータルに関する呪文をいくつか習得できそうです。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" +msgstr[0] "上級杖(ファイアボール/使い捨て)" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" -msgstr[0] "呪文書(人類超越)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" +msgstr[0] "下級杖(マナ・ビーム/使い捨て)" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." -msgstr "" -"人間は自己を改善しようとする唯一の生物です。この論文にはより恒久的な解決策の発見を目指して、一時的に様々な能力を高める様々な呪文についての考察が書かれています。" - -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" -msgstr[0] "浄化の大釜" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." +msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとマナ・ビームを詠唱できます。" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" -"デーモンスパイダーの外骨格で作られた漆黒の大釜です。16L分の食べ物を投入でき、毒を消す効果を持っています。毒の浄化には他の道具が必要な場合もあります。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" +msgstr[0] "中級杖(マナ・ビーム/使い捨て)" -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" -"魔法の金属を溶かして加工しやすい鋳塊にするための、携帯できる高性能な炉です。デーモンスパイダーのキチンを使って魔術的な強化が施されています。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" +msgstr[0] "上級杖(マナ・ビーム/使い捨て)" -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" -msgstr[0] "耐火モルタル" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" +msgstr[0] "下級杖(ポイント・フレア/使い捨て)" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "いつでも建築に使えるよう調整された、ドラゴンの炎の温度にも耐えるモルタルです。錬金術士が扱っています。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." +msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとポイント・フレアを詠唱できます。" -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "装甲板(ブレイ)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" +msgstr[0] "中級杖(ポイント・フレア/使い捨て)" -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" -msgstr[0] "グレートクラブ" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" +msgstr[0] "上級杖(ポイント・フレア/使い捨て)" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" +msgstr[0] "下級杖(ホワイト・ブラスト/使い捨て)" + +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." -msgstr "端に大きな持ち手が付いた、節くれだった頑丈な棍棒です。非常に重いですが、力の強い者が持てばとても効果的な武器になります。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." +msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとホワイト・ブラストを詠唱できます。" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" -msgstr[0] "ウッドトライデント" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" +msgstr[0] "中級杖(ホワイト・ブラスト/使い捨て)" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" -"先端に鍛造した鋼製のフォークを取り付けた、木製の武器です。近接武器の他にも投擲して敵に突き刺すこともでき、上手く扱えば敵の武装解除も可能です。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" +msgstr[0] "上級杖(ホワイト・ブラスト/使い捨て)" -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" -msgstr[0] "棘付きジャベリン" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" +msgstr[0] "下級杖(コーン・オブ・コールド/使い捨て)" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "投擲精度を高める矢羽がついた、長さ約90cmの武器です。先端には邪悪な見た目の棘が複数付いており、命中すれば酷い出血を引き起こします。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." +msgstr "マナクリスタルが埋め込まれた細長い木製の杖です。この杖を使用するとコーン・オブ・コールドを詠唱できます。" -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "棘付きジャベリンを発射する疑似アイテムです。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" +msgstr[0] "中級杖(コーン・オブ・コールド/使い捨て)" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" +msgstr[0] "上級杖(コーン・オブ・コールド/使い捨て)" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "折畳フレーム(オリハルコン)" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "オリハルコン製パイプで作られた折り畳み式のフレームです。アルミニウムほど軽くはありませんが、かなり頑丈です。" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "フレーム(オリハルコン)" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "オリハルコン製のフレームです。鋼鉄よりもはるかに頑丈ですが、価格も桁違いです。" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "装甲板(ブレイ)" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "デーモンスパイダー" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "デーモンスパイダー(幼体)" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -208609,7 +208810,7 @@ msgstr "" "既に小型犬ほどのサイズですが、これでも非常に若いデーモンスパイダーです。全身が赤いためデーモンと呼ばれています。こんな化け物を大変動以前には見た事がありません。非常に素早く動き、大きな牙からは毒が滴っています。" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -208618,13 +208819,13 @@ msgid "" msgstr "" "このクモは車と同じサイズです。巨大な複眼は、大気中の光を吸収しているかのような漆黒です。小豆色の身体からは複数の凶悪な牙が生えており、そこから黒い液体が滴り落ちて地面を焼いているようです。" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "女王デーモンスパイダー" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -208633,25 +208834,25 @@ msgid "" msgstr "" "同じ場所に居たいとは到底思えない、バンと同じくらいのサイズがある巨大なクモです。腹部は大きく膨れ上がっており、ほとんど動きません。キチン質の牙の周囲では魔力がパチパチと音を立てており、その複眼には邪悪な知性が宿っています。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "威圧感" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "強い威圧感" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "圧倒的な威圧感" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "ブラックドラゴン(幼体)" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " @@ -208659,13 +208860,13 @@ msgid "" msgstr "" "生後5年未満の小さな黒いドラゴンです。鱗に艶があり、頭部からは小さな角が覗いています。非常に若い個体であるにもかかわらず、その瞳は嗜虐性に満ちてきらめいています。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "ブラックドラゴン(亜成体)" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -208675,77 +208876,77 @@ msgid "" msgstr "" "一生の初期段階の半ばに差し掛かった黒いドラゴンです。目は窪み始め、湾曲し節くれだった角の先端は黒っぽくなってきました。見れば分かりますが、この生物の根源は邪悪です。完全な成体ではありませんが、雄牛ほどのサイズがあります。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "ブラックドラゴン(成体)" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "緑色に輝くくぼんだ目と黒い鱗をもった怪物です。頭部は骨張っており、短剣のような牙が並ぶ口元からは酸が滴っています。" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "ゴブリンスリンガー" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "ゴブリンの族長" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "ゴーレム(粘土)" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "粘土で作られた大きな人型のゴーレムです。バランスが取れておらず、壊れやすいようです。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "ゴーレム(プラスチック)" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -208754,36 +208955,107 @@ msgid "" msgstr "" "伝統的なゴーレムの作成は、道具と緻密な職人技を駆使してなお数か月かかります。石のゴーレムは魔法の装置であると同時に芸術品なのです。ところが3Dプリント技術の浸透によってゴーレム作成は趣味にできるほど気軽になり、プラスチック製ゴーレムの人気は急上昇しています。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "ゴーレム(石)" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "石で作られた大きな人型のゴーレムです。その拳の形はまるでロケットのようです。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "ゴーレム(鉄)" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "鉄で作られた大きな人型のゴーレムです。口から何らかの有毒ガスが染み出しています。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "リザードフォークの戦士" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -208795,29 +209067,29 @@ msgid "" msgstr "" "筋肉質の尾をもち、皮膚は濃い緑灰色の鱗で覆われた、背が高く力が強い人型の爬虫類です。部族として生活し、洞窟や水辺、特にドラゴンやウィルムが生息する地域でよく見かけます。別段敵対的ではありませんが、部外者には容赦せず、挑発するのは非常に危険です。一般的に立派な棍棒を持って戦うことを好みますが、鋭い歯と爪も強力な武器になります。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "リザードフォークの狩人" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "リザードフォークの狩人は同種の戦士よりも小柄ですが、危険性は同程度であり、しなやかな動きと槍の腕を駆使します。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "リザードフォークの狩人は棘付きの槍を投げました!" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "リザードフォークの呪術師" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -208828,13 +209100,13 @@ msgid "" msgstr "" "リザードフォークは非常に知的で狡猾な種族ですが、魔法の力を持っている個体は非常に稀です。呪術師は幼少期に選び出されるため、魔力の有無は若い部族民の命運を左右します。呪術師が受けなければならない儀式についてはあまり知られていませんが、生き残れるものはほとんどいないと言われています。呪術師はドルイドに近い存在で、自然の力で敵と戦い、必要に応じて仲間を召喚します。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "リザードフォークの族長" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -208844,59 +209116,59 @@ msgid "" msgstr "" "野心をもったリザードフォークは非常に珍しい存在です。非常に強い野心を示した者だけが族長の地位を獲得しますが、この行動は外部の者から見れば過度な残忍性や暴力性と誤解されがちです。族長はその部族で最大かつ最強であり、その歯と爪の強さを褒めたたえる獰猛なトライデントを贈られます。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "ワニ" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "いずれは呪術師になるはずだったリザードフォークは、人型の特徴が退化し、非常に危険な巨大ワニと化しています。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "オウルベア" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -"狂った魔法使いか何かによる遺伝子実験の産物としか思えない、恐ろしい怪物です。地下迷宮はもちろんのこと、気候の温暖な森林の奥深くにも生息しています。貪欲かつ攻撃的なハンターであり、常に悪意を振りまいています。非常に好戦的であり、獲物が死ぬまで戦い続けます。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "ブラックプディング" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "べたつく黒いドロドロが震えながら動き回っています。接地面からは何かが焼けるような音がかすかに聞こえてきます。" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "ブラックプディングの酸が%3$sを焼きました!" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "単眼魔獣" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -208906,23 +209178,23 @@ msgstr "" "闇の中からこちらを覗く邪悪な単眼は、奇妙な知性と不穏な悪意にきらめいています。瞳からはピンク色の液体が染み出し、全身が鋭く尖った三角形の青黒い装甲で覆われています。" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "単眼魔獣は%3$sを凝視しました!" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "オウルベア(幼体)" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "ブレイ" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -208932,199 +209204,241 @@ msgid "" msgstr "" "ブレイ(または陸鮫)とは、魔術師が実験的に生み出したカメとアルマジロの交配種に、更に悪魔の膿漿を注入して作りだされた怪物です。温暖な環境でウマや人間、その他の大抵の生物の肉を食べて暮らしています。頭が悪く、短気で、いつも腹を空かせており、怖いもの知らずな性格です。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "ウィルオウィスプ" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "黄色や白色、緑色、青色などに光る精霊です。霧の濃い湿地帯や沼地を好み、度々ランタンの明かりと間違えられます。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "トロール" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "緑色の肌をもつ、奇怪な人型生物です。分厚い皮膚と高い自然治癒力で知られています。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "スタージ" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "巨大なコウモリと蚊を掛け合わせたような姿の、恐ろしい飛行生物です。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "シュリーカー" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "敵を追い払うために鋭い金切り声を発する、人間ほどのサイズのキノコです。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "レムレー" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "どことなく人間に似た頭部と胴体をもつ、溶けた肉の塊です。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "祝福あれ。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "この土地の呪いを一掃しなければ。あなたは私たちの使命を援助しに来たのか、それとも妨害に来たのか?" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "こんにちは、。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "祝福あれ。平穏を妨げるものは一掃しよう。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "他の場所へ行く前に、この場所を清めなければ。" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "ああ、またお前か。" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "あ?*モゴモゴ*...誰だ?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "忙しいのだ、何か用か?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "我が塔と我が研究を置いてか?そうはいかない。" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "ああ、また会ったな。" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "君も力を求めているのか?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "やあ、やあ...*電気が爆ぜる音*...美しいだろう?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "ここを去る前に、まずは更なる力を手に入れたい。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "魔法使いテスト" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "不思議な術を使ってデバッグをしているところだ。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "熟練魔法使い" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "私は古の魔法使いだ。未熟者は帰れ!" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "テクノマンシー学者" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "更なる力を求めているんだ。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "治療師" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "この土地の呪いを清めているんだ。" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "エンシェント・ワン" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "古の魔法使いです。大変動が起きるまでは世間から隔絶された暮らしをしており、自身の計画に従って動き、他人のことはほとんど気にしません。" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "灰色の炎" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "大変動に取り憑かれた人々の集団です。この世界の呪いを解くことを目指しており、決して目標達成を諦めません。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "呪文書を見つける" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "どこに置いたんだったか..." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "「魔法戦士の書」という本を失くしてしまったようだ。きっとろくでもない弟子が盗んだに違いない。探してきたまえ。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "...何?あぁまだ居たのか。本を探しに行きたまえ。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "ろくでもない弟子に似た役立たずめ..." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -209133,222 +209447,222 @@ msgid "" msgstr "" "ぜひともやらせて下さいお願いします、だと?ハッ。その弟子は、街を見て回ると言っていたような気がするから、そこから探すといい。本のタイトルは「魔法戦士の書」だ。タイトル程度なら自力で読めるだろう?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "私の本はどこだ?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "やっと来たか。ずいぶん待たされたな。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "バカバカしい!役立たずめ!時間の無駄だ!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "うぐぐ、役立たずが集まってくる呪いでも掛けられたか?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "CBM: 蓄電装置を見つける" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "もっと力を...もっと、力を...もっとぉ、力をぉ!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "もっと力が欲しいんだ。蓄電装置のCBMを持ってきてくれ。お礼に本をあげよう。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "ちゃんと滅菌してあるなら、どこで手に入れたものでも構わない。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "君、もっと力が欲しくはないのかね?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "電器店でなら見つかるかもしれない。もしくは、誰かの体内から取り出せばいい。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "見つかったか?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "完璧だ。更なる力...力..." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "もっと力を手に入れなければ。この停滞はマズいな。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "50体のゾンビを殺す" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "君も呼び声に応えるのか?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "この世界は混沌と死に塗れている。呪われしものを50体排除するんだ。手伝ってもらえないだろうか。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "祝福あれ。私も君の行動を観察し、ひとかどの人物なのか見極めるとしよう。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "呪いを清めるつもりがないのか?君も呪いの一部なんだな..." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "死者たちは村や街にいるが、中心部に近づくほど群れの数は多い。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "祝福あれ。君は類まれな者の一人だ。共に意義深い行動を続けよう。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "欺瞞は呪われた領域のものだ。君には失望したよ。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "君にとって呪いが強大すぎたのか?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "150体のゾンビを殺す" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "君が類まれな人間であることが証明された。もう一度立ち上がってみないか?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "浄化を続ける必要がある。呪われしものをこの土地から更に150体排除すれば、君の偉大さが祝福されるだろう。" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." -msgstr "祝福あれ。君は数少ない真の志をもった人だ。" +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." +msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "そうか。いつかきっと、戻ってきてくれると信じているよ。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "死者たちは地下深くの隠された場所に群れている。探し出して、倒すんだ。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "祝福あれ。君はこの大義を果たすための貴重な人材だ。私たちの救世主になのかもしれないな。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "せっかくここまで来たのに。台無しだ。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "この土地の呪いは、それを清めようとしないものに蔓延するんだ。" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "メイガス" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "テクノロジスト" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "ヒーラー" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "動けと命令しても地球は耳を貸しません。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "穴が更に深くなりました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "たくさんのゴミが穴から飛び出しました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "通行の邪魔にならないよう地球が移動しました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "石がすり潰されて砂になりました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "岩は砕けて粉々になりました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "空気中のほこりがすべて落下しました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "菌類が死滅しました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "地面が揺れ、異様に滑らかな石壁が飛び出しました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "枯れ木が再生しました。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "枯れ草が息を吹き返しました。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "魔法使い" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "魔法の歴史と同じくらい古くから存在する魔法使いです。意志によって宇宙のエネルギーを実体化させる技術に重点を置いています。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "アニミスト" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -209357,12 +209671,12 @@ msgid "" msgstr "" "アニミストは、調和と自然界との繋がりに焦点を当てて様々な古い方法を組み合わせた、比較的新しい魔法の流派です。調和と言ってもアニミストが無抵抗という訳ではありません。自然界は残酷な世界です。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "ケルビニスト" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " @@ -209370,12 +209684,12 @@ msgid "" msgstr "" "偉大なる大魔術師、ケルビン卿の門下生です。ケルビニストは気温の操作と制御に関する魔法を重点的に学び、強力な熱球の爆発や骨まで凍る冷気を操ります。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "ストームシェイパー" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " @@ -209383,24 +209697,24 @@ msgid "" msgstr "" "ストームシェイパーは、古代の瞑想術を使って修行し、惑星の姿かたちを決めている風や潮の流れと調和します。これらの力と深く結びついた魔法は、強力な変化をもたらします。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "テクノマンサー" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "テクノマンサーは宇宙の本質に関する高度な知識と秘術を融合させた、現代の魔術師です。魔術を強化するために科学を利用し、その逆も当然行います。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "アースシェイパー" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -209409,12 +209723,12 @@ msgid "" msgstr "" "アースシェイパーは精神を地球の岩石や鉱物と深く結びつけ、その秘術を会得します。熟練のアースシェイパーは、呪文を石のように恒久的に扱い、時間を地質時代的感覚で計ります。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "バイオマンサー" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -209423,12 +209737,12 @@ msgid "" msgstr "" "バイオマンサーは肉体の操作、そして自己や他の生物、更には死んだ肉体の同化を重視しています。大抵の魔術師はこの一派の能力を下品で不快なものだと考えていますが、その潜在的な強さに疑問を抱く者は誰もいません。どんな状況にも適応できる力です。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "ドルイド" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -209437,61 +209751,61 @@ msgstr "" "ドルイドは、自然界での忠誠の掟と転生、特に植物の死と復活に重点を置いています。強力なドルイドは人類と並ぶほどの世界への影響力を持っています。" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "マナタッチ" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "内なるレイラインからマナがあふれ出しています。" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "内側から力が爆ぜるように湧いてきます。" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "形而上学的な存在へと昇り詰めました。" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "形而上学的な存在へと昇り詰めました。" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "魔法はあなたの中にあります。魔法はあなたです。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "マナ結晶化" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "内なるレイラインの制御がしやすくなり、結晶化したマナを自力で生成できるようになりました。" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "両手がマナのエネルギーによって光っています。指先からボルトを発射できます。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "巧みな詠唱" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " @@ -209499,42 +209813,42 @@ msgid "" msgstr "" "内なるレイラインが腕によって妨げられなくなったため、呪文を詠唱する際に腕を動かす必要はありません。スペルの失敗確率が腕の動作制限に影響されなくなりました。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "無音詠唱" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "もはや声によって世界に自分の意思を表明する必要もありません。スペルの失敗確率が口の動作制限に影響されなくなりました。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "柔弱" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "超自然の力によって身体が弱っています。筋力-2" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "マナの輝き" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "余ったマナを光や熱として放出するため、弱い光を発しています。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "マナ・サイフォン" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -209543,274 +209857,294 @@ msgstr "マナ・サイフォン系列の突然変異の呪文効果です。デ #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "レイラインが暴力によって興奮します。敵に近接攻撃が命中する度に、一定確率でマナが回復します。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "マナ吸収" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "マナの旋風" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "マナ貯蔵力上昇(レベル1)" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "体内に溜めておけるマナの量が平均より多少高くなっています。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "マナ貯蔵力上昇(レベル2)" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "体内に溜めておけるマナの量が平均より高くなっています。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "マナ貯蔵力上昇(レベル3)" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "体内に溜めておけるマナの量が平均より大幅に高くなっています。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "マナ貯蔵力低下(レベル1)" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "体内に溜めておけるマナの量が平均より多少低くなっています。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "マナ貯蔵力低下(レベル2)" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "体内に溜めておけるマナの量が平均より低くなっています。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "マナ貯蔵力低下(レベル3)" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "体内に溜めておけるマナの量が平均より大幅に低くなっています。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "マナ回復力上昇(レベル1)" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "マナの回復速度が通常より多少上昇します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "マナ回復力上昇(レベル2)" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "マナの回復速度が通常より上昇します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "マナ回復力上昇(レベル3)" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "マナの回復速度が通常より大幅に上昇します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "マナ回復力低下(レベル1)" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "マナの回復速度が通常より多少低下します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "マナ回復力低下(レベル2)" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "マナの回復速度が通常より低下します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "マナ回復力低下(レベル3)" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "マナの回復速度が通常より大幅に低下します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "マナ効率上昇(レベル1)" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "利用できるマナの量が体内に貯蔵している分より多少増加します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "マナ効率上昇(レベル2)" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "利用できるマナの量が体内に貯蔵している分より増加します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "マナ効率上昇(レベル3)" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "利用できるマナの量が体内に貯蔵している分より大幅に増加します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "マナ効率低下(レベル1)" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "利用できるマナの量が体内に貯蔵している分より低下します。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "マナ効率低下(レベル2)" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "マナ効率低下(レベル3)" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "デバッグ呪文(デバッグ専用)" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "デバッグ専用の呪文を最大レベルの状態で習得します。" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "高価な魔法の金属製のフレームです。この上に他の車両部品を設置できます。隣にフレームを更に取り付けて、車両のサイズを広げることも可能です。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "浮遊円盤" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "マナホイール" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "浮遊円盤の移動を司るエネルギーの塊です。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "フレーム(マナ)" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "純粋なマナで作られており、空中に浮かんでアイテムを運搬できます。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "マナ" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "マナ" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "このアイテムが見えている場合はバグが発生しています。" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "魔法のドア" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "[金属製の壁には、輪のような特徴的で複雑な紋様が描かれている]" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "魔法専門店" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "魔法専門店(屋上)" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "古書店" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "湿地" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "魔法の塔" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "魔法学校" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "ゴブリンの野営" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "変更 - 手動CBM移植" @@ -216017,6 +216351,10 @@ msgstr "切替/作動/調べる" msgid "Toggle safe fuel mod" msgstr "切替/自動停止モード" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "切替/自動起動モード" @@ -216209,10 +216547,6 @@ msgstr "隣接タイルにアイテムを落とす" msgid "View/Activate Bionics" msgstr "生体部品を表示/起動" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "突然変異を表示/起動" @@ -222241,10 +222575,9 @@ msgstr "生体部品" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" -"[%s] キー割当、 [%s] タブ切替、 " -"[%s] 切替/節約モード、 [%s] 切替/自動起動モード" #: src/bionics_ui.cpp #, c-format @@ -222311,6 +222644,10 @@ msgstr "オン" msgid "(incapacitated)" msgstr "(使用不可)" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "(節約ON)" @@ -223144,6 +223481,10 @@ msgstr "%sは手が塞がっていて着用できません。" msgid "Can't wear more than one %s!" msgstr "%sは一つしか着用できません!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -238835,7 +239176,12 @@ msgid "Test which group?" msgstr "どのグループをテストしますか?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -244808,8 +245154,14 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "エラー:エネルギー文字列が無効です。デフォルト設定NONE" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" -msgstr "エラー:ダメージタイプ文字列が無効です。デフォルト設定NONE" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" +msgstr "" #: src/magic.cpp #, c-format @@ -249963,11 +250315,12 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "%1$sは%2$sを地面に叩きつけました!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" -msgstr "ゾンビの蹴りは%1$sに%2$dのダメージを与えました..." +msgid "The %1$s kicks your %2$s for %3$d damage…" +msgstr "" #: src/monattack.cpp #, c-format @@ -254198,7 +254551,7 @@ msgstr "世界生成" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -261852,6 +262205,11 @@ msgstr "%sを使って植え付けるには寒過ぎます。" msgid "Your %s winks out of existence." msgstr "%sは消滅しました。" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -261993,6 +262351,16 @@ msgstr "%sのエンジンはくしゃみのような音を発しています。" msgid "Your %s is not fast enough to keep up with the %s" msgstr "%sの速度では%sと歩調が合いません。" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -262585,11 +262953,6 @@ msgstr "%sを慎重に折り畳み、持ち運べる状態にしました。" msgid "You let go of %s as you fold it." msgstr "掴んでいた%sを放して折り畳みました。" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "%s(折畳)" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/ko.po b/lang/po/ko.po index b0a92b9f2d2b..4d82f9e96ded 100644 --- a/lang/po/ko.po +++ b/lang/po/ko.po @@ -28,13 +28,13 @@ # JJ J , 2024 # Coolthulhu , 2024 # 김동현, 2024 -# Fruitybite, 2024 +# Fruitybite, 2025 # msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" -"Last-Translator: Fruitybite, 2024\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" +"Last-Translator: Fruitybite, 2025\n" "Language-Team: Korean (https://app.transifex.com/bn-team/teams/113585/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -8144,6 +8144,17 @@ msgstr "디버그 투시" msgid "You can see through everything!" msgstr "모든 것을 꿰뚫어봅니다!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "방사성 삼각형" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "지상에서 이 물품을 갖고 있을 때 매 15분마다 당신을 방사능에 중독시킵니다!" + #: data/json/effects.json msgid "Took Xanax" msgstr "자낙스 복용" @@ -11498,7 +11509,7 @@ msgstr "켜기" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "끄기" @@ -11946,75 +11957,91 @@ msgstr "탄창" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "탄약" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "무기" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "도구" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "기타 도구" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "진입 도구" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "작업 도구" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "요리 도구" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "화학 도구" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "농장 도구" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "설치형" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "전자제품" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "의류" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "식품" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "요리 재료" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "약물" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "서적" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "주문책" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "지도" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "개조부품" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "뮤타젠" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "바이오닉" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "차량부품" @@ -12028,51 +12055,89 @@ msgstr "차량부품" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "기타" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "연료" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "씨앗" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "화학 재료" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "배터리" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "예비 부품" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "고철" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "폐전자제품" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "직물" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "폐목재" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "폐플라스틱" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "폐세라믹" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "폐유리" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "귀중품" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "암석" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "흙" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "저장용기" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "아티팩트" +#: data/json/item_category.json +msgid "MAPS" +msgstr "지도" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "장비 물품" @@ -12817,12 +12882,12 @@ msgstr "물품: 시체" msgid "Destination for corpses" msgstr "시체를 모아놓는 곳입니다." -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "물품: 지도" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "지도를 모아놓는 곳입니다." @@ -12864,6 +12929,177 @@ msgid "" "action." msgstr "이 영역 내에 있는 즐겨찾기 설정된 물건들은 \"물품 정리\" 영역 행동 중에 무시됩니다." +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "물품: 기타 도구" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "기타 도구를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "물품: 진입 도구" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "진입 도구를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "물품: 작업 도구" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "작업 도구를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "물품: 요리 도구" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "요리 도구를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "물품: 화학 도구" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "화학 도구를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "물품: 농장 도구" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "농장 도구를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "물품: 설치형" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "설치 가능한 물품을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "물품: 전자제품" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "전자제품을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "물품: 요리 재료" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "요리 재료를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "물품: 고철" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "고철을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "물품: 폐전자제품" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "폐전자제품을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "물품: 폐직물" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "폐직물을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "물품: 폐목재" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "폐목재를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "물품: 폐플라스틱" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "폐플라스틱을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "물품: 폐세라믹" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "폐세라믹을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "물품: 폐유리" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "폐유리를 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "물품: 귀중품" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "귀중품을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "물품: 돌" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "돌과 광물을 모아놓는 곳입니다." + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "물품: 흙" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "흙을 모아놓는 곳입니다." + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "자동 줍기 금지" @@ -13393,7 +13629,7 @@ msgstr "" "\n" "지능 수치의 25%만큼 명중률이 상승하나, 민첩 수치의 25% 만큼 명중률이 감소함." -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "에스크리마" @@ -13432,7 +13668,7 @@ msgstr "" "\n" "명중률 +2." -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "펜싱" @@ -13475,7 +13711,7 @@ msgstr "" "민첩 수치의 50%만큼 피해를 추가적으로 방어함." #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "피오르 디 바탈리아" @@ -13669,7 +13905,7 @@ msgstr "" "체력 수치의 25%만큼 피해를 추가로 방어함.\n" "회피 기술 +1.0" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "크라브 마가" @@ -13810,7 +14046,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "중세 검술" @@ -13896,7 +14132,7 @@ msgstr "" "\n" "막아낸 공격의 피해량이 근력의 50%만큼 감소." -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "인술" @@ -14118,7 +14354,7 @@ msgstr "" "1턴 동안 지속." #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "실랏" @@ -15447,7 +15683,7 @@ msgid "Resin" msgstr "수지" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "찌그러진" @@ -15456,22 +15692,22 @@ msgid "gouged" msgstr "찍힌" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "살짝 긁힌" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "약간 잘라진" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "갈라진" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "조각난" @@ -15484,7 +15720,7 @@ msgid "bent" msgstr "구부러진" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "거의 박살난" @@ -15496,7 +15732,7 @@ msgstr "박살난" msgid "Biosilicified Chitin" msgstr "유기규소 키틴" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "깨진" @@ -15509,7 +15745,7 @@ msgid "Brass" msgstr "황동" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "긁힌" @@ -15527,7 +15763,7 @@ msgstr "카드보드" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "약간 찢긴" @@ -15536,12 +15772,12 @@ msgid "torn" msgstr "찢긴" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "갈기갈기 찢어진" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "누더기" @@ -15601,7 +15837,7 @@ msgstr "고기" msgid "bruised" msgstr "상처난" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "썰린" @@ -16023,7 +16259,7 @@ msgstr "완전자동" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -20702,12 +20938,12 @@ msgid "" msgstr "" "이제 당신의 의뢰인들은 수임료에 대해 불평하는 대신에, 당신의 뇌를 먹으려고 합니다. 하지만 어느 쪽이 더 나쁘다고 말하기 힘들군요." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "사제" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "사제" @@ -20736,18 +20972,18 @@ msgstr "" "대재앙이 닥쳤을 때, 당신은 교구의 신실한 신자들을 보호하기 위해 최선을 다했지만, 기도가 충분하지 않았나 봅니다. 신자들이 모두 " "죽었으니, 이제 자신을 지키려면 실존하는 뭔가를 찾는 게 좋을 겁니다." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "칸누시" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "칸누시" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20758,7 +20994,7 @@ msgstr "" "문드러진 시체가 나타난 지금보다 더 나은 것 같습니다." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20768,12 +21004,12 @@ msgstr "" "당신은 신토 신사에서 제사와 여러 신성한 업무를 맡은 관리인 중 하나였습니다. 당신 생각에는 신사에 망자의 영혼만 계시던 시절이, 썩어 " "문드러진 시체가 나타난 지금보다 더 나은 것 같습니다." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "이맘" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "무르치다" @@ -20802,18 +21038,18 @@ msgstr "" "당신은 대재앙이 닥치기 전 동네 모스크에 주로 머물렀습니다. 꾸란과 예언자의 말을 연구하고, 지역 사회의 신자들을 이끌었지요. 그때는 " "신자들이 질문의 해답을 찾아 당신을 찾아왔었는데, 지금은 허기의 해결을 위해 당신의 뇌를 찾아오는군요." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "랍비" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "랍비" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -20823,7 +21059,7 @@ msgstr "" "것 같습니다!" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -20832,12 +21068,12 @@ msgstr "" "대재앙이 찾아온 날, 당신은 어린양들과 함께 사원에서 찬송가를 부르고 있었습니다. 당신 생각에는 지금이 바로 구세주께서 오셔야 할 때인 " "것 같습니다!" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "구루" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "구루" @@ -20864,12 +21100,12 @@ msgstr "" "오랜 세월동안 전 세계를 돌아다니며 수 많은 지식과 지혜를 습득했습니다. 일반적으로 당신은 어떤 질문에도 답할 수 있었지만, 당신조차도 " "저 극히 굶주린 시체들에 대해선 확실한 답을 못내리겠네요." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "전도사" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "전도사" @@ -21722,15 +21958,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "소년 스케이터" +msgid "Skater Boy (Rollerblades)" +msgstr "스케이터 보이 (롤러블레이드)" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "소녀 스케이터" +msgid "Skater Girl (Rollerblades)" +msgstr "스케이터 걸 (롤러블레이드)" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -21738,7 +21974,7 @@ msgid "" "can't roll." msgstr "당신은 스케이트를 사랑합니다! 적어도 지금은 어른들이 스케이트 타면 안 되는 장소를 지정하진 않아서 좋네요." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -21746,6 +21982,34 @@ msgid "" "can't roll." msgstr "당신은 스케이트를 사랑합니다! 적어도 지금은 어른들이 스케이트 타면 안 되는 장소를 지정하진 않아서 좋네요." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "스케이터 보이 (스케이트보드)" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "스케이터 걸 (스케이트보드)" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -29265,7 +29529,6 @@ msgid "awl" msgstr "송곳" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "굽은 바늘" @@ -29381,7 +29644,6 @@ msgstr "탄약 분해" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "모루" @@ -29445,7 +29707,6 @@ msgid_plural "none" msgstr[0] "없음" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "뽁뽁이 포장지" @@ -29465,21 +29726,18 @@ msgid "Crunch!" msgstr "쨍그랑!" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "간이 침대" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "깔때기" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "간이 깔때기" @@ -29497,8 +29755,7 @@ msgid "microlab shifting hall" msgstr "소연구소 이동 시설" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "곰 덫" @@ -29530,13 +29787,11 @@ msgid "tripwire" msgstr "인계철선" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "급조된 경계 경보기" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "쇠뇌 덫" @@ -29577,7 +29832,6 @@ msgid "Swinnng!" msgstr "스위이이이잉!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "지뢰" @@ -29594,7 +29848,6 @@ msgid "buried land mine" msgstr "파묻힌 지뢰" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "텔레포트 패드" @@ -29638,7 +29891,6 @@ msgid "ledge" msgstr "허공" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "부비트랩" @@ -29649,14 +29901,12 @@ msgstr "유리 구덩이" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "가죽 깔때기" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "자작나무 깔때기" @@ -29667,7 +29917,6 @@ msgstr "아래로 향하는 깔때기" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "금속 깔때기" @@ -30031,7 +30280,8 @@ msgstr "폭우" msgid "Thunder Storm" msgstr "천둥치는 폭풍" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "번개치는 폭풍" @@ -30074,6 +30324,18 @@ msgstr "" "겉으로 보는 것보다 훨씬 무겁고, 단단한 큐브입니다. 큐브를 들여다보면 당신의 시야가 끌려들어가, 하늘에서 내려다보는 구도로 주변을 " "바라보게 됩니다." +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "방사성 삼각형" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "지상 지형에서 감히 이 물품을 품에 넣고 있는 자는 매 10분마다 방사능이 1~3만큼 누적됩니다." + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -30154,7 +30416,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "끼기기기긱!" @@ -30184,7 +30447,8 @@ msgstr "끼기기기긱!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "쨍그랑!" @@ -30533,7 +30797,6 @@ msgstr "옷을 세탁하는데 썼습니다. 전기가 들어오던 시절에요 #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "오븐" @@ -30643,8 +30906,9 @@ msgstr "건물의 전력망에 연결된 풍력발전용 터빈입니다." #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "꽝!" @@ -30892,7 +31156,7 @@ msgstr "전력망에 연결된 휴대용 음식 건조기. 음식을 보존하 #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "우지끈!" @@ -30920,7 +31184,7 @@ msgstr "우지끈!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "쿵." @@ -31041,7 +31305,6 @@ msgstr "냉장고를 켰습니다." #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "냉장고" @@ -31100,7 +31363,6 @@ msgstr "냉동고를 켰습니다." #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "냉동고" @@ -31425,7 +31687,7 @@ msgstr "경광등" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "쨍그랑!" @@ -31512,7 +31774,7 @@ msgstr "전력망에 연결된 전등 스위치입니다. 현재 꺼져있습니 #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -31539,7 +31801,7 @@ msgstr "쾅!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "쿵!" @@ -31711,7 +31973,7 @@ msgstr "돌로 만들어진 조각상." #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "쿵." @@ -32053,7 +32315,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "꽈지직!" @@ -32070,7 +32332,6 @@ msgstr "가열 및 조리를 위한 장작 난로입니다. 그냥 바닥에 장 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "화로" @@ -32082,7 +32343,6 @@ msgstr "다리 달린 높은 금속 접시로, 내용물들을 안전하게 불 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "간이 조리기구" @@ -32096,7 +32356,6 @@ msgstr "금속 깡통으로 만든, 급조한 소형 장작 난로입니다. 쪼 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "기름통 (200L)" @@ -32119,7 +32378,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "기름통 (100L)" @@ -32266,7 +32524,6 @@ msgstr "담수 수면에서 자라는 사랑스러운 꽃. 많은 동양 전통 #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "해바라기" @@ -33167,7 +33424,6 @@ msgstr "맑은 물을 제공하는 수도꼭지가 달린, 정수기로도 불 #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "정수기" @@ -33594,7 +33850,6 @@ msgstr "등받이 없는 의자" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "캠프 의자" @@ -33737,7 +33992,6 @@ msgstr "콰직" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "매트리스" @@ -33761,7 +34015,6 @@ msgstr "찌이이이익!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "솜털 매트리스" @@ -34306,9 +34559,21 @@ msgid "" " heavy things." msgstr "철로 만든 견고한 작업대. 크고 무거운 걸 만들기에 적합합니다." +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "로봇 작업대" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "가죽 방수포" @@ -34341,7 +34606,6 @@ msgstr "딸그락" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "섬유 직조망" @@ -34357,7 +34621,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "여행 테이블" @@ -34862,7 +35125,6 @@ msgstr "금속가공에 사용합니다." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "증류기" @@ -34876,7 +35138,6 @@ msgstr "액체 혼합물을 정제할 수 있도록 해줘 양조와 화학에 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "목탄 가마" @@ -34891,7 +35152,6 @@ msgstr "나무와 유기물을 무산소 환경에서 연소시켜 목탄으로 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "목탄 가마 (가득참)" @@ -34955,7 +35215,6 @@ msgstr "더 나은 보존성과 맛을 위해 음식을 훈연하는데 쓰이 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "강철 훈제 선반" @@ -34992,7 +35251,6 @@ msgstr "점토로 도자기와 벽돌을 굽는데 쓰이는 가마입니다." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "발판 사다리" @@ -36520,7 +36778,7 @@ msgstr "천장에 아직 작동 중인 전등이 달려있는, 미끄러져 다 #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "쿵" @@ -36912,7 +37170,6 @@ msgstr "흙입니다. 경작에 쓰기 좋은 고운 흙입니다. 파헤쳐서 #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "모래" @@ -37175,7 +37432,6 @@ msgstr "콘크리트를 부어 평평하게 만든 곳입니다. 이런저런 #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "콘크리트" @@ -38963,7 +39219,6 @@ msgstr "지하수를 모으는 깊은 우물입니다. 물 펌프를 설치하 #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "플루토늄 발전기" @@ -39630,7 +39885,6 @@ msgstr "철도 건널목이 있음을 알리는 표지판입니다. 철도가 #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "작은 철도 궤" @@ -40712,7 +40966,6 @@ msgstr "밀랍으로 만든 벽입니다." #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "단단한 돌" @@ -41669,7 +41922,6 @@ msgstr "맨홀입니다. 강철 뚜껑이 놓인 입구 아래에 숨겨진 지 #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "맨홀 뚜껑" @@ -41845,6 +42097,42 @@ msgstr "선로 경사로 최저점 (오르막)" msgid "The lower end of rail track leading up." msgstr "선로 오르막길의 최저점입니다." +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "콘크리트 경사로 최고점 (내리막)" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "콘크리트 경사로 최저점 (내리막)" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "콘크리트 경사로 최고점 (오르막)" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "콘크리트 경사로 최저점 (오르막)" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -41908,7 +42196,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "이 걸 보 고 있 다 면 버 그 입 니 다 ." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "실타래" @@ -41919,7 +42206,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "반짇고리를 채우는데 사용할 수 있는 소량의 실타래." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "힘줄" @@ -41930,7 +42216,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "시체에서 잘라낸 질긴 힘줄. 실타래처럼 쓸 수 있습니다." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "식물섬유" @@ -41941,7 +42226,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "식물에서 얻은 가늘고 질긴 섬유. 실타래처럼 쓸 수 있습니다." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "뜨개실" @@ -41962,7 +42246,6 @@ msgid "A cleansing agent made into bars." msgstr "길쭉한 모양의 세정제." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "접착 테이프" @@ -41973,7 +42256,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "엄청나게 강력한 테이프. 용도가 셀 수 없을 정도로 많습니다." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "담배말이 종이" @@ -41984,7 +42266,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "담배를 마는데 사용되는 얇은 종이." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "구리 선" @@ -42030,7 +42311,6 @@ msgid_plural "watery plutonium slurry" msgstr[0] "걸쭉한 플루토늄 슬러리" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "돌" @@ -42256,7 +42536,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "쓸만한 고무 한 덩어리. 쉽게 녹여서 모양을 잡을 수 있습니다." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "구리" @@ -42299,7 +42578,6 @@ msgstr "" "제작에도 쓰입니다." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "탄화칼슘 원료" @@ -42507,7 +42785,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "스쿠버 다이빙에 쓰이는 산소-질소 혼합 가스." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "부싯깃" @@ -42538,7 +42815,6 @@ msgid "A metal die used to play various role-playing games" msgstr "테이블탑 게임을 하는 데 쓰이는 쇠로 된 주사위." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "청동" @@ -42853,7 +43129,6 @@ msgstr "자성 레일 발사체" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "UPS" @@ -44892,7 +45167,6 @@ msgstr "" "가스를 만들어냅니다. 산화하여 종이표백제를 만들 수 있습니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "황 덩어리" @@ -44905,7 +45179,6 @@ msgid "" msgstr "순수한 유황 덩어리입니다. 깨뜨려 사용할 수 있습니다. 눈을 노리고 쏘면 위험한 화상을 입힐 수 있습니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "시멘트" @@ -44922,7 +45195,6 @@ msgstr "" "(역주 : Portland - 미국 메인주 남서부에 있는 도시)" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "석회석" @@ -44938,7 +45210,6 @@ msgstr "" "것들이 있겠지요..." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "생석회" @@ -44962,7 +45233,6 @@ msgid "" msgstr "한 줌의 뉴잉글랜드산 모래. 작동 중인 용광로가 있다면 유리를 만들 수 있겠지만, 없다면 시멘트만 만들 수 있습니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "흙" @@ -44987,7 +45257,6 @@ msgid "" msgstr "작은 석회석 조각. 상당히 무른 탓에 무기로 쓰긴 어렵지만, 알칼리성을 이용해 어딘가 사용할 곳이 있을 것 같다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "암염" @@ -44998,7 +45267,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "한 줌의 암염 결정체. 정제하여 식염으로 만들 수 있습니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "휘석" @@ -45011,7 +45279,6 @@ msgid "" msgstr "휘석덩어리. 이산화망간이 덮여 있고 광맥속에도 있습니다. 끌을 사용하여 채취할 수 있습니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "아연 덩어리" @@ -45385,7 +45652,6 @@ msgstr "" "로켓추진기의 원료가 됩니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "초석" @@ -45398,7 +45664,6 @@ msgid "" msgstr "큼지막한 초석 결정체. 질산칼륨의 광물 형태입니다. 질산칼륨으로 정제할 수있습니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "철광석 덩어리" @@ -45779,7 +46044,6 @@ msgstr "" "크기별로 분리하는 젤을 만들 때 좋고, 젤리를 굳힐 때 쓰면 치트키나 다름없습니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "금속 그릴" @@ -45824,7 +46088,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "은빛 금속으로 된 작은 알갱이. 조심히 다뤄야합니다." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "나무 구슬" @@ -47315,7 +47578,6 @@ msgstr "레스토랑, 대형 상점을 비롯해 대량의 물품을 냉동 상 #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "유리문 냉장고" @@ -47327,7 +47589,6 @@ msgstr "유리문 냉장고입니다. 가게에서 냉장보관 중인 음식을 #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "유리문 냉동고" @@ -47457,7 +47718,6 @@ msgid "" msgstr "죽은 식물입니다. 불을 피우는데 쓰거나 깔고 누울 낙엽 더미를 만드는데 씁니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "모피 생가죽" @@ -47468,7 +47728,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "동물의 모피입니다. 따뜻한 옷으로 만들 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "인조 모피 생가죽" @@ -47479,7 +47738,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "화려한 색상의 인조 모피. 옷을 만들 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "가죽 조각" @@ -47490,7 +47748,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "작은 가죽 조각입니다. 거친 옷을 만들 때 사용할 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "양모 조각" @@ -47501,7 +47758,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "작은 펠트 조각입니다. 분해하여 양모를 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "노멕스 조각" @@ -47512,7 +47768,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "작은 조각의 노멕스 방화 직물." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "순간접착제" @@ -47523,7 +47778,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "강력한 접착제가 들어있는 튜브입니다. 여러 가지 제작에 사용됩니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "뼈 아교" @@ -47558,7 +47812,6 @@ msgid "A token, representing fertilization of a plant." msgstr "식물을 비옥하게 만들어주는 비료." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "강철 사슬" @@ -47571,7 +47824,6 @@ msgid "" msgstr "무거운 철제 사슬. 제작이나 무기로 유용합니다. 맞은 적에게 휘감겨 추가 비무장공격을 할 수 있는 확률이 있다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "키틴질 조각" @@ -47582,7 +47834,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "곤충의 외골격의 파편입니다. 가볍고 매우 견고합니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "가스 낭 다발" @@ -47613,7 +47864,6 @@ msgid "" msgstr "고급 세라믹으로 만들어진 얇고 길쭉한 작은 디스크 세트입니다. 마치 비늘을 연상시키네요." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "유기규소 키틴질 조각" @@ -47627,7 +47877,6 @@ msgid "" msgstr "유기규소화된 외골격 덩어리. 내산성을 갖춘데다가 내구성마저 굉장히 뛰어납니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "천 묶음" @@ -47640,7 +47889,6 @@ msgid "" msgstr "저장을 위해 꽉 묶어둔 천 조각들입니다. 사용하거나 분해하여 내용물을 꺼낼 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "가죽 묶음" @@ -47654,7 +47902,6 @@ msgid "" msgstr "저장을 위해 꽉 묶어놓은 가죽 조각들입니다. 분해하여 내용물을 꺼낼 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "양모 묶음" @@ -47726,7 +47973,6 @@ msgstr "" "주먹 크기의 돌. 어지러운 나선으로 뒤덮여 있다. 나선이 새겨진 것인지 원래 있는 무늬인지 무언가의 화석인지는 구별하기 힘듭니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "USB 드라이브" @@ -47737,7 +47983,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "휴대용 USB 드라이브. 소프트웨어를 저장할 때 쓰입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "데이터 카드" @@ -47750,7 +47995,6 @@ msgid "" msgstr "향상된 데이터 저장 장치입니다. 매우 큰 양의 정보를 저장할 때 쓰입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "FEMA 데이터" @@ -47765,7 +48009,6 @@ msgstr "" "대피계획, 재난 위험 분석, 인원 명단 및 종말 직전 1분 동안의 대화 내역을 FEMA 서버에서 추출해 외장 하드에 담았습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "촛대" @@ -47812,7 +48055,6 @@ msgid "" msgstr "8인치 크기의 원형 톱날입니다. 톱을 만들거나 던질 수 있습니다. 튼튼한 장갑 없이 드는건 좋은 생각이 아닙니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "나무수액 삽관" @@ -47828,7 +48070,6 @@ msgstr "" "수확하기 위해 단풍나무에 설치할 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "철사" @@ -47841,7 +48082,6 @@ msgid "" msgstr "가늘고 길면서 제법 굽히기 힘든 강철 철사. 철조망에 사용되는 것과 같습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "가시철사" @@ -47852,7 +48092,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "상당히 튼튼한 철사입니다. 날카로운 미늘이 덮여있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "강철 망" @@ -47868,7 +48107,6 @@ msgstr "" "창문에 설치해 모기나 다른 벌레를 막을 수 있지만, 요즘에는 철책이 그 역할을 대신하죠." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "철근" @@ -47925,7 +48163,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "불이 꺼진 마그네슘 플레어. 쓰레기나 마찬가지다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "용수철" @@ -47973,7 +48210,6 @@ msgid "" msgstr "패밀리 사이즈 텐트다. 굉장히 부피가 크지만 공간도 넓다. 이 텐트는 고장나서 사용할 수 없습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "발열체" @@ -47984,7 +48220,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "핫플레이트나 주전자에 사용되 발열체." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "바이메탈 온도조절기" @@ -47996,7 +48231,6 @@ msgid "" msgstr "바이메탈 조각의 열팽창을 통해 작동하는 온도조절기입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "텔레비전" @@ -48007,7 +48241,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "커다란 LCD 텔레비전입니다. 유용한 전자부품이 가득합니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "점화부" @@ -48044,7 +48277,6 @@ msgid "" msgstr "복잡한 기계식 신관. 충격을 통해 폭발물을 폭파시킬 수 있을 것 같습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "토스터" @@ -48055,7 +48287,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "두 개의 작은 삽입구가 있는 토스터기입니다. 용도는 없지만, 예비 부품용으로 사용할 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "전자레인지" @@ -48068,7 +48299,6 @@ msgid "" msgstr "베이크드 빈즈 통조림 깨나 돌려본 듯한 전자레인지입니다. 분해해서 부품을 얻기 좋습니다." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "노트북 컴퓨터" @@ -48078,9 +48308,7 @@ msgstr[0] "노트북 컴퓨터" msgid "A broken laptop, basically a paperweight now." msgstr "고장난 랩탑 컴퓨터입니다. 지금에 와서는 기껏해야 문진에 불과합니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "고장난 아이봇" @@ -48093,9 +48321,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "고장난 아이봇입니다. 더이상 지원을 부를 수 없어 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "고장난 스키터봇" @@ -48108,7 +48334,6 @@ msgid "" msgstr "고장난 스키터봇입니다. 바닥에 쓰러져있어 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "고장난 연구소 방어 로봇" @@ -48121,7 +48346,6 @@ msgid "" msgstr "고장난 연구소 방어 로봇입니다. 외장이 부서졌고, 액체가 흘러나옵니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "고장난 경찰 로봇" @@ -48134,7 +48358,6 @@ msgid "" msgstr "고장난 경찰로봇입니다. 더이상 움직이지 않아 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "고장난 간호사봇" @@ -48147,7 +48370,6 @@ msgid "" msgstr "고장난 간호사봇입니다. 매끈한 얼굴이 허공을 멍하니 바라보고 있습니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "고장난 식료품봇" @@ -48167,7 +48389,6 @@ msgid "" msgstr "망가진 식료품봇입니다. 더러워진 얼굴에 여전히 미소가 떠올라있습니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "고장난 운반로봇" @@ -48181,7 +48402,6 @@ msgstr "" "고장난 운반로봇입니다. 축 늘어진 기계 관절과 부서진 섀시 덩어리로만 보입니다. 분해하여 부품을 얻는 정도밖에는 쓸모가 없습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "고장난 폭동 진압 로봇" @@ -48194,7 +48414,6 @@ msgid "" msgstr "고장난 폭동 진압 로봇입니다. 가스를 내뿜지 않으니 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "고장난 프로토타입 로봇" @@ -48208,9 +48427,7 @@ msgstr "" "고장난 프로토타입 로봇입니다. 부서지기 이전에도 멀쩡하지는 않았지만, 그때보다 훨씬 심하게 망가진 것 같습니다. 분해하여 부품을 얻을 수" " 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "고장난 채광로봇" @@ -48224,7 +48441,6 @@ msgid "" msgstr "고장난 채광로봇입니다. 더이상 무언가를 파헤칠 수 없어 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "고장난 수색 장비" @@ -48237,19 +48453,16 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "망가진 기계 외골격 수트입니다. 수리하는건 불가능해보입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "고장난 기계 수송 장비" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "고장난 전투 장비" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "고장난 시위진압용 디스패치" @@ -48263,7 +48476,6 @@ msgid "" msgstr "고장난 디스패치. 중앙부는 튀겨진 맨핵으로 채워졌으며 모터는 절뚝거리며 정지되었습니다. 부품 회수 가능." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "고장난 군용 디스패치" @@ -48279,9 +48491,7 @@ msgstr "" "부서진 군용 디스패치. 무장 해제된 디스패치의 허리부근에 찢어진 장갑 사이로 무장 해제된 맨핵들이 보입니다. 이것들의 잠재된 파괴력은 " "아직도 공포 그 자체입니다. 분해하여 부품을 회수할 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "고장난 맨핵" @@ -48295,9 +48505,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "고장난 맨핵입니다. 바닥에 쓰러져있어 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "고장난 수류탄 맨핵" @@ -48310,9 +48518,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "고장난 수류탄 맨핵. 땅바닥에 쓰러져 있으니 그다지 위협적이지 않습니다. 해체하면 부품을 얻을 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "고장난 소형핵 맨핵" @@ -48325,9 +48531,7 @@ msgid "" "be gutted for parts." msgstr "고장난 자홍색 맨핵. 잔해를 바라보는 것 만으로도 몸이 떨려온다. 부품 회수 가능." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "고장난 최루탄 맨핵" @@ -48340,9 +48544,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "고장난 최루탄 맨핵입니다. 바닥에 쓰러져있어 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "고장난 EMP 맨핵" @@ -48355,9 +48557,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "고장난 EMP 맨핵입니다. 바닥에 쓰러져있어 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "고장난 섬광탄 맨핵" @@ -48370,9 +48570,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "고장난 섬광탄 맨핵입니다. 바닥에 쓰러져있어 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "고장난 C-4 맨핵" @@ -48413,7 +48611,6 @@ msgstr "" "같습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "프로세서 보드" @@ -48424,7 +48621,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "중앙처리장치. 고급 전자기기 제작에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "램" @@ -48435,7 +48631,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "길쭉한 형태의 메모리. 고급 전자기기 제작에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "전력 변환기" @@ -48446,7 +48641,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "전원공급장치. 다양한 전자기기 제작에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "증폭 회로" @@ -48459,7 +48653,6 @@ msgid "" msgstr "신호 강도를 증폭하도록 만들어진 회로. 다양한 전자기기 제작에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "응답기 회로" @@ -48472,7 +48665,6 @@ msgid "" msgstr "신호를 반복하도록 만들어진 회로. 통신장비 제작에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "신호 수신기" @@ -48485,7 +48677,6 @@ msgid "" msgstr "다양한 대역의 신호를 수신할 수 있도록 만들어진 부품. 통신장비 제작에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "대형 LCD 화면" @@ -48498,7 +48689,6 @@ msgid "" msgstr "화상을 표시하는데 쓰이는 대형 백라이트 화면입니다. 일부 전자제품 제작에 쓰입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "소형 LCD 화면" @@ -48511,7 +48701,6 @@ msgid "" msgstr "화상을 표시하는데 쓰이는 소형 백라이트 화면입니다. 일부 전자제품 제작에 쓰입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "고품질 렌즈" @@ -48525,7 +48714,6 @@ msgid "" msgstr "빛을 퍼뜨리거나 집중시킬 때 사용하는 고급 렌즈입니다. 불을 피우는데 쓸 수도 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "작은 고품질 렌즈" @@ -48539,7 +48727,6 @@ msgid "" msgstr "빛을 퍼뜨리거나 집중시킬 때 사용하는 고급 소형 렌즈입니다. 물건을 만드는데 쓸 수도 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "착색 유리 한 쌍" @@ -48552,7 +48739,6 @@ msgid "" msgstr "선글라스의 알맹이 같은 한 쌍의 작고 검은 유리." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "타버린 바이오닉" @@ -48599,7 +48785,6 @@ msgstr "" " 있었겠지만, 지금에 와서는 끝내주는 하이테크 냄비받침 이외의 용도는 찾기 어렵습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "안테나" @@ -48610,7 +48795,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "평범하고 얇은 알루미늄 축대. 다양한 전자기기 제작에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "초소형 모터" @@ -48623,7 +48807,6 @@ msgid "" msgstr "RC카에 들어가는 것 같은 아주 작은 전기 모터입니다. 전자제품 제작에 많이 쓰입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "배선 회로" @@ -48636,7 +48819,6 @@ msgid "" msgstr "전자부품이 부전도체 기판 위에 전기적으로 연결되어있는 인쇄회로기판." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "전자기기 잔해" @@ -48660,7 +48842,6 @@ msgid "" msgstr "라디오방송국 단말기에 부착하여 자동식 중계기로 바꾸기 위해 만든 장치." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "소형 선풍기" @@ -48671,7 +48852,6 @@ msgid "A small fan, used to propel air around a room." msgstr "작은 선풍기입니다. 방 안의 공기를 순환시키는데 쓰입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "세라믹 장갑판" @@ -48697,7 +48877,6 @@ msgstr "" "'에드에게' 라는 문구와 물고기의 이름인 '호스'가 적혀있는 채워진 어항입니다. 물고기가 조그만 뿔들을 달고 있는 것 같습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "천 조각" @@ -48728,7 +48907,6 @@ msgid "" msgstr "피에 흠뻑 젖은 커다란 천조각. 끓는 물로 세탁할 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "파이프 청소기" @@ -48742,7 +48920,6 @@ msgid "" msgstr "파이프나 병 같은 물체의 내부 표면을 청소하는데 쓰는 도구입니다. 충분히 얇은 덕분에 총구를 청소하는데도 유용해보입니다." #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "시계" @@ -48764,7 +48941,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "작은 태엽 장치들을 모아놓은 장치." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "SD 카드" @@ -48775,7 +48951,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "중고 메모리 카드입니다. 내용물을 살펴볼 가치가 있을 것 같습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "SD 카드 (비어있음)" @@ -48789,7 +48964,6 @@ msgid "" msgstr "새 제품이거나, 깨끗하게 포맷한 메모리 카드입니다. 데이터를 저장하는데 쓸 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "SD 카드 (암호화됨)" @@ -48803,7 +48977,6 @@ msgid "" msgstr "펌웨어 암호화가 걸려있는 메모리 카드입니다. 암호화를 괜히 한건 아니어야 할텐데요." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "SD 카드 (과학정보)" @@ -48833,7 +49006,6 @@ msgid "" msgstr "하수도로 향하는 사다리를 덮는 무거운 철제 원반입니다. 빠루 없이는 맨홀에서 들어낼 수 없습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "소나무 가지" @@ -48846,7 +49018,6 @@ msgid "" msgstr "끈적한 수액이 늘어지고 가늘고 뾰족한 이파리가 달린 소나무 가지입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "솔방울" @@ -48878,7 +49049,6 @@ msgid "" msgstr "해바라기입니다. 꼭대기에는 노란 꽃잎들과, 아직 동물들이 먹어치우지 않은 씨앗들이 달려있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "캐모마일 꽃" @@ -48890,13 +49060,11 @@ msgid "" msgstr "흰색 캐모마일 꽃입니다. 고랫적부터 약초로 쓰였습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "연꽃" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "등대풀 꽃" @@ -48909,7 +49077,6 @@ msgid "" msgstr "황록색 꽃 한 줌입니다. 차로 우려내 마시면 천식 발작을 예방하는 효능이 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "점토 덩어리" @@ -48920,7 +49087,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "촉촉한 점토 조각. 다양한 물품 제작에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "벽돌" @@ -48931,7 +49097,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "불에 구워 만든 건축자재. 건설 작업에 사용된다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "회반죽" @@ -48942,7 +49107,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "건설 작업에 쓰이는 약간의 회반죽." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "무른 어도비 벽돌" @@ -48965,7 +49129,6 @@ msgid "" msgstr "흙과 자연적 섬유가 섞인 덩어리입니다. 건축에 쓰기에는 아직 너무 축축합니다. 팔레트에 널어 말리세요." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "어도비 벽돌" @@ -48978,7 +49141,6 @@ msgid "" msgstr "흙과 자연적 섬유로 된 덩어리로, 벽돌로 쓰기 적당하게 구워졌습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "어도비 회반죽" @@ -48993,7 +49155,6 @@ msgstr "" " 쓰입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "타닌 나무껍질" @@ -49004,7 +49165,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "나무에서 벗겨낸 나무껍질입니다. 타닌이 풍부하여 무두질에 사용할 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "자작나무껍질" @@ -49015,7 +49175,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "자작나무에서 벗겨낸 질기고 방수성인 껍질." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "버드나무 껍질" @@ -49028,7 +49187,6 @@ msgid "" msgstr "버드나무에서 벗겨낸 껍질. 아스피린 제작에 쓰입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "다이아몬드" @@ -49039,7 +49197,6 @@ msgid "A sparkling diamond." msgstr "번쩍이는 다이아몬드." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "가넷" @@ -49050,7 +49207,6 @@ msgid "A sparkling garnet." msgstr "반짝거리는 가넷입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "자수정" @@ -49061,7 +49217,6 @@ msgid "A sparkling amethyst." msgstr "반짝거리는 자수정입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "아쿠아마린" @@ -49072,7 +49227,6 @@ msgid "A sparkling aquamarine." msgstr "반짝거리는 아쿠아마린입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "에메랄드" @@ -49083,7 +49237,6 @@ msgid "A sparkling emerald." msgstr "반짝거리는 에메랄드입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "알렉산드라이트" @@ -49094,7 +49247,6 @@ msgid "A sparkling alexandrite." msgstr "반짝거리는 알렉산드라이트입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "진주" @@ -49105,7 +49257,6 @@ msgid "A lustrous pearl." msgstr "빛나는 진주입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "루비" @@ -49116,7 +49267,6 @@ msgid "A sparkling ruby." msgstr "반짝거리는 루비입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "페리도트" @@ -49127,7 +49277,6 @@ msgid "A sparkling peridot." msgstr "반짝거리는 페리도트입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "사파이어" @@ -49138,7 +49287,6 @@ msgid "A sparkling sapphire." msgstr "반짝거리는 사파이어입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "오팔" @@ -49149,7 +49297,6 @@ msgid "A lustrous opal." msgstr "빛나는 오팔입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "토르말린" @@ -49160,7 +49307,6 @@ msgid "A sparkling tourmaline." msgstr "반짝거리는 토르말린입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "시트린" @@ -49171,7 +49317,6 @@ msgid "A sparkling citrine." msgstr "반짝거리는 시트린입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "토파즈" @@ -49182,7 +49327,6 @@ msgid "A sparkling blue topaz." msgstr "반짝거리는 푸른 토파즈입니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "건조된 가죽" @@ -49197,7 +49341,6 @@ msgstr "" "털과 살점을 제거하고 부패를 막기 위한 처리를 거친 생가죽을 말아놓은 것입니다. 무두질을 거치면 쓸만한 가죽조각이 될 것 같습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "건조된 모피" @@ -49234,7 +49377,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "드레스를 입은 여자를 본떠 만든 낡은 짚 인형." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "베개" @@ -49245,7 +49387,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "잘 때 머리에 베는 베개." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "안는 베개" @@ -49258,7 +49399,6 @@ msgid "" msgstr "앞면에 애니메이션 캐릭터가 그려져있고 뒷면에는 알몸 상태의 캐릭터가 그려져있는 몸집이 큰 베개." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "오리털 베개" @@ -49269,7 +49409,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "잘 때 머리에 베는 푹신한 베개." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "테디 베어" @@ -49288,7 +49427,6 @@ msgid "" msgstr "꼭 끌어안고 싶은 푹신한 테디베어입니다. 빨간색 티셔츠를 입고 있지만, 바지는 입고 있지 않습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "돈다발" @@ -49337,7 +49475,7 @@ msgstr[0] "시가" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "끄기" @@ -49452,7 +49590,6 @@ msgid "" msgstr "담배에서 채취한, 니코틴이 가득한 이파리입니다. 잘 건조시켜야 피울 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "현금 카드" @@ -49480,7 +49617,6 @@ msgid "" msgstr "이 작고 투명한 로봇은 프로토타입 로봇의 CPU에 부착되어 있었습니다. 인터컴이 언급한 정보를 갖고 있을지도 모릅니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "주유소 멤버십카드 (실버)" @@ -49491,7 +49627,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "휘발유를 구입할 때 약간의 할인 혜택을 준다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "주유소 멤버십카드 (골드)" @@ -49502,7 +49637,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "휘발유를 구입할 때 괜찮은 할인 혜택을 준다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "주유소 멤버십카드 (플래티넘)" @@ -49513,7 +49647,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "휘발유를 구입할 때 상당한 할인 혜택을 준다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "과학자 ID 카드" @@ -49529,7 +49662,6 @@ msgstr "" "있다면요." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "군부대 ID 카드" @@ -49545,7 +49677,6 @@ msgstr "" "있다면요." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "산업용 ID 카드" @@ -49561,7 +49692,6 @@ msgstr "" " 찾을 수 있다면요." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "네오프렌 조각" @@ -49611,7 +49741,6 @@ msgid "" msgstr "망가진 정찰 외골격에서 떼어낸 장거리 레이저 포대입니다. 지금 이대로는 무기로 쓸 수 없습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "전구" @@ -49632,7 +49761,6 @@ msgid "A twisted shard of jagged metal." msgstr "가장자리가 들쭉날쭉하고 뒤틀린 금속판 조각입니다. " #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "점토 꽃 화분" @@ -49643,7 +49771,6 @@ msgid "A nice looking clay pot used for planting." msgstr "식물을 심는데 사용하는 멋진 점토 화분." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "플라스틱 꽃 화분" @@ -49769,7 +49896,6 @@ msgid "" msgstr "완전한 기능을 갖춘 용접 스테이션을 구성하는 데 사용하는 구성 요소 세트이며, 납땜 기능까지 완비되어 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "앰프 헤드" @@ -49782,9 +49908,7 @@ msgid "" msgstr "" "앰플리파이어 헤드입니다. 주로 악기의 소리를 증폭시키기 위해 스피커 캐비닛과 연결해서 사용하곤 했습니다. 이제는 잡동사니일 뿐입니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "고장난 터렛" @@ -49796,9 +49920,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "고장난 터렛입니다. 땅바닥에 쓰러져있으니 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "고장난 폭동 진압 터렛" @@ -49810,15 +49932,13 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "고장난 폭동 진압 터렛입니다. 땅바닥에 쓰러져있으니 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "고장난 레이저 터렛" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "고장난 보안로봇" @@ -49831,7 +49951,6 @@ msgid "" msgstr "고장난 보안로봇입니다. 땅바닥에 쓰러져있으니 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "고장난 M202A1 TALON" @@ -49846,7 +49965,6 @@ msgid "" msgstr "고장난 탈론 UGV입니다. 땅바닥에 쓰러져있으니 그다지 위협적이지 않습니다. 분해하여 부품을 얻을 수 있습니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "방화벽돌" @@ -49903,19 +50021,16 @@ msgid "" msgstr "가축에게 주기 위한 커다란 직육면체 소금 덩어리입니다. 핥지 마세요, 맛이 역겨울겁니다." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "고장난 경량형 터렛" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "고장난 군용 중형 터렛" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "고장난 군용 장거리 터렛" @@ -50106,7 +50221,6 @@ msgstr "" "머리가 이리저리 흔들립니다." #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "크리스마스 화환" @@ -50265,7 +50379,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "로봇 모듈을 위한 템플릿입니다. 게임 내에서 이걸 찾았다면 버그입니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "조준 모듈" @@ -50278,7 +50391,6 @@ msgid "" msgstr "이 모듈은 주변 센서를 통해 시각/자기 자극 감응 정보를 끌어와, 정확한 조준에 필요한 정보를 출력합니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "피아식별 모듈" @@ -50291,7 +50403,6 @@ msgid "" msgstr "이 모듈은 적들 사이에서 아군을 식별하기 위한 화상 인식 알고리즘을 지속적으로 수행합니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "길찾기 모듈" @@ -50304,7 +50415,6 @@ msgid "" msgstr "이 모듈은 다양한 적분 벡터 및 자기중심적 지도 제작을 통해 가능한 최선의 경로를 찾습니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "기억 저장소 모듈" @@ -50315,7 +50425,6 @@ msgid "Allows for storage and recovery of information." msgstr "정보의 저장과 복구를 가능케 합니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "감지기" @@ -50328,7 +50437,6 @@ msgid "" msgstr "주변 세계를 지각하기 위한 광범위한 센서들입니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "자기감지 센서" @@ -50341,7 +50449,6 @@ msgid "" msgstr "센서와 진단 모듈을 통해 로봇이 스스로를 검사할 수 있습니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "AI 핵" @@ -50354,7 +50461,6 @@ msgid "" msgstr "이 모듈은 로봇의 인공지능이 실행되는 부분으로, 의사 결정을 담당합니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "기초 AI 핵" @@ -50365,7 +50471,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "최소 인식 능력을 가진 기초적인 AI 핵입니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "고급 AI 핵" @@ -50376,7 +50481,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "뛰어난 인식 능력을 가진 고급 AI 핵입니다." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "화기 사용 시스템" @@ -50868,7 +50972,6 @@ msgid_plural "software" msgstr[0] "소프트웨어" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "잡다한 소프트웨어" @@ -50879,7 +50982,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "잡다한 취미용 소프트웨어. 별 쓸모는 없어보입니다." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "해킹PRO" @@ -50890,7 +50992,6 @@ msgid "A piece of hacking software." msgstr "해킹용 소프트웨어." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "메디소프트" @@ -50901,7 +51002,6 @@ msgid "A piece of medical software." msgstr "의료용 소프트웨어." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "매쓰맥스" @@ -50912,7 +51012,6 @@ msgid "A piece of mathematical software." msgstr "수학용 소프트웨어." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "감염 데이터" @@ -50923,7 +51022,6 @@ msgid "Medical data on zombie blood." msgstr "좀비 혈액에 대한 의학 자료." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "연구실 데이터" @@ -50934,7 +51032,6 @@ msgid "Research archives from a government laboratory." msgstr "정부 연구소의 연구 결과를 모은 것입니다" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "철도 데이터" @@ -50945,7 +51042,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "지하 철도 노선 및 스케줄에 대한 물류 데이터입니다." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "두뇌 데이터" @@ -50962,7 +51058,6 @@ msgstr "" "어떻든간에, 당신의 한 조각을 금속 알약 안에 영원히 보관한다는 발상은 기분나쁘게 들립니다." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "잡다한 소프트웨어" @@ -51608,7 +51703,7 @@ msgstr[0] "원자력 헤드램프" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "덮개 닫기" @@ -51642,7 +51737,7 @@ msgstr[0] "원자력 헤드램프(덮임)" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "덮개 열기" @@ -55160,7 +55255,6 @@ msgid "" msgstr "작은 철제 화살. 탄약의 재료나 그 자체로 네일건, 혹은 비슷한 무기의 탄약이 될 수 있습니다." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "못" @@ -55738,7 +55832,8 @@ msgstr "" "모듈식 방탄조끼. 추가 장갑판 주머니에 초합금 장갑판을 넣어서 방어력이 향상했지만, 감수할만한 수준에서 유연성이 감소하고 무게가 " "늘어났습니다. 탄창을 넣을 수 있는 주머니가 4개 달려있습니다." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "화살통" @@ -55750,7 +55845,8 @@ msgid "" "store arrows." msgstr "허리에 매는 가죽 화살통. 사용키를 눌러 최대 20발의 화살을 담을 수 있습니다." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "자작나무 화살통" @@ -55762,7 +55858,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "자작나무 껍질을 엮어만든 허리에 메는 화살통. 사용키를 눌러 최대 20발의 화살을 담을 수 있습니다." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "큰 화살통" @@ -55777,7 +55874,8 @@ msgstr "" "가죽에 금속을 덧대서 만든 커다란 화살통. 등에 착용하며 화살 60발을 수납할 수 있습니다. 역사상 일반 궁수들보다는 기마 궁수들이 흔히" " 사용한 장비입니다만 그들은 좀비와 싸울 필요는 없었지요. 사용하면 화살을 채워넣습니다." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "대형 자작나무 화살통" @@ -56256,7 +56354,7 @@ msgstr[0] "투척용 나이프 보관대" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "%s(을)를 칼집에 넣었습니다." @@ -56486,7 +56584,7 @@ msgstr[0] "가죽 벨트" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "%s(을)를 %s에 꽃아넣었습니다." @@ -56496,14 +56594,14 @@ msgstr "%s(을)를 %s에 꽃아넣었습니다." #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "벨트에 무엇을 끼울까요?" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "가죽 허리띠. 바지의 허리를 몸에 맞게 조절할때 사용합니다." @@ -58940,7 +59038,7 @@ msgstr[0] "생존용 장갑" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -66415,7 +66513,7 @@ msgstr[0] "산악용 백팩" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "칼 집어넣기" @@ -74172,8 +74270,8 @@ msgstr[0] "기본 발사기" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "단발" @@ -74283,7 +74381,7 @@ msgstr[0] "기본 산탄총" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -74300,7 +74398,7 @@ msgid_plural "pump action shotguns" msgstr[0] "펌프액션 산탄총" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "칙 칙." @@ -75985,15 +76083,13 @@ msgid "" msgstr "스위트브레드라고도 불리는, 동물에게서 떼어낸 흉선 및 췌장입니다. 적절히 요리하면 별미가 될 수 있습니다." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "혈액" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "인간의 것으로 보이는 혈액입니다. 역겹네요!" @@ -76190,8 +76286,7 @@ msgstr "" "재료로 사용될 수 있습니다." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "더럽혀진 혈액" @@ -86425,6 +86520,19 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "벼를 도정하고 남은 껍질로, 이 식물성 물질은 영양이 풍부하고 좋은 식용유를 만들 수 있습니다." +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "일반 샌드위치" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "이걸 볼 수 있다면 뭔가 잘못된겁니다. 원래 멍청한 복사붙여넣기 버그를 해결하기 위한 용도입니다." + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -90370,7 +90478,6 @@ msgid "generic item template" msgstr "일반 물품 템플릿" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "면도기" @@ -90385,7 +90492,6 @@ msgstr "" " 있습니다." #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "머리빗" @@ -90431,7 +90537,6 @@ msgstr "" "회수할 수 있습니다." #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "빗" @@ -90465,7 +90570,6 @@ msgid "" msgstr "양아치처럼 보이고 싶을 때 유용한 접이식 빗입니다." #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "헤어 드라이기" @@ -90479,7 +90583,6 @@ msgstr "" "이 도구는 뜨거운 와이어의 코일을 공기가 통과해 머리카락을 건조시킵니다. 전원이 작동하지 않으면 모터가 달린 종이 누르개 입니다." #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "고데기" @@ -91048,7 +91151,6 @@ msgid_plural "generic cook pots" msgstr[0] "일반 조리 냄비" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "도자기 접시" @@ -91059,7 +91161,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "모든 면에서 평범한 도자기 접시." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "도자기 그릇" @@ -91070,7 +91171,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "지극히 평범한 도자기 수프 그릇." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "도자기 컵" @@ -91081,7 +91181,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "가벼운 도자기 찻잔입니다. 꽤 세련되었습니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "커피 머그잔" @@ -91161,7 +91260,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "\"알코올 중독은 일상이지\" 라고 쓰여있습니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "양철 접시" @@ -91172,7 +91270,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "가볍고 쇳소리가 나는 양철 접시." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "주석 컵" @@ -91185,7 +91282,6 @@ msgid "" msgstr "에나멜 입힌 주석 컵입니다. 캠핑에서 쓰거나, 감옥에서 쓰입니다. 막대로 두드리면 아름다운 소리가 납니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "백랍 그릇" @@ -91196,7 +91292,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "뚜껑 없는 백랍 그릇입니다. 액체를 250ml 만큼 담을 수 있습니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "잔" @@ -91207,7 +91302,6 @@ msgid "A tall drinking glass." msgstr "큼직한 잔입니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "와인 글래스" @@ -91220,7 +91314,6 @@ msgid "" msgstr "뭔가 담아 마시면 굉장히 멋져보이는, 손잡이가 긴 와인 잔입니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "유리 그릇" @@ -91253,7 +91346,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "보관하기 편리한 뚜껑이 달린 플라스틱 그릇입니다. 액체를 750ml 만큼 담을 수 있습니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "어린이 그릇" @@ -91295,7 +91387,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "귀여운 가축들이 접시를 장식하고 있습니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "어린이 컵" @@ -91336,7 +91427,6 @@ msgid "" msgstr "크레용으로 쓴 것 같은 \"사랑해\" 라는 문구가 쓰여있는 빨대컵입니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "냄비" @@ -91347,7 +91437,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "물을 끓일 때나 스파게티를 만들 때, 혹은 그 외의 음식들을 만들 때 유용합니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "주철 냄비" @@ -91359,7 +91448,6 @@ msgid "" msgstr "이 묵직한 검은 냄비는 주철로 만들어졌고, 질긴 에나멜 도금이 되어있습니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "구리 냄비" @@ -91374,7 +91462,6 @@ msgstr "" "되어있다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "캐서롤" @@ -91387,7 +91474,6 @@ msgid "" msgstr "요리도구이자 대접용 접시로 쓰이는 도자기 냄비입니다. 특히 메인 요리 하나를 나눠먹는 저녁식사에서 쓰입니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "사골 냄비" @@ -91401,7 +91487,6 @@ msgstr "" "수프에 쓸 치킨 스톡 등을 만드는데 쓰이는 커다란 냄비입니다. 조금 노력한다면 칠면조 한 마리를 통째로 집어넣을 수도 있습니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "속 깊은 냄비" @@ -91420,7 +91505,6 @@ msgstr "" "대신할 바위나 무언가로 가득 채울 것입니다. " #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "주철 프라이팬" @@ -91432,7 +91516,6 @@ msgid "" msgstr "주철 프라이팬입니다. 근접 무기로 쓰기에 좋고, 요리에도 유용합니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "강철 프라이팬" @@ -91444,7 +91527,6 @@ msgid "" msgstr "강철 프라이팬입니다. 근접 무기로 쓰기에 좋고, 요리에도 유용합니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "구리 프라이팬" @@ -91457,7 +91539,6 @@ msgid "" msgstr "주석으로 얊게 코팅된 구리 프라이팬입니다. 근접 무기로 쓰기에 좋고, 요리에도 유용합니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "간이 냄비" @@ -91472,7 +91553,6 @@ msgstr "" " 많습니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "간이 구리냄비" @@ -91485,7 +91565,6 @@ msgid "" msgstr "구리를 두들겨 만든 냄비다. 요리나 물 끓이기에는 충분하지만 제대로 된 요리도구보다는 못합니다." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "주전자" @@ -91800,7 +91879,6 @@ msgstr "" "않습니다." #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "짧은 끈" @@ -91811,7 +91889,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "6인치 (15cm) 길이의 면직 끈입니다." #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "긴 끈" @@ -93110,7 +93187,7 @@ msgstr "이탈리아에서 기원한 쌍총열 반자동 권총으로, 한번에 #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "전탄사격" @@ -96144,7 +96221,7 @@ msgstr "이 물품은 가짜입니다 - 퓨전 블래스터의 최대 화력 설 #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "총열하단" @@ -96461,7 +96538,7 @@ msgstr "" "감소합니다." #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "총구" @@ -96643,7 +96720,7 @@ msgid "" msgstr "긴 화기의 총열 밑에 장착 가능한 쇠뇌와 발사 레일이 있는 키트. 쇠뇌 볼트를 발사 할 수 있다." #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "레일" @@ -96762,7 +96839,7 @@ msgstr "" "현대식 활에 장착할 수 있는 조정 가능한 조준경과 고정대입니다. 명중률을 상당히 높여주지만, 조준하는데 시간이 조금 더 걸립니다." #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "조준기" @@ -100672,13 +100749,11 @@ msgid "" msgstr "최첨단 물질로 만든 길고 가느다란 실 끄트머리에 작은 무게추를 달아놓은 채찍입니다." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "부엌칼" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "푸주칼" @@ -100691,7 +100766,6 @@ msgid "" msgstr "묵직하고 잘 드는 칼. 근접 무기로 쓸만하며 시체를 도축하기에 가장 좋습니다." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "스테이크 칼" @@ -100704,7 +100778,6 @@ msgid "" msgstr "고기를 자르는 용도의 날카로운 칼. 근접 무기로는 그다지 좋지 않지만 시체를 도축하기에는 적당합니다." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "과도" @@ -100717,7 +100790,6 @@ msgid "" msgstr "도마를 망가뜨리지 않고 세밀하게 야채를 썰기 위한, 예리한 단도입니다." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "주방용 칼" @@ -100734,7 +100806,6 @@ msgstr "" "쓰이는 독특한 곡선부가 있습니다. 괜찮은 근접무기지만, 날이 넓은 탓에 도축에는 영 불편합니다." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "정육칼" @@ -100750,7 +100821,6 @@ msgstr "" "도축용으로도 훌륭합니다." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "빵칼" @@ -100766,7 +100836,6 @@ msgstr "" "지독하게 찢어놓을 수 있습니다." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "야채 중식도" @@ -100782,7 +100851,6 @@ msgstr "" "덕분에 매우 효과적인 근접무기 역할을 하지만, 고기 중식도보다는 효율이 떨어집니다." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "고기 중식도" @@ -104218,7 +104286,6 @@ msgid "" msgstr "물과 매염제와 섞어 사용하면 대부분의 섬유를 염색할 수 있는 의복 염색용 가루입니다." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "유리 조각" @@ -104231,7 +104298,6 @@ msgid "" msgstr "모서리가 날카로운 깨진 유리조각입니다. 해진 천으로 감싸면 원시적인 무기로 쓸 수 있습니다." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "유리판" @@ -104251,7 +104317,6 @@ msgid "" msgstr "깨지기 쉬운 커다란 유리판. 창문을 갈아끼울 때 사용됩니다." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "강화 유리판" @@ -104263,7 +104328,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "철사로 보강된 커다란 유리판." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "강화 판유리" @@ -104275,7 +104339,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "철사로 보강된 작은 판유리." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "강화 유리판" @@ -104371,7 +104434,6 @@ msgid "A roll of purple carpet." msgstr "둥글게 말린 자주색 카펫." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "외시경" @@ -104384,7 +104446,6 @@ msgid "" msgstr "문에 설치하도록 만든 금속 원통. 내부에 작은 렌즈가 들어있다." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "방충망" @@ -104395,7 +104456,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "현관으로 벌레가 들어오지 않게 막기 위한 세밀한 플라스틱 방충망입니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "파이프" @@ -104407,7 +104467,6 @@ msgid "" msgstr "좋은 근접무기인 철제 파이프. 몇몇 물건들의 제작에 유용하게 사용됩니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "고철" @@ -104421,7 +104480,6 @@ msgstr "온갖 종류의 작은 고철 한 무더기. 온갖 것들을 만들 #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "스파이크" @@ -104434,7 +104492,6 @@ msgid "" msgstr "크고 약간 뒤틀린 고철 침. 차량에 장착하여 어느 정도 피해를 줄 수 있습니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "구리관" @@ -104447,7 +104504,6 @@ msgid "" msgstr "구리 파이프다. 근접무기로 사용하기에는 너무 얇지만 다른 대안이 없을 때에는 쓸만합니다. 몇몇 물건들의 제작에 사용된다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "알루미늄 주괴" @@ -104463,7 +104519,6 @@ msgstr "" " 갈아 가루로 낼 수 있습니다… 훨씬 시선을 끌만한 일에 쓸 수 있게요." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "비스무트" @@ -104474,7 +104529,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "밀도가 높지만 잘 부서지는 금속으로 납의 대체재로 종종 쓰이는 금속입니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "금" @@ -104488,13 +104542,11 @@ msgid "" msgstr "부드럽고 빛나는 금속. 대재앙 이전에 주웠다면 운이 좋았겠지만 지금은 값어치가 많이 떨어졌습니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "백금" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "아연" @@ -104511,7 +104563,6 @@ msgstr "" "다른 것을 제작하는 데에 사용하는 아연가루를 만들기 위해 부술 수 있습니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "납" @@ -104525,7 +104576,6 @@ msgstr "" "둔한 광택이 나는 금속입니다. 고대부터 알려진 금속으로 대단히 부드럽고 유연해서 탄약 생산 등 다양한 용도로 쓸 수 있습니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "마그네슘 분말" @@ -104538,7 +104588,6 @@ msgid "" msgstr "가연성의 알칼리 토금속인 마그네슘으로 만든 회색 가루. 신호탄이나 비슷한 도구를 만드는 데 유용합니다. " #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "은" @@ -104551,7 +104600,6 @@ msgid "" msgstr "무르고 빛나는 금속입니다. 대재앙 전에는 가치가 높았으나 지금은 별 쓸모가 없습니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "작은 금속판" @@ -104562,7 +104610,6 @@ msgid "A small sheet of metal." msgstr "작은 금속판입니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "강철 조각" @@ -104575,7 +104622,6 @@ msgid "" msgstr "찌그러진 강철 조각. 유사시에는 괜찮은 무기로 쓰이며, 다양한 물품 제작에 사용된다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "강철 덩어리" @@ -104586,7 +104632,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "무거운 강철 조각. 물품 제작에 사용됩니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "문 경첩" @@ -104599,7 +104644,6 @@ msgid "" msgstr "못박는 구멍과 두 개의 금속판으로 만들어진 작은 금속 경첩입니다. 문을 만드는 데에 사용됩니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "구리 조각" @@ -104610,7 +104654,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "작은 구리 조각. 제작이나 수리에 쓸 수 있습니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "주석" @@ -104623,7 +104666,6 @@ msgid "" msgstr "주석은 연납이나 내용물이 부패하지 않도록 막는 보존용기를 만드는데 쓰입니다." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "연납" @@ -104656,7 +104698,6 @@ msgid "" msgstr "자루가 긴 빗자루. 고양이를 쫓아내려는 게 아니라면 좋은 무기는 아니다." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "도자기 조각" @@ -104713,7 +104754,6 @@ msgid "" msgstr "도화선입니다. 대부분의 폭발물이 폭발하기 전에 도망갈 수 있을 정도로 깁니다." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "뾰족한 돌" @@ -104778,7 +104818,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "양모로 만든 매트리스입니다. 꽤 푹신하고 편안합니다." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "플라스틱 조각" @@ -104806,7 +104845,6 @@ msgstr "" "있으며, 첨단 모델을 갖고 있다면 생각도 못했던 물건도 만들 수 있습니다." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "인조 섬유" @@ -104822,8 +104860,6 @@ msgstr "" "아니죠." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "플라스틱 판" @@ -104836,7 +104872,6 @@ msgid "" msgstr "묵직하고 유연하며 널찍한 플라스틱 판입니다. 상업용 포장 내지는 집을 방수처리하는데 쓰였을 것입니다." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "경화 플라스틱 판" @@ -104849,7 +104884,6 @@ msgid "" msgstr "크고 반투명한 플라스틱 판입니다. 온갖 용도로 유용합니다: 건축에서 예술까지, 심지어 아이들의 스노우보드로도 쓸만합니다." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "플라스틱 잔해" @@ -104862,7 +104896,6 @@ msgid "" msgstr "조그만 플라스틱 조각입니다. 그 자체로는 아무 쓸모도 없지만, 충분한 수를 모았다면 녹여서 다른 물품을 만들 수 있습니다." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "통나무" @@ -104875,7 +104908,6 @@ msgid "" msgstr "나무에서 잘라낸 커다란 통나무 덩어리입니다. a키로 도끼나 목공톱을 사용해 널빤지로 만들 수 있습니다." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "쪼개진 나무" @@ -104886,7 +104918,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "쪼개진 나무 조각. 뭔가 꽂아 두거나 불쏘시개 말고는 별달리 쓸모가 없습니다." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "무거운 막대기" @@ -104897,7 +104928,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "단단하고 묵직한 막대기입니다. 근점무기로 그럭저럭 쓸만합니다." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "긴 막대기" @@ -104910,7 +104940,6 @@ msgid "" msgstr "긴 막대기. 적당한 근접 무기도 되고 잘라서 무거운 막대기로 만들 수도 있다" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "장대" @@ -104923,8 +104952,7 @@ msgid "" msgstr "" "튼튼한 10피트 길이의 장대. 창과 비슷하게 사용할 수 있습니다. 대격변은 커다란 막대기를 들고 부드럽게 걷는 것에 신선함을 부여합니다." -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "널빤지" @@ -104939,7 +104967,6 @@ msgstr "" "2x4인치 단면 또는 유사한 치수의 목재 등의 좁고 두꺼운 나무 판자. 적당한 근접 무기도 되며 모든 종류의 건설에 사용할 수 있습니다." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "무거운 나무 기둥" @@ -104955,7 +104982,6 @@ msgstr "" "자르거나 톱질할 수 있습니다." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "나무판" @@ -104973,7 +104999,6 @@ msgstr "" " 필요합니다." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "커다란 나무 시트" @@ -104989,7 +105014,6 @@ msgstr "" "시공에 매우 유용하게 사용됩니다. 하지만 작은 규모 프로젝트에 사용하려면 사이즈에 맞게 재단해야 할 수 있습니다." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "번개탄" @@ -105022,7 +105046,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "보관이 용이한 연질 플라스틱 병. 500ml의 액체를 담을 수 있다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "방사능 커피 제조기" @@ -105041,7 +105064,6 @@ msgstr "" " 커피에 매우 특별한 맛을 더할 수 있습니다. 큐리-G는 대부분의 국가에서 불법입니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "도축 키트" @@ -105065,7 +105087,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "이건 제작 중의 가짜 물품입니다. 당신이 이걸 갖고 있다면 버그입니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "통조림 밀봉기" @@ -105078,7 +105099,6 @@ msgid "" msgstr "주석 캔을 자동으로 밀봉하도록 설계된 수동 크랭크 동력 주조 강철 기계입니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "전동칼 (꺼짐)" @@ -105116,7 +105136,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "전동칼이 지금 켜져있고 톱날이 웅웅거립니다. 사용하면 전원을 끕니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "숯 정수기" @@ -105133,7 +105152,6 @@ msgstr "" "해체하거나 재활용 할 수 있습니다. 강처럼 출처가 불분명한 수원에서 얻은 물은 오염되었을 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "목탄 그릴" @@ -105146,7 +105164,6 @@ msgid "" msgstr "휴대용 숯불 그릴. 주말에 바베큐하기 좋으며 고기를 훈연하여 보존할 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "목탄(숯불) 조리기구" @@ -105159,7 +105176,6 @@ msgid "" msgstr "초소형 금속 탱크에 숯을 담고 점화 장치를 달았습니다. 요리도구로 쓸 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "점토 냄비" @@ -105170,7 +105186,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "뚜껑 덮인 거친 점토 냄비. 요리에 사용된다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "점토 맷돌" @@ -105181,7 +105196,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "곡물을 가는데 사용되는 간단한 수동 맷돌." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "점토 찻주전자" @@ -105192,7 +105206,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "점토 찻주전자. 이제 찻잎과 물만 있으면 된다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "커피메이커" @@ -105208,7 +105221,6 @@ msgstr "" "음료도 끓여낼 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "음식 건조기" @@ -105221,7 +105233,6 @@ msgid "" msgstr "휴대용 음식 건조기입니다. 배터리로 작동하며 음식을 보존할 때 아주 유용합니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "발효중인 달걀 유리병" @@ -105246,7 +105257,6 @@ msgid "" msgstr "유리병에 달걀을 넣어 발효시키고 있는 중입니다. 일단 발효가 다 되면 밀봉해서 보존할 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "헥사민 조리기구" @@ -105259,7 +105269,6 @@ msgid "" msgstr "에스빗 스토브라고 알려진 이 가벼운 접이식 스토브는 헥사민 판을 연료로 사용합니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "밀봉된 소형 효모 배양기" @@ -105341,7 +105350,6 @@ msgid "" msgstr "물, 설탕, 과일, 그리고 자연스럽게 붙은 효모의 혼합물입니다. 머지않아 이스트가 잔뜩 배양될 것입니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "믹서" @@ -105354,7 +105362,6 @@ msgid "" msgstr "뭔가를 썰고, 자르고, 분쇄하고, 갈고, 퓨레로 만들고, 섞는데 쓸 수 있는 주방기구입니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "휘발유 조리기구" @@ -105381,7 +105388,6 @@ msgstr "" "일회용품입니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "핫플레이트" @@ -105454,7 +105460,6 @@ msgid "" msgstr "자우어크라우트를 넣고 밀봉한 유리병입니다. 사용하면 밀봉을 뜯고 먹을 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "간이 진공 포장기" @@ -105468,7 +105473,6 @@ msgstr "" "직접 만든 진공포장기입니다. 비닐로 싸고 열로 밀봉한 후 공기 펌프로 공기를 뺍니다. 음식을 진공포장해서 오래 보존할 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "반합" @@ -105482,7 +105486,6 @@ msgid "" msgstr "야영지 요리에 필요한 모든 것이 들어 있는 자급식 캠핑 키트입니다. 이 모델은 배터리로 작동하는 핫플레이트를 사용합니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "구형 반합" @@ -105498,7 +105501,6 @@ msgstr "" "가열기구가 포함되어있지 않습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "군용 반합" @@ -105517,7 +105519,6 @@ msgstr "" "발생시키고 화학적 연료가 필요한 헥사민 조리기구 대신 배터리로 돌아가는 핫플레이트를 사용합니다. 작고, 튼튼하며, 가볍기까지 합니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "절구와 공이" @@ -105534,7 +105535,6 @@ msgstr "" "오래 걸립니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "멀티쿠커" @@ -105563,7 +105563,6 @@ msgid "" msgstr "전문가용 멀티쿠커. 캠핑 여행이나 야외 파티에 쓸 수 있도록 배터리 장착부가 달려있습니다. 지금은 음식이 담겨있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "등유 조리기구" @@ -105576,7 +105575,6 @@ msgid "" msgstr "등유로 작동하는 간단한 가열기구입니다. 음식을 요리하는데 쓰입니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "파스타 압출기" @@ -105589,7 +105587,6 @@ msgid "" msgstr "손잡이를 돌려 작동하는 파스타 압출기입니다. 여러 모양틀이 딸려있어 다양한 종류의 파스타를 만들 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "발효중인 피클 유리병" @@ -105614,7 +105611,6 @@ msgid "" msgstr "유리병에 피클을 넣어 발효시키고 있는 중입니다. 일단 발효가 다 되면 밀봉해서 보존할 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "깡통 조리기구" @@ -105627,7 +105623,6 @@ msgid "" msgstr "가열기가 달린 초경량 알코올 화로입니다. 농축 알코올 연료를 담을 수 있는 500ml 들이 플라스틱 병이 달려있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "압력솥" @@ -105643,7 +105638,6 @@ msgstr "" "또한 압력에 민감한 화학 반응을 만드는데 사용할 수도 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "맷돌" @@ -105654,7 +105648,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "곡물을 가는데 사용되는 단순한 맷돌. 손으로 돌리는 것입니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "발효중인 자우어크라우트 유리병" @@ -105703,7 +105696,6 @@ msgid "" msgstr "점토로 만든 원시적인 증류기입니다. 냉각관 역할을 하는 긴 목이 달려있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "생존용 반합" @@ -105719,7 +105711,6 @@ msgstr "" "뛰어난 도구와 재질로 구성되어 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "찻주전자" @@ -105730,7 +105721,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "조그만 금속 찻주전자입니다. 티타임을 가질 때 꼭 필요합니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "진공 포장기" @@ -105744,7 +105734,6 @@ msgstr "" "휴대용 진공포장기입니다. 비닐로 싸고 열로 밀봉한 후 공기 펌프로 공기를 뺍니다. 음식을 진공포장해서 오래 보존할 수 있습니다." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "와플 틀" @@ -105833,7 +105822,6 @@ msgid "" msgstr "군대에서 쓰는 간이 침대입니다. 침대만큼 편하지는 않지만 땅바닥에 드러눕는 것보다는 낫습니다." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "접이식 자전거" @@ -105848,6 +105836,21 @@ msgstr "긴 고생 끝에 접이식 자전거를 펴고, 탈 준비를 했다." msgid "This is a bicycle folded into a relatively portable package." msgstr "보관하기 쉽도록 접을 수 있는 자전거." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "스케이트보드" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -105856,7 +105859,6 @@ msgid "" msgstr "사체를 공중에 매달 수 있도록 설계된 금속 도축 선반입니다. 운반하기 쉽도록 접혀있습니다." #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "고무보트" @@ -105908,7 +105910,6 @@ msgstr "" " 쉽게 돌돌 말아놓았습니다." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "접힌 버터제조기" @@ -105942,7 +105943,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "접혀있는 강철 프레임 플라스틱 의자입니다. 사용하여 설치 후 앉을 수 있습니다." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "개량형 UPS" @@ -105960,7 +105960,6 @@ msgstr "" "공급할 수 있습니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "카메라" @@ -105976,7 +105975,6 @@ msgstr "" "흔히쓰는 배터리로 작동합니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "전문가용 카메라" @@ -105996,7 +105994,6 @@ msgstr "" "작동합니다. 대재앙이 일어나기 전이었다면 이 카메라로 전문가 수준의 사진을 남길 수 있었을텐데요." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "휴대폰" @@ -106025,7 +106022,6 @@ msgstr "" " 인기가 많습니다. 충분히 충전되어 있는 휴대폰을 사용하면 불이 켜집니다. 알람을 포함한 시계 기능이 있습니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "휴대폰 - 화면 켜짐" @@ -106039,7 +106035,6 @@ msgid "You stop lighting up the screen." msgstr "핸드폰 화면을 껐다." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "로봇 제어용 노트북" @@ -106055,7 +106050,6 @@ msgstr "" "수 있습니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "지향성 안테나" @@ -106082,7 +106076,6 @@ msgstr "" "그렇지만, 응답할 경찰이 죄다 살아있는 시체가 되었으니, 뭔가 창의적인 생각을 해내지 않으면 아주, 아주 오랫동안 기다려야 할 것 같습니다..." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "전자잉크 태블릿 PC" @@ -106097,9 +106090,7 @@ msgstr "" "효율적인 컬러 전자잉크 디스플레이를 사용하는 태블릿 PC입니다. UPS 충전과 호환되는 재충전 가능한 배터리로 작동합니다. 대재앙 " "이전에는 실용적인 도구였고, 지금은 무척 귀중한 자원입니다." -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "전자 해킹장치" @@ -106117,7 +106108,6 @@ msgstr "" "기술만 있으면 이것으로 비밀번호를 크래킹하거나 그 이상의 행동을 할 수 있습니다. 사용시마다 25 배터리가 사용됩니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "가이거 계수기 (꺼짐)" @@ -106134,7 +106124,6 @@ msgstr "" " 계속 알려줍니다. 현재는 꺼져있습니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "가이거 계수기 (켜짐)" @@ -106152,7 +106141,6 @@ msgstr "" " 확인하거나, 몸의 수치를 측정할 수 있습니다. 현재는 켜져있습니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "수동식 배터리 충전기" @@ -106182,7 +106170,6 @@ msgid_plural "laptop computers - lit screen" msgstr[0] "노트북 컴퓨터 (화면 켜짐)" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "MP3 플레이어 (꺼짐)" @@ -106215,7 +106202,6 @@ msgstr "" "소모됩니다. 사용해서 전원을 끕니다만, 들은 것도 잊어버릴 겁니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "소음 발생기 (꺼짐)" @@ -106246,7 +106232,6 @@ msgid "" msgstr "장비가 켜졌고, 끔찍한 지지직, 펑펑, 뭐 그런 요란한 소리를 내고 있습니다. 좀비가 몰려오기 전에 도망치세요!" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "휴대용 게임기" @@ -106263,7 +106248,6 @@ msgstr "" " 전력을 끌어오도록 설정할 수도 있습니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "스마트폰" @@ -106347,7 +106331,6 @@ msgstr "" "민수용 버전은 가정용 전자기기를 위한 휴대용 전력 저장소 겸 인버터로 작동합니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "바이브레이터" @@ -106360,7 +106343,6 @@ msgid "" msgstr "마사지를 통해 긴장을 완화시키고 편안함을 가져다주는 배터리 작동식 기계. 사용하면 휴식을 취하며 긴장을 완화시킨다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "바이오닉 탐지기" @@ -106383,7 +106365,6 @@ msgid "" msgstr "바이오닉 장치를 탐지하는데 특화된 소형 금속 탐지기입니다. 작동시키면 근처 시체에 있는 바이오닉을 탐지할 수 있습니다." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "바이오닉 탐지기 (켜짐)" @@ -106399,7 +106380,6 @@ msgstr "" "있습니다." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "쇠지렛대" @@ -106415,7 +106395,6 @@ msgstr "" "머리통을 깨부수는 데 사용할 수도 있다." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "머리핀 락픽" @@ -106434,7 +106413,6 @@ msgstr "" "사용하는 것보다 자물쇠를 따는 것을 우선시할 것입니다." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "간이 락픽" @@ -106452,7 +106430,6 @@ msgstr "" " 가능성은 낮습니다. 몸을 숙인 상태로 잠긴 문을 조사하면 쇠지레를 사용하는 것보다 자물쇠를 따는 것을 우선시할 것입니다." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "얼음 도끼" @@ -106468,7 +106445,6 @@ msgstr "" "충분히 튼튼하다. 국내 한정 독일어식으로 바일, 피켈 등으로도 부른다." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "간이 쇠지레" @@ -106485,7 +106461,6 @@ msgstr "" " 창문을 여는데도 쓸 수 있습니다. 또한 급한 상황이라면 무기로도 쓸만합니다." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "락픽 세트" @@ -107471,7 +107446,6 @@ msgid "" msgstr "많은 양의 연기를 내뿜으며 큰 소리로 불타고 불에 타버린 로켓 사탕 덩어리입니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "전기 발화장치" @@ -107484,7 +107458,6 @@ msgid "" msgstr "조잡한 전기 발화 장치입니다. 간이 라이터로 쓸만합니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "발화용 나무드릴" @@ -107501,7 +107474,6 @@ msgstr "" "불을 지피려면 오랜 시간이 걸리며 상당히 어렵습니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "튼튼한 발화용 나무드릴" @@ -107518,7 +107490,6 @@ msgstr "" "사용하여 불을 지피려면 오랜 시간이 걸리며 상당히 어렵습니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "파이어스틸" @@ -107532,7 +107503,6 @@ msgid "" msgstr "마그네슘 막대와 탄소강 점화부입니다. 사용하여 불꽃을 일으킬 수 있습니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "라이터" @@ -107548,7 +107518,6 @@ msgstr "" "붙이는데도 쓸 수 있습니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "돋보기" @@ -107562,7 +107531,6 @@ msgid "" msgstr "돋보기. 맑은 낮 시간이라면 불을 피우는데 사용할 수 있다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "성냥갑" @@ -107579,7 +107547,6 @@ msgstr "" " 물건에 불을 붙이는데도 쓸 수 있습니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "재사용 라이터" @@ -107619,7 +107586,6 @@ msgid "" msgstr "지포식 커버와 재충전 가능한 탱크가 달린 라이터입니다. 켜져 있습니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "불씨 보관통" @@ -107650,7 +107616,6 @@ msgstr "" "현대적인 도구 없이도 불을 피울 수 있게 합니다." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "불씨 보관통 (불붙음)" @@ -107687,7 +107652,6 @@ msgid "" msgstr "배터리로 작동하는 라이터입니다. 수제 전기 발화기구에 비해 훨씬 효율적이며, 배터리가 꽤 오랫동안 유지될 것입니다." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "비상용 도끼" @@ -107715,7 +107679,6 @@ msgid "" msgstr "소화제를 5갤런만큼 담고 있는 비상용 소화기입니다. 근처 불을 끄는데 유용합니다." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "소방도끼" @@ -107730,7 +107693,6 @@ msgstr "" "휘두르는데 시간이 걸립니다." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "할리건 바" @@ -107786,7 +107748,6 @@ msgid "" msgstr "튼튼한 유리섬유의 한쪽 끝에 작은 금속 갈고리가 달린 내구성이 강한 도구입니다." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "뉴욕 후크" @@ -107799,7 +107760,6 @@ msgid "" msgstr "한쪽 끝에 고리, 다른쪽 끝에 크로우바가 달린 긴 막대입니다. 강철 덩어리 하나를 다듬어 만들었습니다." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "플라스틱 통발" @@ -107833,7 +107793,6 @@ msgstr "" " 물리러 올 경찰은 더는 없죠." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "낚싯바늘" @@ -107844,7 +107803,6 @@ msgid "A simple fishing hook." msgstr "간단한 낚싯바늘." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "급조한 낚싯바늘" @@ -107855,7 +107813,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "뼈나 나무를 깎아 급조한 낚싯바늘." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "간이 낚싯대" @@ -107868,7 +107825,6 @@ msgid "" msgstr "이걸 '낚싯대'라고 불러주는건 좀 너무 거창한 표현 같습니다. 사실 실과 낚싯바늘을 단 막대기에 불과하거든요." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "전문가용 낚싯대" @@ -107881,7 +107837,6 @@ msgid "" msgstr "무게추가 포함된 전문가용 낚싯대입니다. 이것만 있다면 물고기를 힘차게 들어올리며 \"넌 내거야!\" 라고 외칠 수 있을겁니다." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "핸드 프레스" @@ -107894,7 +107849,6 @@ msgid "" msgstr "수제 탄약을 만드는데 쓰이는 소형 핸드 프레스입니다. 당신만의 수제탄을 만드는데 필요한 모든 것이 포함되어있습니다." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "급조 산탄 프레스" @@ -107913,7 +107867,6 @@ msgstr "" "크기 못, 깎아낸 장부촉이 포함되어 있습니다. 판자 반대편에는 플라스틱 탄피에 주름을 잡을 수 있도록 독특한 모양을 냈습니다." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "탄약 분해 도구" @@ -107940,7 +107893,6 @@ msgstr "" "수제 탄약을 만들거나 탄약을 분해해 재료를 수급하는데 두루 유용합니다." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "구리 칼" @@ -107968,7 +107920,6 @@ msgstr "" " 가볍고 작아서 주머니에 넣어도 공간을 거의 차지하지 않습니다." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "밀도" @@ -107981,7 +107932,6 @@ msgid "" msgstr "벌집에서 꿀을 채집하는데 쓰이는, 나이프 비슷하게 생긴 날카로운 도구입니다. 근접무기로도 그럭저럭 쓸만합니다." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "주머니 칼" @@ -108021,7 +107971,6 @@ msgstr "" "날카롭게 갈아낸 돌이나 도자기 파편을 속이 빈 손잡이 안에 끼운 것입니다. 제대로 된 칼만큼 유용하지는 않지만, 없는 것보다는 낫습니다." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "뒤지개" @@ -108034,7 +107983,6 @@ msgid "" msgstr "땅을 파기에 적당하도록 끝을 넓게 깎은 큰 나무 막대기. 얕은 구덩이를 팔 수는 있지만, 깊게 팔 수는 없습니다. " #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "모종삽" @@ -108046,7 +107994,6 @@ msgid "" msgstr "작고 날카로운 모종삽. 유충과 지렁이를 파내는데 안성맞춤이다." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "괭이" @@ -108059,7 +108006,6 @@ msgid "" msgstr "농사지을 때 쓰는 도구입니다. 땅을 개간하여 농지로 만드는데 사용하거나 얕은 구덩이를 만드는데 사용 합니다." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "원시적 삽" @@ -108086,7 +108032,6 @@ msgid "" msgstr "투박하게 성형한 돌판이나 도자기판을 막대에 붙인 것입니다. 삽으로 쓰기에 충분하지만, 진짜 삽만큼 쓸만하지는 않습니다." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "대낫" @@ -108102,7 +108047,6 @@ msgstr "" "것입니다." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "삽" @@ -108125,7 +108069,6 @@ msgid "" msgstr "손잡이를 잘라내 휴대하기 쉽게 만든 삽입니다. 평범한 삽처럼 구멍을 파는데 쓰이지만, 무기로서는 보다 덜 효과적입니다." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "낫" @@ -108140,7 +108083,6 @@ msgstr "" "이 구식 농장 도구는 긴 풀을 자를 때 썻었습니다. 손잡이에 엄청나게 휜 날이 있으나, 원래 목적 이외엔 사용하기 매우 힘들 것입니다." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "전정기 (꺼짐)" @@ -108183,7 +108125,6 @@ msgid "" msgstr "휘발유 작동식 무선 양면 전정기. 현재 작동 중이며, 좀비를 다듬을 준비가 되어있다. 사용하면 동작을 멈춘다." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "원자력 스탠드" @@ -108207,7 +108148,6 @@ msgstr "" "있습니다." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "원자력 스탠드 (덮임)" @@ -108233,7 +108173,6 @@ msgstr "" "있습니다." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "원자력 독서용 램프" @@ -108241,7 +108180,7 @@ msgstr[0] "원자력 독서용 램프" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "야간등에 덮개를 덮었습니다." @@ -108258,7 +108197,6 @@ msgstr "" "어두운게 무서운 금수저 아이가 야간등으로 썼는지, 귀여운 만화풍 곰 커버가 딸려있습니다. 사용하여 커버를 덮고 빛을 숨길 수 있습니다." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "원자력 독서용 램프 (덮임)" @@ -108268,7 +108206,7 @@ msgstr[0] "원자력 독서용 램프 (덮임)" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "야간등의 덮개를 벗깁니다." @@ -108320,7 +108258,6 @@ msgid "" msgstr "굵은 양초. 그다지 환하지는 않지만, 그만큼 오래갑니다. 현재 불이 붙어있습니다." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "전기 랜턴 (꺼짐)" @@ -108361,7 +108298,6 @@ msgid "You turn the lamp off." msgstr "랜턴을 껐습니다." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "손전등 (꺼짐)" @@ -108516,7 +108452,6 @@ msgid "" msgstr "마그네슘 섬광탄이 타오르며 빛을 내뿜고 있습니다. 빛은 약 30분 정도 지속되다가 꺼집니다." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "고강도 손전등 (꺼짐)" @@ -108647,7 +108582,6 @@ msgid "The %s is extinguished" msgstr "%s(이)가 꺼졌습니다." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "독서용 램프" @@ -108687,7 +108621,6 @@ msgid "" msgstr "작은 클립으로 된 LED 조명, 어두운곳에서 책을 읽는것을 의미한다.켜져있다." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "스마트 램프 (꺼짐)" @@ -108737,7 +108670,7 @@ msgstr[0] "횃불" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "횃불 점화" @@ -108745,7 +108678,7 @@ msgstr "횃불 점화" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "횃불에 불을 붙였습니다." @@ -108761,7 +108694,7 @@ msgstr "가연성 물질을 적신 천조각을 둘둘 만 큰 막대. 불을 #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "횃불을 껐습니다." @@ -108773,7 +108706,6 @@ msgid "" msgstr "가연성 물질을 적신 천조각을 둘둘 만 큰 막대. 불이 타오르고 있어 주변을 환히 밝혀줍니다." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "석조 톱 (꺼짐)" @@ -108843,7 +108775,6 @@ msgstr "" "것이기 때문에 개별적으로 사용할수 없습니다." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "오토클레이브" @@ -108889,7 +108820,6 @@ msgstr "" "시간에 두 번 이상 사용하지 말라는 경고문구가 적혀있습니다." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "메스" @@ -108918,7 +108848,6 @@ msgstr "" "회복할 수 있도록 도와주고 기운을 회복시켜줍니다." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "주사기" @@ -108929,7 +108858,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "의료용 주사기. 약물을 정맥에 주사할 수 있다." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "온도계" @@ -108955,7 +108883,6 @@ msgstr "" " 도와주고 기운을 회복시켜줍니다." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "채혈기" @@ -108969,7 +108896,6 @@ msgid "" msgstr "채혈용 도구로, 혈액 샘플을 보관하는데 쓰이는 시험관이 들어있습니다. 사용하면 자기 자신이나 발밑의 시체에서 피를 뽑습니다." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "미사용 방사선 배지" @@ -109002,7 +108928,6 @@ msgstr "" "모서리에 끌처럼 생긴 돌출부가 있는 특이한 형상의, 엄청나게 무거운 철 덩어리입니다. 대부분의 금속 가공 및 제작에 사용됩니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "청동 모루" @@ -109015,7 +108940,6 @@ msgid "" msgstr "모서리에 끌처럼 생긴 돌출부가 있는 특이한 형상의 청동 덩어리입니다. 대부분의 금속 가공 및 제작에 사용됩니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "절단기" @@ -109029,7 +108953,6 @@ msgid "" msgstr "커다란 절단기. 사용하면 자물쇠나 굵은 철사를 잘라낼 수 있습니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "목탄 용광로" @@ -109053,7 +108976,6 @@ msgstr "" " 숯이 만들어집니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "금속가공용 정" @@ -109066,7 +108988,6 @@ msgid "" msgstr "짧고 튼튼한 금속 가공용 정. 금속 세공 및 제작에 쓰입니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "도가니" @@ -109079,7 +109000,6 @@ msgid "" msgstr "작은 금속 가공용 도가니. 몇몇 금속 물품 제작에 쓰입니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "점토 도가니" @@ -109092,7 +109012,6 @@ msgid "" msgstr "점토로 만들어진 원시적인 금속 가공용 도가니. 금속 가공에 쓸 수 있습니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "전기 용광로" @@ -109110,7 +109029,6 @@ msgstr "" " 지식이 좀 있다면, 차량 내부 전력으로 작동하도록 개조할 수도 있습니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "목탄 가마 (완성됨)" @@ -109145,7 +109063,6 @@ msgid "" msgstr "나무를 가득 채운 목탄 가마입니다. 나무를 천천히 연소시켜 목탄으로 만들 수 있습니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "목탄 가마 (불붙음)" @@ -109180,7 +109097,6 @@ msgid "" msgstr "리벳으로 고정한 사슬 판입니다. 적절한 기술이 있다면 이러한 판을 여러 장 연결해 괜찮은 갑옷으로 만들 수 있습니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "거푸집과 금형기 세트" @@ -109193,7 +109109,6 @@ msgid "" msgstr "금속 세공사를 위한 단조용 도구들. 이 고리와 금속 블록들은 금속 세공 및 제작에 쓰입니다." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "금속 집게" @@ -109229,7 +109144,6 @@ msgid "" msgstr "자그만 압축 공기캔이 달린 플라스틱 경적입니다. 버튼을 누르면 커다란 빵빵 소리를 냅니다." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "알람 시계" @@ -109361,7 +109275,6 @@ msgstr "" "돌연변이 부여 테스트를 위한 디버그 전용 물품입니다. 장비하면 하루종일 깨어있을 수 있고, 은밀해지며, 어둠 속에서 볼 수 있습니다." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "야전삽" @@ -109397,7 +109310,6 @@ msgid "" msgstr "이 화살은 촉 가까이의 화살대에 가연성 액체를 적신 천을 감아두었습니다. 사용하기 전에 불을 붙여야한다." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "모피 롤매트" @@ -109418,7 +109330,6 @@ msgstr "" "놓으십시오." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "그래플링 후크" @@ -109444,7 +109355,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "동그란 철제 손잡이가 달린 간단한 고기용 갈고리." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "수동 펌프" @@ -109492,7 +109402,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "차량 전력으로 작동하는 차량용 경적." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "대형 난방기" @@ -109530,7 +109439,6 @@ msgid "You turn off the heater." msgstr "난방기를 끕니다." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "빨대형 정수기" @@ -109629,7 +109537,6 @@ msgstr "" "구식 휴대용 시계입니다. 시간을 알려주는 용도이고, 그 역할을 잘 해내고 있는 것 같습니다. 분해하여 쓸만한 부품을 얻을 수도 있습니다." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "롤매트" @@ -109675,7 +109582,6 @@ msgid "" msgstr "유해 폐기물을 봉인하는 석관의 엘리베이터를 작동시킬 수 있는 코드가 적힌 쪽지." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "소형 난방기" @@ -109826,7 +109732,6 @@ msgstr "" "같다." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "호루라기 멀티툴" @@ -109946,7 +109851,6 @@ msgid "" msgstr "반짝이는 황금색 바이올린. 이상한 기운이 서려 있다. 반드시 가져야 할 것 같은 느낌이 든다." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "닭장" @@ -109962,7 +109866,6 @@ msgstr "" "수 있다." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "개 호루라기" @@ -109978,7 +109881,6 @@ msgstr "" " 사용하면 적을 공격하게 할 수도 있습니다." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "양털 가위" @@ -109989,7 +109891,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "양의 털을 자르는 용도로 쓰이는 가위입니다." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "전기 양털 가위" @@ -110000,7 +109901,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "이 전기 양털 가위를 쓰면 동물의 털을 더 빠르게 자를 수 있습니다." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "마구" @@ -110013,7 +109913,6 @@ msgid "" msgstr "안장과 굴레가 포함된 마구로, 탑승 가능한 길들인 동물에게 씌울 수 있습니다." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "애완동물 이동장" @@ -110026,7 +109925,6 @@ msgid "" msgstr "애완동물들을 운반하는데 쓰이는 플라스틱 상자입니다. 적당한 동물에게 사용하면 담고, 빈 타일에 사용하면 풀어줍니다." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "애완동물 목제 이동장" @@ -110039,7 +109937,6 @@ msgid "" msgstr "애완동물들을 운반하는데 쓰이는 나무 상자입니다. 적당한 동물에게 사용하면 담고, 빈 타일에 사용하면 풀어줍니다." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "목제 개 호루라기" @@ -110077,7 +109974,6 @@ msgid "" msgstr "무선조종기와 배터리가 포함된 RC카입니다. 분해하여 내용물을 꺼내 놀 수 있습니다." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "RC 조종기" @@ -110093,7 +109989,6 @@ msgstr "" "없는데 아마 디럭스 모델에 쓰는 버튼인지도 모릅니다." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "RC카" @@ -110128,7 +110023,6 @@ msgid "" msgstr "적절한 물건에 부착하여 라디오 신호 수신으로 작동하게 만드는 소형 전자기기." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "라디오 (꺼짐)" @@ -110153,7 +110047,6 @@ msgid "" msgstr "이 휴대용 라디오는 켜져있고, 끊임없이 배터리를 소모하고 있습니다. 근처 방송탑의 방송이 나오고있습니다." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "양방향 라디오" @@ -110168,7 +110061,6 @@ msgstr "" "사람들은 없어보입니다…" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "차량 원격조종 장치" @@ -110247,7 +110139,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "방수포 빗물받이" @@ -110264,7 +110155,6 @@ msgid "" msgstr "빗물받이를 설치할 몇 개의 막대기와 끈과 방수포입니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "기압계" @@ -110290,7 +110180,6 @@ msgstr "" "움직이는게 느껴집니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "화학 용품" @@ -110306,7 +110195,6 @@ msgstr "" "있지만 열원이 필요합니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "기초 화학 용품" @@ -110320,7 +110208,6 @@ msgid "" msgstr "유리 용기, 고무관, 보안경이 든 기초 화학 용품 세트. 원하는 화학 제품을 제작할 수도 있지만 열원이 필요합니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "전기 분해 키트" @@ -110348,7 +110235,6 @@ msgid "" msgstr "압축된 부탄의 탱크입니다. 이것은 천연 재료에서 정유을 추출하는 데 사용될 수 있습니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "수소 탱크" @@ -110361,7 +110247,6 @@ msgid "" msgstr "압축 수소 가스 탱크입니다. 물을 만들거나 비행선을 뜨워야 한다면, 유용할 것 입니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "습도계" @@ -110372,7 +110257,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "상대 습도를 알려주는 플라스틱 습도계." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "질소 탱크" @@ -110385,7 +110269,6 @@ msgid "" msgstr "압축 질소 가스 탱크입니다. 질소는 반응성이 낮기 때문에 유용합니다. 들이 마시려 하지 마세요." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "산소통" @@ -110398,7 +110281,6 @@ msgid "" msgstr "고압 가스를 저장하는 데 사용되는 대형 실린더 입니다. 그것은 색이 바랜 O2 기호가 표기되어 있다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "백금 그릴" @@ -110448,7 +110330,6 @@ msgid "" msgstr "실험적인 장치로, 작동하면 가까운 거리로 순간이동시켜줍니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "도플러 레이더 터보 2000" @@ -110464,7 +110345,6 @@ msgstr "" "안타깝게도 플린트 록우드의 음식 복제기의 징후는 없습니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "기본형 실험실 분석 키트" @@ -110483,7 +110363,6 @@ msgstr "" " 큰 도움이 됩니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "작은 저울" @@ -110496,7 +110375,6 @@ msgid "" msgstr "금속 추 를 올려서 다른 물체의 무게를 정확하게 측정하는 도구." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "분광 광도계" @@ -110509,7 +110387,6 @@ msgid "" msgstr "빛을 분석 측정하는 화학 도구. 큐벳이라고 불리는 특수 튜브에서 액체 샘플의 광 흡수를 측정합니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "pH 측정기" @@ -110525,7 +110402,6 @@ msgstr "" "측정할 수 있습니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "전압계" @@ -110542,7 +110418,6 @@ msgstr "" " 배터리 충전량 또한 확인할 수 있습니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "용해점 측정 기구" @@ -110561,7 +110436,6 @@ msgstr "" " 포함되어있습니다. 이 장치로 결정의 녹는 점을 정밀하게 측정하여, 종류와 순도를 확인하는데 써먹을 수 있습니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "볼텍스 믹서" @@ -110580,7 +110454,6 @@ msgstr "" "작동시켜보면 놀랄정도로 재밌습니다!" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "광 감지기" @@ -110593,7 +110466,6 @@ msgid "" msgstr "들어오는 빛을 전력으로 변환해 측정하는 광전 다이오드가 들어있는 칩입니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "유리 프리즘" @@ -110618,7 +110490,6 @@ msgid "" msgstr "작은 유리 튜브입니다. 이걸 가지고 뭘 더 알 수 있을까요?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "현미경" @@ -110635,7 +110506,6 @@ msgstr "" "않지만, 이외 부분은 놀라울 정도로 완벽하게 작동합니다. 불행히도 지금 당장은 그다지 쓸모가 없어보입니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "해부용 현미경" @@ -110651,7 +110521,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "분리 깔때기" @@ -110668,7 +110537,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "회전증발농축기" @@ -110687,7 +110555,6 @@ msgstr "" "플라스크들은 계속 회전하며 열을 받아 내용물이 증류됩니다. 증류된 것들은 사용할 수 있도록 다른 플라스크에 모이게 됩니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "분별증류장치" @@ -110709,7 +110576,6 @@ msgstr "" " 위스키 증류에 쓰기는 적절하지 않겠네요." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "전기영동 트레이" @@ -110727,7 +110593,6 @@ msgstr "" "단백질이나 DNA 등의 물질을 전하와 크기에 따라 젤에 분리시킬 수 있습니다. 지금은 분해하는 것 이외에는 쓸모가 없습니다." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "원심분리기" @@ -110786,7 +110651,6 @@ msgid "" msgstr "막대기와 가죽으로 만든 작은 피난처. 사용해서 설치할 수 있습니다. 현재 손상을 입은 상태이므로, 수리가 필요합니다." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "대형 텐트" @@ -110799,7 +110663,6 @@ msgid "" msgstr "한 가족이 잘 수 있을정도로 커다란 텐트. 넓은 공간을 제공해주지만, 그만큼 부피도 만만치 않습니다." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "피난처 키트" @@ -110810,7 +110673,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "막대기와 가죽으로 만든 작은 피난처. 사용해서 설치할 수 있습니다." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "텐트" @@ -110872,7 +110734,6 @@ msgid "" msgstr "수제 나무 파이프. 담뱃잎을 태워서 흡입하는데 사용됩니다." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "스테이플러" @@ -110883,7 +110744,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "종이를 묶는 스테이플러." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "볼펜" @@ -110894,7 +110754,6 @@ msgid "A plastic ball point pen." msgstr "플라스틱 볼펜입니다." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "가위" @@ -110908,7 +110767,6 @@ msgid "" msgstr "고강도 가위입니다. 의복 같은 면직물을 잘라 천 조각으로 만들 수 있습니다." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "종이" @@ -110919,7 +110777,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "종잇장으로, 불 피우는데 쓸 수 있습니다." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "뼈 송곳" @@ -110934,7 +110791,6 @@ msgstr "" "거칠게 갈아 만든 뼈 송곳 금속이 발견되기 전 가죽 가공에 사용되었습니다. 즉석에서 찌르는 무기로도 쓸 수 있지만 금방 부러질 것입니다." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "강철 송곳" @@ -110948,7 +110804,6 @@ msgstr "" "나무 손잡이가 달린 철제 송곳으로, 주로 가죽 가공에 사용됩니다. 즉석에서 찌르는 무기로도 쓸 수 있지만 금방 부러질 것 입니다." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "뜨개질바늘" @@ -110962,7 +110817,6 @@ msgid "" msgstr "실과 실타래로 옷을 짜는데 쓰이는, 끝이 뭉툭하고 튼튼한 나무 뜨개바늘 한 쌍." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "뼈 바늘" @@ -110988,7 +110842,6 @@ msgstr "" "필요합니다." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "나무 바늘" @@ -111005,8 +110858,7 @@ msgstr "" "작업, 또는 케블라 같은 튼튼한 재료를 쓰는 작업에는 쓸 수 없을 것 같습니다." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "반짇고리" @@ -111038,8 +110890,7 @@ msgstr "" "디자인 패턴이 필수입니다." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "재단용 도구" @@ -111056,7 +110907,6 @@ msgstr "" "있게 수선하는 등 의복이나 갑옷을 개조하는데 쓸 수 있습니다." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "체중계" @@ -111067,7 +110917,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "작은 체중계로, 벌거벗은 사람의 몸무게를 잴때 사용합니다." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "청소용 솔" @@ -111078,7 +110927,6 @@ msgid "This is a simple scrub brush." msgstr "단순한 청소용 솔 입니다" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "전기 이발기" @@ -111109,17 +110957,16 @@ msgstr "" #: data/json/items/tool/toiletries.json msgid "collapsible mop" msgid_plural "collapsible mops" -msgstr[0] "" +msgstr[0] "접이식 대걸레" #. ~ Description for {'str': 'collapsible mop'} #: data/json/items/tool/toiletries.json msgid "" "A long unwieldy mop with a collapsible handle for convenient transportation." " You may use it to clean up any 'mess' you have made." -msgstr "" +msgstr "간단히 들고 다닐 수 있도록 접이식 손잡이가 달린, 길고 불편한 대걸레입니다. 온갖 '쓰레기'를 청소하는데 유용합니다." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "면도날" @@ -111143,7 +110990,6 @@ msgid "" msgstr "소형, 경량의 여행용 면도 도구 세트. 면도할 때 비누랑 같이 사용하며, 비누의 사용량을 1회씩 소모합니다." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "스펀지" @@ -111178,7 +111024,6 @@ msgid "" msgstr "급조한 면도 도구 세트. 면도할 때 비누랑 같이 사용하며, 비누의 잔여량을 1회씩 소모합니다." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "빨래판" @@ -111191,7 +111036,6 @@ msgid "" msgstr "나무로 된 빨래판. 세정제와 함께 사용하면 불결한 옷가지를 세탁할 수 있습니다." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "세탁 도구" @@ -111230,7 +111074,6 @@ msgstr "" " 수 있는 함정을 만들죠. 만약 여러분이 삽을 들고 있다면, 여러분은 그것을 묻을 수 있는 선택권을 갖게 될 것입니다." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "칼날 덫" @@ -111251,7 +111094,6 @@ msgstr "" "3x3 효과 영역을 형성합니다." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "못판 덫" @@ -111296,7 +111138,6 @@ msgid "" msgstr "공기로 가득 찬 기포로 뒤덮인 플라스틱 시트입니다. 땅 위에 무언가가 밟을 때 소음으로 경고하는 트랩을 만들 때 사용합니다." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "성긴 마름쇠" @@ -111314,7 +111155,6 @@ msgid "" msgstr "여러 날카로운 부분이 있는 작은 금속 조각. 이 것을 보지 못한 적이 밟으면, 발에 구멍이 나게됩니다." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "성긴 유리 마름쇠" @@ -111368,7 +111208,6 @@ msgid "" msgstr "밟으면 폭발하는 군용 대인 지뢰입니다." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "쌍총열 산탄총 덫" @@ -111395,7 +111234,6 @@ msgid "" msgstr "장전된 쌍총열 산탄총의 방아쇠에 인계철선이 묶여있습니다. 당겨지면 산탄총이 발사됩니다." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "인계철선 덫" @@ -111432,7 +111270,6 @@ msgstr "" "해롭지 않습니다." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "유리 조각 덫" @@ -111452,7 +111289,6 @@ msgid "" msgstr "이전과 똑같은 유리조각들이지만, 사용하면 바닥에 설치하여, 누군가가 밟았을 때 소음을 내게 만듭니다." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "벌목용 도끼" @@ -111478,7 +111314,6 @@ msgstr "" "청동 도끼날이 달린, 커다란 양손 벌목 도끼입니다. 근접무기로 쓸만하지만, 휘두르는 동작이 커서 다시 휘두르는데 시간이 걸립니다." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "엔진톱 (꺼짐)" @@ -111515,7 +111350,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "엔진톱이 작동 중이며 굉음을 내고 있습니다. 사용하면 전원을 끕니다." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "원형톱 (꺼짐)" @@ -111557,7 +111391,6 @@ msgid "" msgstr "휴대용 경량형 무선 원형톱입니다. 현재 전원이 켜져있어 톱날이 회전 중입니다. 사용하면 전원을 끕니다." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "구리 도끼" @@ -111582,7 +111415,6 @@ msgid "" msgstr "한 손으로 쓸 수 있는 손도끼입니다. 근접 무기로도 좋지만 대상을 쪼개거나 망치처럼 쓸 수도 있습니다." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "전기톱 (꺼짐)" @@ -111675,7 +111507,6 @@ msgid "" msgstr "날을 세운 돌을 매단 막대기입니다. 나무를 자르는데 쓸 수 있지만, 현대 도끼를 쓰는 것보다 훨씬 힘들 것입니다." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "목공톱" @@ -111686,14 +111517,12 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "나무로 된 물건을 자를 때 유용하게 쓰이는 얇은 톱입니다." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "돌 끌" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -111822,7 +111651,6 @@ msgid "" msgstr "그릇 따위를 만들기에 적합한 도자기 팔레트입니다. 분해하여 팔레트 틀과 도자기를 회수할 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "아세틸렌 가스 생산기" @@ -111835,7 +111663,6 @@ msgid "" msgstr "물과 탄화 칼슘, 그리고 무압력 아세틸렌을 생산하는 부피가 큰 장치." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "앵글 그라인더" @@ -111848,7 +111675,6 @@ msgid "" msgstr "여분의 소재를 자르거나 표면을 광내기 위해 종종 사용되는 널리 알려진 전동 공구." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "벽돌 가마" @@ -111861,7 +111687,6 @@ msgid "" msgstr "목탄으로 작동하는 휴대용 가마. 원래 벽돌을 굽기 위한 것이지만 찰흙으로 만든 거라면 뭐든 구워낼 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "조면 장비" @@ -111875,7 +111700,6 @@ msgid "" msgstr "직물 생산에 사용될 순수한 면을 만드는데 사용되는 주걱 모양의 나무 솔." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "페인트 긁개" @@ -111886,7 +111710,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "페인트를 제거하기 위해 만들어진 끌처럼 생긴 도구." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "클램프" @@ -111899,7 +111722,6 @@ msgid "" msgstr "물건이 움직이지 않도록 고정하는데 쓰이는 클램프입니다. 여러 개를 사용하면 그만큼 더 튼튼하게 고정됩니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "크로우바" @@ -111915,7 +111737,6 @@ msgstr "" "있습니다. 또, 필요하다면 머리통을 깨부수는데도 쓸 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "콘크리트 믹서" @@ -111930,7 +111751,6 @@ msgstr "" "내장된 히터가 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "무선 드릴" @@ -111942,7 +111762,6 @@ msgid "" msgstr "배터리로 작동하는 무선 드릴입니다. 드릴 비트 세트가 딸려 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "실톳과 축" @@ -111955,7 +111774,6 @@ msgid "" msgstr "섬유를 실로 짜내는데 사용되도록 만들어진 나무 막대들." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "전기 착암기" @@ -111971,7 +111789,6 @@ msgstr "" "단단한 지형에 구멍을 뚫을 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "쇠톱" @@ -111995,7 +111812,6 @@ msgid "" msgstr "가느다란 와이어 양끝에 간단한 손잡이를 단 유연한 톱입니다. 경금속이나 나무, 혹은 사슬 울타리를 자르기에 충분합니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "망치" @@ -112026,7 +111842,6 @@ msgstr "" "판자로 막는 등의 무수히 많은 용도로 써먹을 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "손 드릴" @@ -112039,7 +111854,6 @@ msgid "" msgstr "손으로 돌리는 드릴. 속도가 느리고 빨리 지칩니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "고무호스" @@ -112052,7 +111866,6 @@ msgid "" msgstr "신축성 있는 고무호스. 재료로 쓰거나, 차량에서 연료를 빨아올릴 때 사용할 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "보틀 잭" @@ -112063,7 +111876,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "병 모양의 휴대용 유압식 잭. 차량을 들어올리는 데 씁니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "간이 잭" @@ -112076,7 +111888,6 @@ msgid "" msgstr "조잡하게 급조한 가위 잭. 차량을 들어올리는 데 씁니다. 이걸 실제로 쓸 만한 용기가 있다면요." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "가위 잭" @@ -112087,7 +111898,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "차량을 들어올리는 데 쓰는 간단한 가위형 잭." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "착암기" @@ -112101,7 +111911,6 @@ msgid "" msgstr "단단한 돌이나 그외 표면에 구멍을 뚫는 건설 용구. 가솔린으로 작동하며 사용하면 인접한 단단한 지형에 구멍을 뚫습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "타래송곳" @@ -112114,7 +111923,6 @@ msgid "" msgstr "땅바닥에 구멍을 파는데 쓰는 건설 용구입니다. 가솔린으로 작동하며, 건강을 위해서라면 투자할만한 가치가 있을겁니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "전기 가마" @@ -112131,7 +111939,6 @@ msgstr "" "대한 지식이 좀 있다면, 차량 내부 전력으로 작동하도록 개조할 수도 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "총기장인 수리도구" @@ -112147,7 +111954,6 @@ msgstr "" "필수적인 도구입니다. 한 번 사용할 때마다 배터리를 100씩 소모합니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "간이 망치" @@ -112160,7 +111966,6 @@ msgid "" msgstr "금속조각을 매단 막대기입니다. 망치처럼 뭔가를 두드리는데 쓸 수는 있지만, 제대로 된 망치와는 비교도 되지 않습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "금속 줄 세트" @@ -112173,7 +111978,6 @@ msgid "" msgstr "금속 물체의 표면에서 소량의 물질을 제거하기 위해 사용되는 도구." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "금속제 흙손" @@ -112186,7 +111990,6 @@ msgid "" msgstr "건설 현장에서 콘크리트나 회반죽을 평평하게 펴는데 쓰이는 금속제 도구." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "범용 수리도구" @@ -112219,7 +112022,6 @@ msgstr "" "도구모음입니다. 소나무 수지가 있다면 특정 물품의 수리에도 써먹을 수 있지만, 복잡한 작업에는 큰 도움이 되지 않을 것 같습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "플라스틱 거푸집" @@ -112232,7 +112034,6 @@ msgid "" msgstr "플라스틱 거푸집입니다. 이게 있으면 원하는 모양을 만들어서 플라스틱 물품을 제작할 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "멀티툴" @@ -112245,7 +112046,6 @@ msgid "" msgstr "여러 개의 작은 도구를 펜치로 결합하여 솜씨 좋게 설계된 일체형 도구입니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "아세틸렌 용접기" @@ -112263,7 +112063,6 @@ msgstr "" "전에 적절한 용접 가스의 가압 실린더에 연결해야 합니다. 금속 가공 용도 외에도 금속 장벽을 파괴하기 위해 사용 할 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "페인트 붓" @@ -112274,7 +112073,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "벽에 페인트칠을 할 때 사용하는 넓은 붓." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "곡괭이" @@ -112287,7 +112085,6 @@ msgid "" msgstr "큰 강철 곡괭이, 단단한 것을 부수거나 적절한 기술이 있다면 단단한 적을 부수는데 적합합니다. 땅을 내려치세요!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "핀 리머" @@ -112300,7 +112097,6 @@ msgid "" msgstr "휴대용 핀 리머는 기존의 구멍을 확대하거나, 가시 등을 제거하는 데 사용됩니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "펜치" @@ -112316,7 +112112,6 @@ msgstr "" "렌치가 필요할겁니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "전동 사포기" @@ -112341,7 +112136,6 @@ msgid "" msgstr "돌을 매단 막대기입니다. 망치처럼 뭔가를 두드리는데 쓸 수는 있지만, 제대로 된 망치와는 비교도 되지 않습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "스크류드라이버" @@ -112354,7 +112148,6 @@ msgid "" msgstr "필립스제 스크류드라이버. 거의 모든 가전 및 기계공학 제작에 중요하며 그 밖에 다른 용도도 많다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "스크류드라이버 세트" @@ -112367,7 +112160,6 @@ msgid "" msgstr "크기, 용도별로 들어있는 스크류드라이버 세트. 더 정밀한 작업을 하는데 알맞습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "총기 수리도구" @@ -112383,7 +112175,6 @@ msgstr "" "필수적인 도구입니다. 한 번 사용할 때마다 배터리를 100씩 소모합니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "전기 납땜기" @@ -112415,7 +112206,6 @@ msgstr "" " 버너 위에 놓여있습니다. 진짜 납땜기만큼 세련된 도구는 아닙니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "연장통" @@ -112428,7 +112218,6 @@ msgid "" msgstr "실내 보수작업이나 건설에 적합한 도구 세트를 모두 담고 있는 투박한 금속 상자입니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "작업용 연장통" @@ -112457,7 +112246,6 @@ msgid "" msgstr "당신의 손에서 튀어 나오는 도구모음. 이것으로 지지고, 썰고, 더 멋지게 만들수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "아크 용접기" @@ -112470,7 +112258,6 @@ msgid "" msgstr "배터리로 작동하는, 전기 아크를 이용해 금속조각을 용접하는데 쓰이는 공구입니다. 건축과 수리에 있어 필수적입니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "목제 흙손" @@ -112483,7 +112270,6 @@ msgid "" msgstr "건설 현장에서 콘크리트나 회반죽을 평평하게 펴는데 쓰이는 커다란 급조 도구. 머리를 후려치는데 쓸 수도 있다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "양털 뭉치" @@ -112496,7 +112282,6 @@ msgid "" msgstr "천연의 섬유인 양털뭉치. 양모 조각이나 실로 가공할 수 있습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "공작용 칼" @@ -112513,7 +112298,6 @@ msgstr "" "작고 날카로운 칼날은 숙련된 사람이 정확한 공격을 할 수 있도록 해준다. 시체를 도축하기에는 칼이 너무 작다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "렌치" @@ -112526,7 +112310,6 @@ msgid "" msgstr "조정가능한 반월형 렌치. 근접 무기로 적절하며 기계공학 제작에 많이 쓰입니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "가죽 호스" @@ -112542,7 +112325,6 @@ msgstr "" "신축성이 있지는 않습니다." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "간이 손 드릴" @@ -113717,6 +113499,16 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "플라스틱 재질의 대형 프레임입니다. 가벼우면서도 튼튼한 차량을 만드는데 쓰입니다." +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "스케이트보드 덱" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -114027,7 +113819,6 @@ msgstr "" "아이들이 뇌보다 아이스크림을 더 좋아하던 시절에 말이죠." #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "금속판" @@ -114427,6 +114218,12 @@ msgstr[0] "나무 탁자" msgid "A crude wooden table." msgstr "투박한 나무 탁자." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "로보벤치" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -114735,6 +114532,28 @@ msgstr[0] "다리 바퀴" msgid "A set of casters, like on a shopping cart." msgstr "주로 쇼핑카트 같은 곳에 달리는 다리 바퀴." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "스케이트보드 바퀴" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "스케이트보드 바퀴 장착대" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -115558,13 +115377,6 @@ msgstr "시멘트" msgid "FERTILIZER" msgstr "바료" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "암석" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -115884,13 +115696,6 @@ msgstr "종이" msgid "PLASTIC" msgstr "플라스틱" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "전자제품" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -116456,7 +116261,7 @@ msgstr "디버그 고통" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "고통 증가" @@ -116480,7 +116285,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "스태미너가 감소합니다. 미-고 노예상 광선에 쓰입니다." #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "고통" @@ -120329,14 +120134,14 @@ msgstr[0] "귀신들린 멀티쿠커" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "자아를 가지고 움직이는 멀티쿠커다! 조심해!!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "홀로그램" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "빛으로 만들어진 이미지로, 실제 이미지와 거의 동일합니다." @@ -125219,7 +125024,7 @@ msgstr "" #: data/json/mutations/mutations.json msgid "Fashion Deficient" -msgstr "" +msgstr "엉망진창인 패션" #. ~ Description for {'str': 'Fashion Deficient'} #: data/json/mutations/mutations.json @@ -125228,6 +125033,8 @@ msgid "" "you'd be perfectly happy to wear non-matching socks, or wear socks and " "sandals. You get no morale bonus from fancy equipment." msgstr "" +"당신은 스타일이란걸 모릅니다. 사실 '멋진' 옷을 입는데 아무 관심도 없습니다. 양말을 짝짝이로 신는다거나, 양말을 신고 샌들을 신어도 " +"완벽하게 행복할 정도입니다. 멋진 옷을 입어도 기분 보너스를 얻을 수 없습니다." #: data/json/mutations/mutations.json msgid "Light Step" @@ -130531,9 +130338,9 @@ msgstr "여행하는 데 같이 따라 올래?" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "거래하자." @@ -131380,9 +131187,9 @@ msgstr "넌 여기서 뭐하고 있어?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "여기서 나가고 싶지 않아?" @@ -131398,9 +131205,9 @@ msgstr "여기서 나가고 싶지 않아?" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "뭔가 해줄 일이 있을까?" @@ -131430,25 +131237,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "다른 곳으로 가지 그래?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "그럼 거래하자." #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "미안, 이만 가봐야겠어." @@ -131470,9 +131277,9 @@ msgid "You've seen other survivors?" msgstr "다른 생존자들을 봤다고?" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "뭔가 팔 물건이라도 있나?" @@ -138036,7 +137843,7 @@ msgstr "낙담한" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "이봐 ." @@ -148276,17 +148083,17 @@ msgstr "군사적인 문제 같군. 내가 도와주지." #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "임무에 대해서 말인데..." #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "그 임무들 중 하나 말인데..." @@ -149551,7 +149358,7 @@ msgid "" msgstr "옥상이라니! 이렇게 높다니! 사람들이 먼지처럼 작게 보여! 거기서 보자구, 친구. 널 실망시키지 않을테니." #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "이해가 안되는군." @@ -155758,9 +155565,9 @@ msgstr "살아남는데 도움이 될만한 조언이라도 있어?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "안녕." @@ -164023,7 +163830,7 @@ msgstr "" #. ~ Description for {'str': 'Stylish'} #: data/json/obsoletion/mutations.json msgid "Obsoleted due to becoming default behavior." -msgstr "" +msgstr "기본 특성이 된 관계로 구식화되었습니다." #: data/json/obsoletion/npc.json msgid "Head of Security" @@ -164790,7 +164597,6 @@ msgid "" msgstr "동물 사육 및 건초를 만들 풀을 재배하는 땅과 연관 시설 (헛간 및 별채 등) 입니다." #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "숲" @@ -165173,7 +164979,7 @@ msgid "island" msgstr "섬" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "오두막" @@ -165195,7 +165001,6 @@ msgstr "오두막 지하실" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "숲" @@ -167948,7 +167753,6 @@ msgid "scrap yard" msgstr "고철 하치장" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "호숫가" @@ -167995,7 +167799,7 @@ msgstr "무기" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "전체" @@ -168120,6 +167924,13 @@ msgstr "전자제품" msgid "CBMS" msgstr "CBM" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "도구" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -168133,7 +167944,7 @@ msgstr "조명" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "보호구" @@ -168174,7 +167985,7 @@ msgstr "의약품" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "재료" @@ -178915,7 +178726,7 @@ msgstr "접이식 경량 프레임" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -179008,6 +178819,13 @@ msgid "" msgstr "" "탄소섬유 프레임입니다. 프레임 위에 다른 차량 부품들을 장착할 수 있고, 또 다른 프레임을 붙여서 차량 크기를 늘릴 수 있습니다." +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "통로 조명" @@ -180841,6 +180659,24 @@ msgid "" "chair or grocery cart." msgstr "사무실용 의자나 마트 카트에 달리는, 피봇에 장착되는 작은 바퀴입니다." +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "스케이트보드 바퀴" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "스케이트보드 바퀴 장착대" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "바퀴" @@ -180910,7 +180746,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "차량 밖을 보게 해주는 유리판입니다. 철사로 보강되어 일반 유리보다 더 튼튼합니다." -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "자전거" @@ -180978,6 +180814,10 @@ msgstr "플라스틱 자전거" msgid "Carbon Fiber Bicycle" msgstr "탄소섬유 자전거" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "스케이트보드" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "카누" @@ -181123,8 +180963,8 @@ msgid "Wheelbarrow" msgstr "외바퀴 손수레" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "접이식 휠체어" +msgid "Wheelchair" +msgstr "휠체어" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -181466,7 +181306,6 @@ msgid "Tour Bus" msgstr "관광버스" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "보안용 밴" @@ -188214,7 +188053,7 @@ msgid "Holographic Flash Explosion" msgstr "홀로그램 섬광 폭발" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "홀로그램 전환" @@ -188222,8 +188061,8 @@ msgstr "홀로그램 전환" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -189170,11 +189009,11 @@ msgstr[0] "수납식 개머리판" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" -"총기 부피 감소를 위해 접을 수 있도록 만들어진 군용 개머리판입니다. 전완부에 고정하는 지지대와 무게 덕분에 안정성이 크게 높아집니다." +"총기 부피 감소를 위해 접을 수 있도록 만들어진 군용 개머리판입니다. 전완부에 고정하는 지지대 및 무게 덕분에 안정성이 크게 높아집니다." #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "diffracting lens" @@ -189185,10 +189024,10 @@ msgstr[0] "회절 렌즈" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" -"레이저 무기에 장착할 수 있는 렌즈로, 레이저를 회절시켜 저출력 레이저 여러 개로 분리시킵니다. 직사 피해와 적중률을 높이지만, 사거리를" -" 감소시킵니다." +"레이저 무기에 장착할 수 있는 렌즈로, 레이저를 회절시켜 저출력 레이저 여러개로 분리시킵니다. 직사 피해와 명중률이 증가하지만, 사거리가" +" 감소합니다." #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json msgid "C.R.I.T. gasmask (off)" @@ -205812,74 +205651,6 @@ msgstr "라윅의 오버맵 그래픽 변경 (Urban Development)" msgid "Urban Development mod support for Larwick's Overmap." msgstr "Urban Development 모드에 라윅의 오버맵 그래픽 호환을 추가합니다." -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "기타 도구" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "진입 도구" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "작업 도구" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "요리 도구" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "화학 도구" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "농장 도구" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "설치형" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "요리 재료" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "고철" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "폐전자제품" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "직물" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "폐목재" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "폐플라스틱" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "폐세라믹" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "폐유리" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "귀중품" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "흙" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "물품 종류 오버홀" @@ -205889,177 +205660,6 @@ msgstr "물품 종류 오버홀" msgid "Massively overhauls item categories to allow better sorting." msgstr "보다 나은 정리를 위해 물품 종류를 크게 변경합니다." -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "물품: 기타 도구" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "기타 도구를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "물품: 진입 도구" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "진입 도구를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "물품: 작업 도구" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "작업 도구를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "물품: 요리 도구" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "요리 도구를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "물품: 화학 도구" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "화학 도구를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "물품: 농장 도구" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "농장 도구를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "물품: 설치형" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "설치 가능한 물품을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "물품: 전자제품" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "전자제품을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "물품: 요리 재료" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "요리 재료를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "물품: 고철" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "고철을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "물품: 폐전자제품" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "폐전자제품을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "물품: 폐직물" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "폐직물을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "물품: 폐목재" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "폐목재를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "물품: 폐플라스틱" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "폐플라스틱을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "물품: 폐세라믹" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "폐세라믹을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "물품: 폐유리" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "폐유리를 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "물품: 귀중품" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "귀중품을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "물품: 돌" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "돌과 광물을 모아놓는 곳입니다." - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "물품: 흙" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "흙을 모아놓는 곳입니다." - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "진균 성장 제한" @@ -207358,92 +206958,112 @@ msgstr "%s(이)가 당신을 붙잡으려 했지만, 거칠게 쳐냅니다!" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "%s(이)가 (을)를 붙잡으려 했지만, 거칠게 쳐냅니다!" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" -msgstr[0] "CBM:혈액 발전기" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" +msgstr[0] "CBM:결정화된 마나 코 보형물" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -"등에 박힌 강력한 마법 집약 장치는 바이오닉 전원 공급 장치에 연결되어 죽은 생명체의 혈액을 흡수하여 바이오닉 전력을 생산할 수 " -"있습니다. 최대 100mL까지 저장할 수 있습니다." +"결정화된 마나와 기타 안정제 용도의 금속으로 만들어진 커다란 보석입니다. 두개골 내부에 설치하는 특수목적 파워팩이 포함되어 있으며, 이는" +" 일반적인 안면 기능에 방해되지 않습니다. 경고: 기술성애자 전용. 이 주문을 사용하면 당신은 프리켄 레이저 빔 사(社)와 그 산하 " +"회사에 대한 법적 권리를 포기하는 것입니다." -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "아울베어 모피 덧대기" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "덧댄 아울베어 모피 제거" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "악마 키틴질 덧대기" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "덧댄 악마 키틴질 제거" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "블랙 드래곤 비늘 코팅 추가" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "블랙 드래곤 비늘 코팅 제거" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "전송 관문 제작" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "이 의류는 아울베어 모피를 덧대어 보온력아주 높습니다." #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "이 의류는 악마 키틴질을 덧대어 화염 저항력아주 높습니다." -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "이 의류는 블랙 드래곤 비늘로 코팅되어 강산 저항력아주 높습니다." + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "전송 관문" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "전송용 관문입니다. 전송 주문을 시전하거나 관문을 작동하여 이 관문을 목적지로 설정하세요." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "마법진" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "거친 형태의 마법진으로, 지면에 원을 그려 새기고 피, 양초, 기타 작은 장식품들로 꾸몄습니다." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "빛나는 큰 바위" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "이건 뭔가 잘못됐습니다." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "인챈터의 작업대" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " @@ -207452,12 +207072,12 @@ msgstr "" "대부분의 연금물질 누출과 화재에 저항력을 갖는 견고한 수지 작업대가 달린 화려하게 장식된 참나무 캐비넷입니다. 전기와 가스 설비가 " "연결되어있으며, 대부분 장식에 불과한 여러 보호의 룬이 달려있습니다." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "대형 증류기" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " @@ -207466,12 +207086,12 @@ msgstr "" "연금혼합물을 증류하는데 쓰이는 유리-구리 재질의 대형 증류기입니다. 구리 솥, 뱅뱅 꼬인 유리관, 교체할 수 있는 유리병으로 " "구성되어있습니다." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "태양계 모형" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -207482,12 +207102,12 @@ msgstr "" "장비는 좀 더 현대적인 기술이 도입되어, 블루투스로 연결할 수 있고 스마트폰 어플리케이션으로 제어할 수도 있습니다. 전력이 멀쩡했다면 " "좋았을텐데요." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "거대한 마나 수정" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" @@ -207495,32 +207115,33 @@ msgid "" msgstr "" "마치 잔디처럼 바닥에서 자라난 것 같은 마나 수정입니다. 은은한 노란색 에너지가 맥동하며, 때때로 억눌려있던 섬광이 터져나오기도 합니다." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "유리 깨지는 소리!" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "마나가 치직거리는 소리!" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "돌 제단" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "커다란 돌 제단입니다. 대체로 도덕적으로 논란의 여지가 있는 의식을 치르는데 쓰입니다." -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "악마의 용광로" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " @@ -207529,41 +207150,51 @@ msgstr "" "불을 좋아하는 거대한 붉은 거미의 키틴질로 만든 용광로입니다. 이 용광로는 알루멘툼의 열을 견디도록 수제작되어, 마법의 금속을 녹여 다른" " 용도로 쓸 수 있는 주괴 형태로 가공할 수 있습니다." -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "비전의 피부" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "블랙 드래곤 가죽" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "악마키틴" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "오리칼쿰" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "농축된 마나" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" -msgstr "매직클리즘" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "드래곤의 뼈" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" -msgstr "카타클리즘인데 이제 마법 주문도 있습니다! 밝은 밤 에디션입니다!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" +msgstr "미스릴" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "매지컬 나이트" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "밝은밤인데 이제 마법이 있습니다! 매지클리즘의 재로부터 태어난 새로운 모드로, 새로운 개발자들이 주도합니다." + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "주문학" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" @@ -207572,70 +207203,113 @@ msgstr "" "비전 지식을 나타내는 기술입니다. 마법 이론과 이에 수반되는 모든 사항들을 포함합니다. 능숙해질수록 주문을 배우는 속도가 빨라지고, 주문" " 실패율이 낮아집니다. 책을 읽거나 주문을 익혀 기술을 수련할 수 있습니다." -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "%1$s(이)가 당신의 %2$s(을)를 삼지창으로 찔렀습니다!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "%1$s(이)가 의 %2$s(을)를 삼지창으로 찔렀습니다!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "%1$s(이)가 %2$s에 삼지창을 찔렀으나, 방어구를 뚫지 못했습니다!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "%1$s(이)가 의 %2$s에 삼지창을 찔렀으나, 방어구를 뚫지 못했습니다!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "%1$s(이)가 당신의 %2$s(을)를 거대한 곤봉으로 후려쳤습니다!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "%1$s(이)가 의 %2$s(을)를 거대한 곤봉으로 후려쳤습니다!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "%1$s(이)가 당신의 %2$s(을)를 거대한 곤봉으로 후려치려고 했지만, 크게 헛치고 휘청거립니다." -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "%1$s(이)가 의 %2$s(을)를 거대한 곤봉으로 후려치려고 했지만, 크게 헛치고 휘청거립니다." -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "움직이는 칼" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "마법으로 생성된 요리조리 움직이고 피하는 롱소드로, 적들을 조각조각 가르고 썰어냅니다." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "소환된 좀비" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "소환된 좀비입니다. 야생의 동족들에 비해 약간 더 똑똑합니다." + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "소환된 스켈레톤" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" +"소환된 스켈레톤입니다. 야생의 동족들에 비해 약간 더 똑똑합니다. 어떻게 가능한건지는 잘 모르겠지만, 말장난을 즐기는 것 같습니다." + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "소환된 부패한 습격자" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "소환된 좀비 쿠거입니다. 야생의 동족들에 비해 약간 더 똑똑합니다." + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "CBM:혈액 발전기 (구식화)" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "이 바이오닉은 구식화되었습니다!" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "마법사 지망생" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "마법사 지망생" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -207643,25 +207317,25 @@ msgid "" msgstr "당신도 마법사가 될 수 있다 라고 말하는 밝은 색깔의 팜플렛을 발견했습니다. 세상이 망해감에도 이상하게도 평화로워보이네요." #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "당신도 마법사가 될 수 있다 라고 말하는 밝은 색깔의 팜플렛을 발견했습니다. 세상이 망해감에도 이상하게도 평화로워보이네요." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "방화광 켈비니스트" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "방화광 켈비니스트" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -207671,7 +207345,7 @@ msgstr "" "싶어합니다." #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -207680,18 +207354,18 @@ msgstr "" "당신은 평생 동안 불을 사랑해왔습니다. 당신은 자신의 내면에 타오르는 불꽃을 발견해냈고, 이제 당신은 그것을 온 세상에 퍼뜨리고 " "싶어합니다." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "드루이드" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "드루이드" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -207699,7 +207373,7 @@ msgid "" msgstr "드루이드의 고대 서클은 대격변과 함께 사라졌습니다. 자연은 번성해야만 합니다." #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -207707,7 +207381,7 @@ msgid "" msgstr "드루이드의 고대 서클은 대격변과 함께 사라졌습니다. 자연은 번성해야만 합니다." #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -207719,7 +207393,7 @@ msgstr "" "죽었으니, 이제 자신을 지키려면 실존하는 뭔가를 찾는 게 좋을 겁니다." #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -207731,7 +207405,7 @@ msgstr "" "죽었으니, 이제 자신을 지키려면 실존하는 뭔가를 찾는 게 좋을 겁니다." #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -207743,7 +207417,7 @@ msgstr "" "지도 했었습니다. 그리고 신자들은 답을 찾아 질문을 위해 찾아오곤 했었습니다, 뇌를 먹기 위해서가 아니라요." #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -207755,7 +207429,7 @@ msgstr "" "지도 했었습니다. 그리고 신자들은 답을 찾아 질문을 위해 찾아오곤 했었습니다, 뇌를 먹기 위해서가 아니라요." #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -207766,7 +207440,7 @@ msgstr "" "저 극히 굶주린 시체들에 대해선 확실한 답을 못내리겠네요." #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -207777,7 +207451,7 @@ msgstr "" "저 극히 굶주린 시체들에 대해선 확실한 답을 못내리겠네요." #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -207789,7 +207463,7 @@ msgstr "" "매일하던 팟캐스트 방송을 더이상 진행할 수 없게 된데다, 당신의 설교를 들은 시체들은 별로 감명받은 것처럼 보이지 않네요." #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -207800,18 +207474,18 @@ msgstr "" "당신은 일생 대부분을 거리에서, 그리고 마을마다 돌아다니며 좋은 말씀을 전하는데 헌신해왔습니다. 이제 세상은 지옥으로 변했고, 당신은 " "매일하던 팟캐스트 방송을 더이상 진행할 수 없게 된데다, 당신의 설교를 들은 시체들은 별로 감명받은 것처럼 보이지 않네요." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "견습 네크로맨서" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "견습 네크로맨서" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -207822,7 +207496,7 @@ msgstr "" " 지금, 당신은 책에서 온갖 묘수들을 뽑아내야만 할 겁니다." #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -207832,18 +207506,18 @@ msgstr "" "당신의 마법은 일반적인 마법의 세계에서 받아들여질만한 학파가 아니었기에 그저 숨기고 다닐 수밖에 없었습니다. 하지만 종말이 곁으로 다가온" " 지금, 당신은 책에서 온갖 묘수들을 뽑아내야만 할 겁니다." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "견습 스톰셰이퍼" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "견습 스톰셰이퍼" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -207855,7 +207529,7 @@ msgstr "" "깨달았습니다. 안타깝게도 사건이 일어나면서 힘을 만끽할 시간이 그리 오래 주어지진 않았네요..." #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -207866,18 +207540,18 @@ msgstr "" "기상 캐스터의 자식으로 자라난 당신은 항상 날씨에 관심이 많았죠. 최근에 당신은 어느 신비한 방법으로 스스로 날씨를 부릴 수 있음을 " "깨달았습니다. 안타깝게도 사건이 일어나면서 힘을 만끽할 시간이 그리 오래 주어지진 않았네요..." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "견습 어스셰이퍼" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "견습 어스셰이퍼" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -207885,25 +207559,25 @@ msgid "" msgstr "당신은 항상 싸움에 강했습니다. 당신의 코치가 몇 가지 기술들을 가르쳐주면서 조금 더 강해졌습니다." #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "당신은 항상 싸움에 강했습니다. 당신의 코치가 몇 가지 기술들을 가르쳐주면서 조금 더 강해졌습니다." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "견습 테크노맨서" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "견습 테크노맨서" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -207911,59 +207585,97 @@ msgid "" msgstr "최근의 대재앙 이후에는 시험에서 컨닝하려고 사용했던 당신의 기술들을 더 유용하게 사용할 방법을 찾아내야합니다." #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "최근의 대재앙 이후에는 시험에서 컨닝하려고 사용했던 당신의 기술들을 더 유용하게 사용할 방법을 찾아내야합니다." +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "견습 켈비니스트" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "견습 켈비니스트" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" +"어릴 때부터 당신은 열기와 냉기에 흠뻑 빠졌습니다. 불은 당신의 영혼을 따뜻하게 데우고, 눈이 너무 좋아서 매년 겨울이 올 때마다 눈이 " +"흠뻑 내리기를 바랬습니다. 심지어 어른이 된 지금도 말이죠. 이러한 태고의 원소를 조종하는 마법을 배울 기회가 주어지자 망설임없이 배운 " +"것도 당연한 일입니다." + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" +"어릴 때부터 당신은 열기와 냉기에 흠뻑 빠졌습니다. 불은 당신의 영혼을 따뜻하게 데우고, 눈이 너무 좋아서 매년 겨울이 올 때마다 눈이 " +"흠뻑 내리기를 바랬습니다. 심지어 어른이 된 지금도 말이죠. 이러한 태고의 원소를 조종하는 마법을 배울 기회가 주어지자 망설임없이 배운 " +"것도 당연한 일입니다." + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "마법 물품" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "물약" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "룬" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "마법 물품" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "마력 집중" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "마력 주입" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "마력 엮기" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "잃어버린 신앙" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "잃어버린 신앙" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -207974,7 +207686,7 @@ msgstr "" "신앙을 회복하거나 완전히 무너뜨릴 수 있는 책을 발견했습니다." #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -207985,25 +207697,25 @@ msgstr "" "신앙을 회복하거나 완전히 무너뜨릴 수 있는 책을 발견했습니다." #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "교회" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "마법사의 제자" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "마법사의 제자" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -208018,7 +207730,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -208032,25 +207744,25 @@ msgstr "" "공책은 있군요..." #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "마법사의 비밀 지하 연구실" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "마법사의 휴가" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "마법사의 휴가" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -208062,7 +207774,7 @@ msgstr "" "당신의 자기계발을 위한 여정도 끊어지고 말았군요. 이제는 스스로 살아남는 법을 익혀야 할 때입니다." #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -208074,52 +207786,57 @@ msgstr "" "당신의 자기계발을 위한 여정도 끊어지고 말았군요. 이제는 스스로 살아남는 법을 익혀야 할 때입니다." #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "마법사의 바캉스 별장" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "환수" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "드래곤" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "리자드맨" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "고블린" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "오크" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "마법사의 비밀 지하 연구실" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "마법사의 호숫가 별장" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "불에 탄 나무" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "이 나무는 불에 심하게 타버린 것 같지만, 아직도 서있습니다." #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " @@ -208128,185 +207845,185 @@ msgstr "" "이것은 어떤 생물의 희미한 형상이 보이는 거대한 고치입니다. 당신은 이 생물이 거미들에게 먹히는 동안 얼마나 오래 살았을지 알고 싶지 " "않을 겁니다." -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "거미줄 벽" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "거미줄, 나무조각, 쓰레기, 그리고 알 수 없는 어두운 색의 수지가 뒤섞인 것처럼 보이는 벽입니다." -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "황량한 땅" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "흙입니다. 씨앗을 심더라도 뭔가 자라지는 않을 것 같습니다. 파헤쳐서 건물을 지을 수도 있습니다." -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "마법 뮤타젠 혼합기" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "축복" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "에너지를 주고 능력을 높여주는 축복의 주문입니다." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "성스러운 검" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "이 빛의 검이 칼날에 닿는 모든 악들을 베어버릴 것이다!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "영체의 갑옷" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "네 믿음이 강하다면 악은 결코 너의 갑주를 뚫지 못할지니!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "강타" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "사악이 전 세계에 만연해 있노라. 그대의 힘이 어둠 속에서 반짝이는 빛이 되기를!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "생명력 전환" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "당신은 자신의 생명력을 마법적인 에너지로 바꿉니다. HP를 소비하면서 마나를 회복합니다. " -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "고통을 넘어선 정신" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "크로스핏과 비슷한 격렬한 의식을 거쳐 통증을 어느정도 억누릅니다." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "좀비 소환" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "땅 속 깊은 곳에서 좀비가 일어나 당신을 위해 싸웁니다. 주문이 숙련될수록 더 많은 양을 불러낼 수 있습니다." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "스켈레톤 소환" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "땅 속 깊은 곳에서 해골들이 일어나 당신을 위해 싸웁니다. 주문이 숙련될수록 더 많은 양을 불러낼 수 있습니다." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "부패한 습격자 소환" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "땅 속 깊은 곳에서 좀비 쿠거가 일어나 당신을 위해 싸웁니다. 주문이 숙련될수록 더 많은 양을 불러낼 수 있습니다." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "죽음의 시선" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "당신은 자신의 피의 힘으로 죽음의 기운을 눈에 주입하여, 바라보는 대상에게 피해를 입힙니다. " -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "애니미스트의 룬" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "이 의식은 애니미스트의 힘이 깃든 작은 조약돌을 생성합니다. 룬은 조합의 촉매로서 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "이그누스 파투스" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " @@ -208314,53 +208031,50 @@ msgid "" msgstr "" "살아있는 증기로 이뤄진 도깨비불을 소환하여 당신의 적들을 현혹시킵니다. 주문이 숙련될수록 더 많은 도깨비불을 불러낼 수 있습니다." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "부패의 뼈몽둥이" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -"이 주문은 공기 중의 먼지에 불을 붙여 화염의 원뿔을 만들어냅니다. 타오르는 재가 상대에게 달라붙어, 불타오르게 만들 수 있습니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "가벼운 상처 치료" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "대상의 피해를 약간 치료합니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "고통 나누기" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "신체에 입은 손상을 균일하게 나눕니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "악랄한 촉수" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." @@ -208368,30 +208082,30 @@ msgstr "" "이 주문은 당신의 몸에서 산이 배어나오는 뾰족한 뼈로 이루어진 무시무시한 촉수를 뿜어냅니다, 촉수의 채찍은 넓은 범위 공격과 강한 피해를" " 줍니다." -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "기괴한 강화" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "당신의 몸을 이계의 힘으로 뒤틀어 신체 능력과 힘을 증강시킵니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "강산 분사" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." @@ -208399,101 +208113,101 @@ msgstr "" "시전의 일부로 마법사가 입을 열고 강산을 넓은 원뿔 범위에 흩뿌려, 적들을 한 줌의 점액으로 녹여버립니다. 점액을 가지고 뭘 할 수 " "있을지 상상해보세요." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "살아있는 주머니" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "이 주문은 등 피부에서 커다란 주머니를 자라게 하여, 그 안에 장비를 보관할 수 있게 해줍니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "뼈 창 소환" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "이 주문은 끝이 뒤틀리고 곳곳에 칼날이 자라난 기다란 뼈 창을 만듭니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "바이오맨서의 룬" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "이 의식은 바이오맨서의 힘이 깃든 작은 조약돌을 생성합니다. 룬은 조합의 촉매로서 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "마비의 바늘" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "힘줄과 뼈로 이루어진 뒤틀린 바늘을 뱉어내어 찔린 적을 느려지게 합니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "선혈의 투사" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "주위에 매캐한 혈액을 뿜어냅니다. 피 웅덩이에서 꿈틀거리는 맹독의 촉수가 자라나 주변의 먹잇감을 묶어버립니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "선혈의 마비" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "선혈의 투사의 마비 부작용입니다." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "선혈의 대가" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "사용자에게 부작용을 후려칩니다." -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "응고의 바느질" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " @@ -208502,167 +208216,215 @@ msgstr "" "당신의 생물학적 기술을 내면에 투사해, 당신의 피부를 의학적으로 강화시킵니다. 치유 효과는 없지만, 허기와 갈증을 대가로 혈액 손실을 " "메꾸고 패혈증이 생기지 않게 상처를 말끔히 지웁니다." -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "염산 생성" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "강산 화살" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "강산 폭탄" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "강산 폭풍" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "마나 결정화" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "마나를 고체 형태로 결정화합니다." -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "마나 피로" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "마나 결정화의 부가 효과" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "어둠의 시야" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "어둠 속에서 볼 수 있는 시야를 제공합니다." #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "눈이 잠시 녹색으로 빛나고, 당신의 시선은 가장 짙은 어둠을 꿰뚫어보게 된다." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "메가 블래스트" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "당신은 어릴 적에 봤던 만화처럼 에너지 빔을 쏘고 싶어 했죠. 이젠 할 수 있어요!" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "마법의 빛" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "마법의 빛을 생성합니다." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "눈부신 섬광" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "갑작스러운 눈부신 빛으로 당신의 적들의 눈을 잠시 멀게 합니다. 레벨이 높을수록 약간 더 높은 피해를 줍니다. " -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "영체의 손아귀" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" "땅에서 영체로 이루어진 손들이 솟아나, 범위 내의 모든 것을 느리게 합니다. 레벨이 높아질수록 범위와 지속 시간이 늘어납니다." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "몽환의 신체" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "마법의 기운이 몸 주변의 빛을 왜곡시켜, 한 턴에 더 많은 공격을 피할 수 있게 합니다. " -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "보호의 오라" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "마법의 기운이 온몸을 감싸 적대적인 환경으로부터 당신을 보호합니다." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "자기 전송" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "시전자를 연결된 전송 관문으로 이동시킵니다." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "강산 저항" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "시전자를 강산으로부터 보호합니다." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "상위 강산 저항" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "레몬 소환?" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "템플릿 주문" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "사용 가능한 값을 보여주는 템플릿입니다" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "%s(을)를 시전하자 새로 태어난 기분입니다!" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "디버그 괴물 생성" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "생성할 괴물의 수를 지정하세요." @@ -208674,245 +208436,218 @@ msgstr "생성할 괴물의 수를 지정하세요." #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "%s 디버그 주문 시전됨." -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "디버그 스태미나 주문" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "지구력을 약간 소모합니다" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "디버그 주문 %s (은)는 아무 효과도 없습니다. 디버그 경고가 있을 것입니다." -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "디버그 피로 주문" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "피로를 약간 누적시킵니다" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "디버그 생명력 주문" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "체력을 약간 소모합니다" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "디버그 바이오닉 주문" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "바이오닉 전력을 약간 소모합니다" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "디버그 효과 주문" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "대상에게 효과를 부여합니다." -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "디버그 완전 보호" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "어떤 것에도 해를 입지 않습니다." #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "당신은 불사신이고, 당신을 해할 수 있는 건 존재하지 않습니다!" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "디버그 깃털처럼 가벼운 낙하" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "깃털처럼 가벼워 깃털처럼 떨어집니다." #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "깃털을 먹었습니다!" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "디버그 질주" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "앞을 향해 순간적으로 공간이동할 수 있습니다." - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "디버그 밀쳐내기 (범위 0)" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "범위 0 이내의 모든 물체를 밀쳐냅니다." - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "디버그 밀쳐내기 (폭발)" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "폭발 범위 3 이내의 모든 물체를 밀쳐냅니다." - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "블랙 드래곤 브레스" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "입에서 산성을 내뿜습니다." -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "초목의 손아귀" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "뿌리와 덩굴들이 땅에서 튀어나와 적들을 붙잡아 느리게 만들고, 적에게 파고들어 약간의 피해를 입힙니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "뿌리 타격" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "뿌리가 땅에서 튀어나와 넓게 퍼져나가면서 적들을 꿰뚫습니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "나무 말뚝" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "시전자의 손에서 빠르게 튀어나와 적을 찔러대는 단단한 나무 투사체를 생성합니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "자연의 활" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "주문이 지속되는 한 끝없이 화살을 쏘는 마법의 나무 리커브 보우를 소환합니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "자연의 황홀경" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "마력과 생물과의 연결을 통해 마법적인 황홀경에 빠집니다. 이를 통해 마나를 교환하여 피로를 빠르게 회복할 수 있습니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "백 오브 캣츠" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "혹시 캣맘이신가요?" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "곰 유발" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -208923,209 +208658,209 @@ msgstr "" "읽을 수 없는 상태라서 설령 시전하더라도 원하는 효과가 일어나지 않을 것도 분명합니다. 대재앙이 일어난 지금은 심층적인 연구에 어울리지 " "않는 시기긴 해요!" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "진균 척살" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "지정된 범위 내의 진균체를 죽입니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "드루이드의 룬" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "이 의식은 드루이드의 힘이 깃든 작은 조약돌을 생성합니다. 룬은 조합의 촉매로서 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "정화의 씨앗" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "물을 정화할 수 있는 대지의 선물을 받습니다. 사용하지 않으면 급격히 소모됩니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "희생의 재성장" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" "당신의 자신의 생명력을 소모하여, 시들고 메마른 근처의 식물을 살려냅니다. 유해가 완전히 생명을 되찾기까지 시간이 걸립니다." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "희생의 치유" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "시전자의 생명력을 치유 에너지로 전환하여, 아군 한 명을 치료합니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "돌주먹" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "당신의 팔과 손을 마법의 돌로 감싸서, 근접 전투에서 그것으로 주먹을 날리고 자신을 지킬 수 있게 합니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "지진의 발구르기" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "마력의 힘을 당신의 다리에 집중시키고, 발을 굴려서 충격파를 보내 주위의 적을 넘어뜨립니다. " -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "돌의 강인함" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "당신은 바닥의 돌에 집중하면서 그들의 불로를 끌어냅니다. 마나가 스태미나로 전환됩니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "파편 분사" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "이 주문은 날카로운 파편들을 원뿔형으로 분사하여, 당신의 적과 친구들을 평등하게 썰어버립니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "관통하는 화살" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "이 주문은 마법으로 만든 쇠창을 발사하여 당신에게 무례하게 구는 자를 뚫어버립니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "파편 폭풍" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "당신의 주변에 면도날처럼 날카로운 금속 파편을 전 방향으로 분사합니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "암석의 화살" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "마법의 돌 투사체를 고속으로 발사합니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "대지 움직이기" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "당신의 정수가 당신의 주위를 흐르고, 대지가 이를 따릅니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "어스셰이퍼의 룬" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "이 의식은 어스셰이퍼의 힘이 깃든 작은 조약돌을 생성합니다. 룬은 조합의 촉매로서 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "용암 폭탄 파편" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "용암 폭탄 주문의 하위 주문입니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "용암 폭탄 열기" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "용암 폭탄 지형" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "용암 폭탄" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " @@ -209133,50 +208868,70 @@ msgid "" msgstr "" "땅을 내려치며 뜨겁고 단단한 바위로 둘러싸인 용암 덩어리를 발사합니다. 충돌 시 산산조각이 나며 사방에 바위와 용암 파편을 뿌립니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "돌의 피부" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "살아있는 암석으로 형성된 갑옷으로 몸을 감싸, 보호를 제공하지만 방해도가 늘어납니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "돌 기둥" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "근처의 지면을 끌어올려 단단한 돌기둥을 만듭니다. 경험이 쌓이면 이 작업은 더 쉬워지고, 주변을 덜 파괴합니다." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "기둥 부작용" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "후속 효과로 타격 피해를 받습니다. 레벨이 높아질수록 피해와 범위가 줄어듭니다." -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "바위 무덤" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "운석 소환" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "뒤틀린 소생" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" @@ -209185,12 +208940,12 @@ msgstr "" "이 주문은 심장을 과부하 시켜, 새로운 살과 근육을 만들어냅니다. 즉각적인 위협에서 이를 사용하는 것은 현명하지 않으며, 위급한 " "상황에서 사용하면 치명적일 수 있습니다." -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "향상된 뒤틀린 소생" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" @@ -209199,37 +208954,37 @@ msgstr "" "이 주문은 심장을 과부하 시켜, 새로운 살과 근육을 만들어냅니다. 즉각적인 위협에서 이를 사용하는 것은 현명하지 않으며, 위급한 상황에서" " 사용하면 치명적일 수 있습니다. 개선된 증류가 주문의 부담을 줄여주었습니다." -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "투척용 칼날 소환 I" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "투척용 칼날 3개를 소환합니다." #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "반지에 깃든 마법을 사용하여 세 개의 투척용 칼날을 소환합니다. 자, 이제 던지세요!" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "마나 회복" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "마나를 재생합니다." #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "마나가 재생되기 시작합니다!" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" @@ -209237,27 +208992,27 @@ msgstr "" "당신의 혈관이 마치 불타는 듯한 느낌을 받습니다! \n" "마나가 재생되기 시작합니다!" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "발화" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "지정된 위치에 강한 열을 발생시켜, 대상에게 피해를 입힙니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "꼬마불꽃" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" @@ -209266,474 +209021,519 @@ msgstr "" "시전자를 해치지 않는 작은 불꽃을 불러내어, 자잘한 것들에 불을 붙일 수 있습니다. 정말 굉장히 불이 필요한 경우에 유용할 것 같습니다 " "- 보통은 주머니 속에 라이터를 하나 갖고 다니는 정도로 충분하거든요." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "고드름 낙하" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "대상의 위에서 들쭉날쭉한 고드름을 형성해 떨어뜨려 피해를 줍니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "화염구" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "목표물이나 장애물에 닿으면 무압의 타오르는 열을 방출하는 콩알만 한 발광체를 투사합니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "냉기의 원뿔" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "목표를 향해 냉기를 원뿔형으로 분사합니다." -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "불타는 손길" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "이거 분명히 어느 게임에서 봤었는데요. 단거리 원뿔 범위에 화염을 쏘아냅니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "서리 분사" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "이거 분명히 어느 게임에서 봤었는데요. 단거리 원뿔 범위에 냉기와 얼음을 쏘아냅니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "서늘한 손길" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "접촉한 대상을 강렬한 추위로 얼려버립니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "빙상 활주" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "발을 마법적인 얼음으로 코팅하여, 매끄러운 표면을 더 빨리 달릴 수 있습니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "눈꽃 폭발" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "당신은 빛나는 하얀 얼음 결정을 투사합니다. 결정이 충격을 받으면 폭발하여 주위에 산산이 부서지는 추위를 만개시킵니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "얼음 방패" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "팔에 마법의 얼음 방패를 만들어, 근거리 전투에서 자신을 방어하고 내려찍는데 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "서리 갑옷" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "당신을 마법의 얼음으로 얇게 감싸 위험으로부터 보호합니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "켈비니스트의 룬" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "이 의식은 켈비니스트의 힘이 깃든 작은 조약돌을 생성합니다. 룬은 조합의 촉매로서 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "화염의 검" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "이 주문은 목검에 불을 붙여 불태우고, 그을리고, 썰어내는 화염의 검으로 만듭니다." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "화염의 숨결" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" +"이 주문은 공기 중의 먼지에 불을 붙여 화염의 원뿔을 만들어냅니다. 타오르는 재가 상대에게 달라붙어, 불타오르게 만들 수 있습니다." + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "화염 폭풍" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "냉기 폭풍" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "악어 소환" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "영구적으로 지속되는 악어 1마리를 불러냅니다." #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "사제가 악어를 소환합니다!" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "고대 용인의 주술" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "주술사의 주문 중 하나를 시전합니다." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "매직 미사일" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "어둠을 향해 마법의 미사일을 발사합니다!" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "위상 관문" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "짧은 거리를 임의의 방향으로 순간이동합니다." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "중력 우물" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "목표 지점을 중심점으로 하는 중력 우물을 불러냅니다. 효과 범위 내 모든 개체에게 타격 피해를 입힙니다." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "마나 폭발" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "마력을 집중하고 폭발시켜 넓은 범위를 파괴해버립니다." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "마나 화살" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "당신의 적에게만 피해를 입히는 마력의 화살입니다." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "가속" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "이 주문은 짧은 시간 동안 당신을 비약적으로 빠르게 합니다." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "마나 광선" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "경로에 있는 모든 적에게 피해를 주는 마력의 빛입니다." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "탈출" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "위험 상황에서 벗어날 수 있도록, 중간 거리를 임의의 방향으로 순간이동합니다." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "마구스의 룬" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "이 의식은 마구스의 힘이 깃든 작은 조약돌을 생성합니다. 룬은 조합의 촉매로서 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "고양이의 우아함" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "이전보다 빠르고, 우아하고, 온 근육이 보다 조직적으로 움직일 수 있는게 느껴집니다." -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "독수리의 시야" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "당신은 독수리의 시야를 얻습니다." -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "오우거의 힘" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "당신은 오우거의 힘을 얻습니다." -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "여우의 교활함" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "당신은 여우처럼 교활해집니다." #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "마력을 고체의 형태로 결정화합니다. 당신의 생리학적 변화가 이 주문을 더욱 쉽고 효율적이게 만들어 주었습니다." -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "추적 볼트" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "범위 내에서 무작위 대상을 추적하는 마나 화살을 발사합니다." #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "슝" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "흡혈" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "적 하나에게서 피를 빨아냅니다." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "곰 덫 소환" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "말 그대로 곰을 소환하는 덫입니다! 당신이 기대하던 것과 다르죠?" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "\"함정이다!\"" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "로켓 주먹" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "팔에서 거대한 주먹을 발사합니다." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "가스 공격" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "주변에 유독성 가스를 내뿜습니다." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "악마의 화염구" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "괴물 전용 주문입니다." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "새끼 악마거미 소환" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "영구적으로 지속되는 새끼 악마거미 4마리를 불러냅니다." #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "플레이어용 불타는 손과 분리되었습니다. 또 악마거미가 실수로 버프받는 일은 없었으면 하거든요." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "크래브젝의 시선" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "게가 되는 빔 발사! (밸런스를 위해 분리된 크래브젝 버전 죽음의 시선입니다.)" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "우즈 강산 분사" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "누군가가 *정말로* 잘못 만든 푸딩입니다... (괴물용 주문)" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "괴물 고통 나누기" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "전기충격" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "손가락에서 부채꼴의 단거리 전자파를 발사합니다." @@ -209741,20 +209541,20 @@ msgstr "손가락에서 부채꼴의 단거리 전자파를 발사합니다." #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "파지직" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "번개의 화살" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -209764,74 +209564,74 @@ msgstr "" "수많은 스톰셰이퍼들이 거쳐가는 징검다리 주문. 이 상징적인 마법은 딱 당신이 생각하는 그것과 같습니다. 손 끝에서 번개를 발사합니다." " 하지만 이 번개는 보통의 번개보다 더 직선적이며, 대부분 고체가 아닌 표적을 통해 직선으로 이동합니다." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "선풍의 일격" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "당신이 손을 뻗은 대상에 강풍이 격렬히 폭발합니다." #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "휘이익" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "바람의 질주" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "순풍을 불러일으킵니다. 당신이 걷는 동안 마법의 바람이 당신을 밀어주어, 움직이기 쉽게 해주며 속도를 높여줍니다." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "폭풍망치 소환" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "적들을 후려쳐 산산조각낼 번개로 충만한 마법의 전쟁망치를 만들어냅니다. 물론, 물건도 충분히 잘 부숩니다!" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "스톰셰이퍼의 룬" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "이 의식은 스톰셰이퍼의 힘이 깃든 작은 조약돌을 생성합니다. 룬은 조합의 촉매로서 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "번개 폭발" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -209841,7 +209641,7 @@ msgstr "" "있습니다." #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." @@ -209849,15 +209649,15 @@ msgstr "" "하늘의 권세를 불러내 땅 위의 것을 치게 하시나이다. \n" "손가락 끝에서 번개들이 뿜어져나와 적을 공격합니다!" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "이온화" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -209867,24 +209667,24 @@ msgstr "" "대기 중의 전하를 조작하여, 광범위한 지대에 번개를 일으킵니다. 그 파괴력은 자연적인 번개와는 거리가 멀지만, 빛과 천둥소리는 적들을 " "당황하게 만들기에 충분합니다." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "이온화의 천둥소리" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "진짜 섬광탄같은 효과를 추가합니다." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "안개 벽" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " @@ -209892,13 +209692,37 @@ msgid "" msgstr "" "짙은 안개로 이뤄진 넓은 벽을 만들어냅니다. 갑작스러운 기압 변동에 휘말린 적들이 넘어질 가능성이 있지만, 그 이외에는 무해합니다." -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "물 응결" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "깨끗한 물 응결" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "투명화" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." @@ -209906,68 +209730,68 @@ msgstr "" "당신의 시각적 존재를 타인에게서 숨기는 마법적 장을 형성합니다. 흔히 말하는 투명화지만, 과학적 어쩌고저쩌고와는 전혀 관련이 없습니다." #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "세상의 바깥을 향하여, 당신의 몸은 사라지고 비존재가 된다!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "램프" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "마법의 램프를 만듭니다." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "마력발전" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "당신은 정신적인 에너지를 바이오닉 전력으로 사용할 수 있는 방법을 터득했습니다." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "테크노맨서의 룬" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "이 의식은 테크노맨서의 힘이 깃든 작은 조약돌을 생성합니다. 룬은 조합의 촉매로서 사용할 수 있습니다." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "테이즈" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "이 주문은 아주 짧은 범위에 번개를 한 줄기 불러내어 적을 감전시킵니다." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "하급 양자터널" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -209977,16 +209801,16 @@ msgstr "" "양자나 뭐 그런 것들로 이뤄진 터널을 통해 짧은 공간 내지는 물질을 투과해 이동할 수 있게 합니다. 다만 어디로 나올지 모른다는게 " "단점입니다. 스스로의 위치를 재확인하는 과정에서 약간 멍해지는 부작용이 있습니다." -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "시냅스 자극" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -209996,74 +209820,74 @@ msgstr "" "이 주문은 뇌의 시냅스를 보통의 처리속도 이상으로 자극하여 반사신경, 속도, 원시 지적 능력을 포함한 정신적인 처리 능력을 비약적으로 " "높입니다. 책임 있게 사용하라고!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "레이즈" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "흔히 레이저라고 알려진, 집약된 광자의 빔을 목표에다 집중하여 방출합니다." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "움직이는 칼" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "이 주문은 날아다니는 칼을 생성하여 적을 크기에 걸맞게 썰어냅니다. 조각조각 잘게 말이죠." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "거울의 형상" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "이 주문은 빛을 조작하여 실재하는 듯한 생명의 복제물, 즉 마법의 홀로그램을 생성합니다." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "떠다니는 원반 소환" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "당신의 짐을 실어줄 것을 맹세한 마법의 원반을 소환합니다." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "과충전 연소" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "과충전 주문의 부작용입니다." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "광학적 빛줄기 재채기" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -210073,356 +209897,356 @@ msgstr "" "있었을 겁니다." #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "지이이이잉!" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "남겨둔 영맥을 통해 바이오닉 전력을 과부하시켜, 얼굴의 중심부에서 쏘아냅니다." #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "대량의 마나를 불어넣으면서 극도로 피곤해졌습니다." #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "대량의 마나를 불어넣는 과정에서 극도로 피곤해졌습니다." #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "마나 피로의 영향이 사라집니다." #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "바람의 힘에 의해 강화되어 앞으로 나아갑니다." #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "바람의 힘에 의해 강화되어 앞으로 나아갑니다." #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "순풍이 멈췄습니다." #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "어둠에서 볼 수 있습니다." #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "당신의 눈이 빠르게 암순응합니다." #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "어둠이 다시금 사방에 가라앉습니다." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "붙들어매는 영체" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "유령같은 팔들이 당신을 지금 있는 곳에 붙들려 합니다!" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "영체 팔들이 땅에서 튀어나와 당신을 붙잡습니다!" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "유령같은 팔들이 사라집니다." #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "그 무엇도 당신을 볼 수 없습니다." #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "당신은 모습을 감춥니다." #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "당신의 손이 다시 보이기 시작합니다." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "축복받음" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "당신은 어떤 일이든 해낼 것만 같은 기운으로 충만합니다." #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "당신은 어떤 일이든 해낼 것만 같은 기운으로 충만합니다!" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "기운이 사그라듭니다." #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "당신의 몸이 기묘한 근육으로 요동치고 사지가 길어지면서 눈이 녹색으로 희미하게 번뜩입니다." #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "당신의 몸이 원래 모습으로 빠르게 돌아옵니다." #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "뿌리와 덩굴의 당신의 적들을 휘감습니다." #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "뿌리와 덩굴이 적을 옭아매어 느리게 합니다!" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "뿌리와 덩굴들이 시들어 사라집니다." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "관통하는 뿌리" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "뿌리가 땅에서 튀어 나와 적을 찌릅니다!" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "뿌리가 시들어 사라집니다." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "산성 화상" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "산성에 타고 있음" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "가속됨" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "당신의 속도는 엄청나게 빨라졌습니다." #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "당신의 속도가 초인의 경지로 높아졌습니다!" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "당신의 속도가 원래대로 돌아옵니다." #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "당신의 사고 능력이 향상됩니다." #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "정신이 가속됩니다." #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "정신이 원래 속도로 돌아옵니다." #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "오우거의 힘을 갖게 됩니다!" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "힘이 솟구칩니다!" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "힘이 사라집니다." #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "독수리의 지각력을 갖게 됩니다!" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "조그만 차이도 놓치지 않습니다!" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "당신의 시각이 원래대로 돌아옵니다." #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "고양이처럼 민첩해집니다!" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "당신의 반사신경이 향상됩니다!" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "당신의 반사신경이 원래대로 돌아옵니다." #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "여우처럼 교활해집니다!" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "당신의 지능이 향상됩니다!" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "당신의 지능이 원래대로 돌아옵니다." #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "개발자들의 강대한 힘이 당신의 피부를 완전히 뒤덮습니다!" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "충만감이 사라지고, 당신의 삶이 다시금 공허하고 무의미해졌습니다." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "디버그 깃털처럼 가벼운 낙하" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "당신은 깃털처럼 가벼워지고, 그만큼 우아하게 낙하합니다." #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "몸이 깃털처럼 가벼워집니다." #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "대지의 중력이 다시금 당신에게 임합니다." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "겁에 질림" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "완전히 겁에 질림" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "공포에 질린" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "무릎이 떨리고, 심장이 빠르게 뛰며, 속이 꼬입니다." #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "겁에 질렸습니다!" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "당신의 공포가 흩어져 사라집니다." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "생체 과로" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "넓은 범위에 당신의 영향력을 뻗치기 위해 육신을 혹사시킨 결과 몸이 아픕니다." #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "출혈과 깨물림에 면역이 되고, 지구력 재생이 향상되며, 갈증과 허기의 증가 속도가 빨라집니다." #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "팽팽해졌던 살갗이 본래대로 돌아옵니다." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "바이오맨서 맹독" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "마법적 독에 시달리고 있어 느려지고 약해졌습니다." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "아울베어 위석" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -210432,57 +210256,26 @@ msgstr "" "이 기묘한 형상의 돌은 한때 아울베어의 복잡한 소화기관의 일부로, 부엉이 목구멍과 곰의 위장을 연결하는데 쓰였습니다. 연금술에 이 특성을" " 응용할 수 있을 것 같습니다. 두 개의 전혀 다른 반쪽을 연결하는 용도로 말이죠." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "돌 껍데기" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" "아울베어 알이 깨지고 남은 조각입니다. 운이 좋다면 그 힘의 일부가 여전히 남아있을지도 모르고, 그렇지 않더라도 최소한 날카롭긴 합니다." -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "구리 주입 팔찌" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" -"이 팔찌에는 룬이 새겨져 있습니다. 그것을 들여다볼 때 신비한 기미를 느낄 수 있습니다. 마나를 물체에 주입할 때 유용할 것입니다." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "은 주입 팔찌" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "구리 서클릿" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "구리 장식이 된 머리에 장식하는 목제 띠. 이것을 머리에 쓴 채 관자놀이를 문지르면 마음이 매우 차분해집니다." - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "기초 물약" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." @@ -210490,94 +210283,50 @@ msgstr "" "마력을 주입하여 액체로 농축시킨 독한 알코올로, 주문을 액체 형태로 안정화할 수 있습니다. 아직은 마실 수 있어 보이네요, 원한다면 " "말이죠." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "고급 기초 물약" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "마력이 포화된 순수한 에탄올입니다. 물약 내부에 농축된 순수한 힘으로 인해 표면이 계속해서 요동치고 있습니다." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "커다란 부신" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" "아드레날린, 코티솔, 알도스테론을 분비하는 신장 위에 자리 잡은 기관입니다. 이건 돌연변이든 아니든 간에 정말로 커다랗네요." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "빛나는 먼지" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "윌 오 위습의 물리적 형상이 가루의 형태로 남겨졌습니다. 아직도 저세상의 빛으로 반짝이는 듯합니다." -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "마법의 독서용 램프" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" -"빛나는 가루와 하급 마나 물약의 마력으로 돌아가는 전등으로, 이 값비싼 독서용 램프는 최소한 10년간은 지속될 딱 책 읽는데나 쓸만한 " -"빛을 발합니다. 사용하여 커버를 덮고 빛을 숨길 수 있습니다." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "마법의 독서용 램프 (덮임)" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" -"빛나는 가루와 하급 마나 물약의 마력으로 돌아가는 전등으로, 이 값비싼 독서용 램프는 최소한 10년간은 지속될 딱 책 읽는데나 쓸만한 " -"빛을 발합니다. 사용하여 커버를 열고 빛을 드러낼 수 있습니다." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "뷸렛 갑피" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "뷸렛의 머리에서 떼어낸 장대한 갑피는 항상 갑옷과 방패를 만드는 용도로 유용하게 쓰였습니다." - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "뷸렛 진주" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " @@ -210585,125 +210334,96 @@ msgid "" msgstr "" "뷸렛이 땅을 파헤치는 동안 그 아가미가 상당한 양의 희귀금속과 보석을 모아, 그들의 미와 힘을 과시하는 탐나는 보석덩어리로 만듭니다." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "드래곤의 정수" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "농축시켜 정제한, 용에게서 나온 마법의 정수입니다." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "스터지 주둥이" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "스터지의 시체에서 수확한 길다란 흡입기관입니다. 형편없지만 근접무기로 사용할 수 있습니다." -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "악마키틴질 조각" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "악마거미의 외골격 조각입니다. 가볍고 매우 튼튼하며, 어쩌면 마법적 성질을 조금 갖고 있을지도 모릅니다." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "악마키틴장갑판" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "성체 악마거미의 시체에서 공들여 떼어낸 커다란 악마거미 외골격 조각입니다. 이정도 크기라면 장갑판을 만드는데 쓸만해보입니다." - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "악마거미 송곳니" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "악마거미의 송곳니입니다. 여전히 맹독이 뚝뚝 흐르는 것 같습니다. 어쩌면 어느 연금술 레시피에 쓸모가 있을지도 모릅니다." -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "알루멘툼" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -"알루멘튬은 마법으로 가공된 석탄입니다. 마그네슘만큼 뜨겁게, 그리고 훨씬 더 길게 타오릅니다. 그 유용성 덕분에 오늘날에도 양껏 " -"생산되고 있는 몇 안 되는 마법 재료 중 하나입니다." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "마나 가루" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "가루 형태의 마력 결정입니다. 신비한 에너지로 희미하게 깜박이고 있습니다." -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "드래곤의 혈액" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "오리칼쿰 화살" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "수은" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "이치이발" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -210713,7 +210433,7 @@ msgstr "" "있다." #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" @@ -210722,142 +210442,114 @@ msgstr "" "오리칼쿰의 조각으로 만든 화살입니다. 그 화살은 신비롭게 빛난다. 발사 시 온전한 상태를 유지할 가능성이 매우 높지만, 이치이발에서만" " 발사할 수 있습니다." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "악마키틴질 팔 보호구" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "조심스럽게 다듬고 잘라낸 악마거미의 붉은 외골격으로 만들어진 한 쌍의 팔 보호구입니다. 내화성이 있고 아주 견고합니다." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "악마키틴질 갑옷" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "조심스럽게 다듬고 잘라낸 악마거미의 붉은 외골격으로 만들어진 다리와 몸통 보호구입니다. 내화성이 있고 아주 견고합니다." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "악마키틴질 헬멧" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" "조심스럽게 다듬고 잘라낸 악마거미의 붉은 외골격으로 만든 헬멧. 머리 전체를 보호하고, 화염에 저항성이 있으며, 아주 견고합니다." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "악마키틴질 장갑" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "조심스럽게 다듬고 잘라낸 악마거미의 붉은 외골격으로 만든 장갑입니다. 화염에 저항성이 있으며 아주 견고합니다." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "악마키틴질 부츠" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "조심스럽게 다듬고 잘라낸 악마거미의 붉은 외골격으로 만든 신발입니다. 화염에 저항성이 있으며 아주 견고합니다." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "견용 악마키틴질 메쉬 하네스" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "악마키틴질을 얇은 그물처럼 만들어 개의 목 주변을 두른 급조한 하네스입니다. 우호적인 개에게 입힐 수 있습니다." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "악마키틴질 마갑" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "악마키틴질로 짠, 말의 목, 어깨, 가슴을 덮는 갑옷과 안장 고정끈입니다. 우호적인 말에게 입힐 수 있습니다." -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" -"테크노맨시의 최근 개량된 기술을 통해, 혈액에 담긴 원초적 에너지를 바이오닉 전력으로 전환할 수 있습니다. 더 강력한 혈액일수록 전력도 " -"더 많이 생성합니다. 혈액을 100ml까지 저장할 수 있습니다." - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "CBM:결정화된 마나 코 보형물" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" -"결정화된 마나와 기타 안정제 용도의 금속으로 만들어진 커다란 보석입니다. 두개골에 설치되는 특수목적 파워팩이 포함되어 있으며, 이는 " -"당신의 마나 영맥에 간섭하지 않습니다. 경고: 테크노맨서 전용. 이 주문을 사용하면 당신은 프리켄 레이저 빔 사(社)와 그 산하 회사에 " -"대한 법적 책임을 포기하는 것입니다." - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "블랙 드래곤 비늘" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "블랙 드래곤에게서 떼어낸 비늘입니다. 여전히 마법적 성질과 강산에 대한 저항력을 그대로 갖고 있습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "생 블랙 드래곤 가죽" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " @@ -210866,23 +210558,23 @@ msgstr "" "블랙 드래곤에게서 벗겨내어 조심스럽게 접어둔 생가죽입니다. 이것만으로도 갑옷을 만들 수 있을 만큼 크고, 비늘이 충분하다면 미늘 갑옷을 " "만드는데도 쓸 수 있습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "블랙 드래곤 가죽 (무두질 중)" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "블랙 드래곤 가죽을 조심스럽게 펴서 깨끗하게 털어냅니다." #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "이 블랙 드래곤 가죽은 아직 무두질 과정이 끝나지 않았습니다." #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " @@ -210890,13 +210582,13 @@ msgid "" msgstr "" "가공에 필요한 화학적 처리를 거치는 중인 블랙 드래곤 가죽입니다. 처리가 끝나면 다시 사용하는 것을 통해 잘 펴서 쓸 수 있습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "무두질된 블랙 드래곤 가죽" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." @@ -210904,61 +210596,61 @@ msgstr "" "블랙 드래곤에게서 벗겨낸 가죽입니다. 단단하고, 강산에 저항력이 있으며, 비늘을 좀 더 모으면 철처럼 단단하면서도 무게는 절반밖에 되지 " "않는 갑옷을 만들 수 있습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "블랙 드래곤 비늘 부츠" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "블랙 드래곤의 비늘로 만든 부츠입니다. 충격으로부터 완벽히 보호해주며, 놀라울 정도로 가볍습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "블랙 드래곤 가죽 부츠" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "블랙 드래곤의 가죽으로 만든 부츠입니다. 충격으로부터 완벽히 보호해주며, 놀라울 정도로 가볍습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "블랙 드래곤 비늘 헬멧" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "블랙 드래곤의 비늘과 가죽을 엮어 만든 헬멧입니다. 얼굴 전체를 덮는 바이저가 있습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "블랙 드래곤 가죽 헬멧" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "블랙 드래곤의 가죽으로 만든 헬멧입니다. 머리를 훌륭히 보호해주지만, 얼굴을 가려주지 않습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "블랙 드래곤 비늘 갑옷" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" @@ -210966,45 +210658,45 @@ msgid "" msgstr "" "블랙 드래곤의 비늘로 만든 미늘 갑옷 한 벌입니다. 몸통, 팔, 다리를 덮는 장비가 모두 딸려있으며, 매우 가볍고 유연합니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "블랙 드래곤 가죽 갑옷" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "블랙 드래곤의 가죽으로 만든 갑옷 한 벌입니다. 몸통, 팔, 다리를 덮는 장비가 모두 딸려있으며, 매우 가볍고 유연합니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "블랙 드래곤 비늘 건틀렛" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "블랙 드래곤의 비늘로 만들어 당신의 손을 빈틈없이 덮는 튼튼한 건틀렛 한 쌍입니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "블랙 드래곤 가죽 장갑" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "특대 블랙 드래곤 비늘 부츠" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." @@ -211012,14 +210704,14 @@ msgstr "" "블랙 드래곤의 비늘로 만든 커다란 부츠입니다. 더할 나위 없이 뒤틀린 몸에도 맞도록 개조되었습니다. 충격으로부터 완벽히 보호해주며, " "놀라울 정도로 가볍습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "특대 블랙 드래곤 가죽 부츠" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." @@ -211027,27 +210719,27 @@ msgstr "" "블랙 드래곤의 가죽으로 만든 커다란 부츠입니다. 더할 나위 없이 뒤틀린 몸에도 맞도록 개조되었습니다. 충격으로부터 완벽히 보호해주며, " "놀라울 정도로 가볍습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "특대 블랙 드래곤 비늘 건틀렛" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "블랙 드래곤의 비늘로 만들어 당신의 손, 아니면 손처럼 쓰는 신체부위를 빈틈없이 덮는 튼튼한 건틀렛 한 쌍입니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "특대 블랙 드래곤 가죽 장갑" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " @@ -211056,13 +210748,13 @@ msgstr "" "케블라로 보강된 맞춤형 가죽 장갑입니다. 극한상황에서도 최대한의 보호를 제공하고 착용감도 좋습니다. 더할 나위 없이 뒤틀린 신체에도 " "맞도록 개조되었습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "특대 블랙 드래곤 비늘 헬멧" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" @@ -211071,13 +210763,13 @@ msgstr "" "블랙 드래곤의 비늘과 가죽을 엮어 만든 커다란 헬멧입니다. 얼굴 전체를 덮는 바이저가 있고, 더할 나위 없이 뒤틀린 머리에도 맞도록 " "개조되었습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "특대 블랙 드래곤 가죽 헬멧" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " @@ -211086,13 +210778,13 @@ msgstr "" "블랙 드래곤의 가죽으로 만든 커다란 헬멧입니다. 머리를 훌륭히 보호해주지 않지만, 얼굴을 가려주지 않습니다. 더할 나위 없이 뒤틀린 " "머리에도 맞도록 개조되었습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "특대 블랙 드래곤 비늘 갑옷" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -211101,13 +210793,13 @@ msgstr "" "블랙 드래곤의 비늘로 만든 커다란 미늘 갑옷 한 벌입니다. 몸통, 팔, 다리를 덮는 장비가 모두 딸려있으며, 더할 나위 없이 뒤틀린 " "몸뚱이에도 맞도록 개조되었습니다." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "특대 블랙 드래곤 가죽 갑옷" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -211116,19 +210808,19 @@ msgstr "" "블랙 드래곤의 가죽으로 만든 커다란 갑옷 한 벌입니다. 몸통, 팔, 다리를 덮는 장비가 모두 딸려있으며, 더할 나위 없이 뒤틀린 " "몸뚱이에도 맞도록 개조되었습니다." -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "휴양 안내 책자" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "지도에 장소들을 기록했습니다." #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -211138,25 +210830,25 @@ msgstr "" "학생들에게 호숫가 별장이나 멀리 떨어진 오두막에서 휴가를 보내라고 권하는 화려한 광고지입니다. 이 광고지에는 어느 섬에 있는 탑과 숲속의" " 고독한 오두막을 과시하는 사진들이 실려있고, 그 지역에 대한 지도도 포함되어 있습니다." -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "둥지 지도" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "꽤 해진 지도입니다. 환수의 사진으로 꾸며진, 조심스럽게 그려진 지도상 지점들이 기록되어 있습니다." -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "오래된 사진" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." @@ -211164,265 +210856,109 @@ msgstr "" "즐거워 보이는 늙은 마법사의 사진입니다. 그는 이 지하실에서 코트 걸이와 춤을 추고 있는 것처럼 보입니다. 뒷배경에는 여행용 가방 몇" " 개가 쌓여있습니다." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "소형 마나 물약" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" -"이건 돈주고 구할 수 있는 물건이 아니니, 최종보스와 마주할 때까지 아끼는게 좋습니다! 사실, 그놈과 마주하더라도 가능하면 안 쓰는게 " -"좋아요!" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "마나 물약" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "대형 마나 물약" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "고양이의 우아함의 물약" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "고양이의 우아함의 물약입니다. 마시면 10분 동안 민첩성이 향상될 것입니다." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "오우거의 힘의 물약" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "오우거의 힘의 물약입니다. 마시면 10분 동안 체력이 향상될 것입니다." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "독수리의 시야의 물약" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "독수리의 시야의 물약입니다. 마시면 10분 동안 지각력이 향상될 것입니다." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "여우의 교활함의 물약" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "여우의 교활함의 물약입니다. 마시면 10분 동안 지능이 향상될 것입니다." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "좀비 부두술 인형" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" -"뼈와 장기까지 포함된 언데드 인간의 인상깊을 정도로 정밀한 모형입니다. 네크로맨시 마법이 즉각적 부패를 지연시키지만, 영원하지는 않을 " -"것입니다. 첨부된 바늘로 찌르면 당신을 섬기게 만들 수 있습니다." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "골화된 부두술 인형" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" -"뼈로 덮이고 장기가 포함된 언데드 인간의 인상깊을 정도로 정밀한 모형입니다. 네크로맨시 마법이 즉각적 부패를 지연시키지만, 영원하지는 " -"않을 것입니다. 첨부된 바늘로 찌르면 당신을 섬기게 만들 수 있습니다." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "쿠거 부두술 인형" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" -"털, 뼈, 장기까지 포함된 언데드 쿠거의 인상깊을 정도로 정밀한 모형입니다. 네크로맨시 마법이 즉각적 부패를 지연시키지만, 영원하지는 " -"않을 것입니다. 첨부된 바늘로 찌르면 당신을 섬기게 만들 수 있습니다." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "뒤틀린 소생의 물약" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" -"이 구역질나는 냄새의 액체는 당신의 심장을 위험할 정도로 가속시켜 언데드의 재생력을 흉내냅니다. 위험에 처한 상황, 혹은 심각한 부상을 " -"입은 상황에서 이 물약을 복용할 경우 치명적 결과를 초래할 수 있습니다." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "상급 뒤틀린 소생의 물약" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" -"이 구역질나는 냄새의 액체는 당신의 심장을 위험할 정도로 가속시켜 언데드의 재생력을 흉내냅니다. 위험에 처한 상황, 혹은 심각한 부상을 " -"입은 상황에서 이 물약을 복용할 경우 치명적 결과를 초래할 수 있습니다. 향상된 주입 기술 덕분에 약효가 도는 중의 부담이 조금 " -"경감되었습니다." - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "바이오맨서의 룬" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "이 마법의 돌에는 찢겨진 살점과 뼈의 인장이 새겨져있습니다. 바이오맨서가 제작물에 마법을 불어넣는데 필수적입니다." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "테크노맨서의 룬" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "이 마법의 돌에는 시계태엽과 톱니바퀴의 인장이 새겨져있습니다. 테크노맨서가 제작물에 마법을 불어넣는데 필수적입니다." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "마구스의 룬" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "이 마법의 돌에는 수정과 마나 구슬의 인장이 새겨져있습니다. 마구스가 제작물에 마법을 불어넣는데 필수적입니다." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "어스셰이퍼의 룬" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "이 마법의 돌에는 철과 바위의 인장이 새겨져있습니다. 어스셰이퍼가 제작물에 마법을 불어넣는데 필수적입니다." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "켈비니스트의 룬" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "이 마법의 돌에는 얼음과 불의 인장이 새겨져있습니다. 켈비니스트가 제작물에 마법을 불어넣는데 필수적입니다." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "스톰셰이퍼의 룬" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "이 마법의 돌에는 번개와 폭풍우의 인장이 새겨져있습니다. 스톰셰이퍼가 제작물에 마법을 불어넣는데 필수적입니다." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "드루이드의 룬" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "이 마법의 돌에는 자연과 나무의 인장이 새겨져있습니다. 드루이드가 제작물에 마법을 불어넣는데 필수적입니다." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "애니미스트의 룬" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "이 마법의 돌에는 소환사의 인장이 새겨져있습니다. 애니미스트가 제작물에 마법을 불어넣는데 필수적입니다." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "연금술사의 룬" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " @@ -211431,13 +210967,129 @@ msgstr "" "이 마법의 돌에는 연금술과 물약의 인장이 새겨져있습니다. 범용적으로 사용될 수 있지만, 특별히 연계된 학파가 없는 탓에 고급 레시피 " "제작에는 쓸 수 없습니다." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "바이오맨서 창" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "튼튼한 장대 위에 괴상하게 생긴 뼈 창날이 달려있습니다. 머리 부분에 바이오맨서 룬이 박혀있습니다." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "테크노맨서 도구함" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" +"이 지팡이는 한쪽에 튼튼한 크레센트 렌치, 다른쪽에 망치를 달아 편리하게 사용할 수 있도록 만들어졌습니다. 망치머리에 테크노맨서의 룬이 " +"새겨져있습니다." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "마구스 지팡이" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" +"열가공처리 및 마나주입을 통해 내구성을 강화한 유리 잔 두 개를 달아 마나 용기로 쓸 수 있도록 한 육척봉입니다. 양 끄트머리에 메이거스" +" 룬 두 개가 새겨져있습니다." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "켈비니스트 플랑베르주" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "날이 마치 불꽃을 연상하듯 일렁이는 검입니다. 검의 폼멜에 켈비니스트 룬이 새겨져 있습니다." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "스톰셰이퍼 도끼" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "나무로 된 손잡이와 제련된 구리, 그리고 은장식으로 구성된 도끼입니다. 도끼의 눈에 스톰셰이퍼 룬이 새겨져 있습니다." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "애니미스트 애터미" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" +"소환 마법을 위해 애니미스트들이 피를 뽑아내는 데에 사용하는 의식용 강철 나이프입니다. 날 밑에 이들의 학파의 룬이 새겨져 있습니다." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "테크노맨서의 공구벨트" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "원하는 도구를 즉시 생성할 수 있는 맞춤형 다용도 가죽 벨트입니다. 작동하여 무기를 집어넣거나 꺼냅니다." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "드루이드 컴포지트 보우" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "에너지 효율을 극대화하기 위해 여러 재료로 만든 활. 끝에 두 개의 드루이드 룬이 박혀있습니다" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "어스셰이퍼 카에스투스" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "손을 뒤덮는 룬을 새겨 타격력과 방어력을 높인 석제 전투용 장갑입니다. 손바닥에 어스셰이퍼 룬이 새겨져있습니다." + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "아울베어 알" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -211449,34 +211101,34 @@ msgstr "" "느껴집니다. 아울베어가 이렇게 작은 알에서 빠르게 자라난다는 사실이 믿기지 않네요. 당신은 안에 있는 황금빛 내용물을 얻기 위해 알을" " 조심스레 열어볼 수 있을 겁니다." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "아울베어 알 노른자" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "아울베어 알의 내용물입니다. 참 맛있겠네요." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "헤어볼" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "동물의 침과 핥은 머리카락이 뒤섞인 크고 못생긴 털뭉치 덩어리입니다. 절대 먹지 마세요." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "용의 고기" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" @@ -211484,36 +211136,36 @@ msgid "" msgstr "" "죽은 용의 고기. 여타 다른 고기와 같은 방법으로 조리할 수 않는 점으로 보아, 여전히 마법적인 성질을 가진 게 분명해 보입니다." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "비명 버섯" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "죽은 슈리커에게서 수확한 버섯입니다. 물약에 사용될 수 있습니다." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "정화된 고기" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "대재앙 이전의 실험실에서 배양한 쇠고기와 전혀 구별할 수 없습니다. 완벽하겠지만, 어쨌든 먹을 수는 있습니다." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "불순한 고기" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " @@ -211522,3935 +211174,4492 @@ msgstr "" "처리하기 이전보다는 덜 오염되었고, 진짜 고기같은 맛이 납니다. 친구들에게 이걸 요리해주는건 좋은 생각이 아니지만, 요리해서 먹이더라도 " "한동안은 차이점을 알지 못할 것입니다." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "부서진 점토 골렘" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "현대 미술 작품처럼 보이는 부서진 점토 골렘입니다. 부숴서 점토를 얻을 수 있습니다." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "부서진 플라스틱 골렘" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "커다란 개가 씹어댄 액션 피규어처럼 생긴 부서진 플라스틱 골렘입니다. 부숴서 플라스틱 조각으로 만들 수 있습니다." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "부서진 돌 골렘" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "큰 바위와 별로 달라보이지 않는 부서진 돌 골렘입니다. 부숴서 돌멩이로 만들 수 있습니다." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "부서진 철 골렘" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "당신이 필요한 모든 철을 다 담은 부서진 철 골렘입니다. 부숴서 철로 만들 수 있습니다." -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "체력의 벨트 +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" +msgstr[0] "부서진 신선한 수지 골렘" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "가속의 벨트" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" -msgstr[0] "하급 마법의 지팡이" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" +msgstr[0] "부서진 반쯤 벗겨진 수지 골렘" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -"마법의 나무와 미스릴로 만든, 아름답게 조각된 지팡이입니다. 주문을 영창하면 마법으로 희미하게 빛나긴 하지만, 적을 때릴만큼 튼튼한 " -"무기는 아닙니다." -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" -msgstr[0] "마법사의 모자" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" +msgstr[0] "부서진 벗겨진 수지 골렘" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." -msgstr "별이 박혀있는 뾰족한 파란색 모자. 착용하면 마나 재생력이 높아집니다." - -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" -msgstr[0] "화염구 해머" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." +msgstr "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" -msgstr "인화성!!!! 피해욧!!!! 폭발물!!!!" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "마법의 돌장갑 건틀렛" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" -msgstr[0] "마법의 가죽 벨트" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "보호와 공격을 할수있는, 유연한 돌멩이 같은 마법의 물질입니다." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "가속의 벨트" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" +msgstr[0] "꼬마불꽃" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" -msgstr[0] "메깅요르드" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." -msgstr "천둥의 신 토르의 신비한 허리띠입니다. 혹은 최소한 그렇게 생겼습니다. 착용자의 기본 체력을 두 배로 늘립니다." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "이것은 손에 쥘 수 있는 작은 불꽃입니다. 원하면 뭔가에 불이 붙게 할 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "하급 주머니 거들" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" +msgstr[0] "꼬마불꽃 (흐릿함)" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -"허리 사이즈에 딱 맞는 넓적한 거들입니다. 필요 이상으로 많은 것을 담을 수 있는 수많은 작은 주머니로 덮여있으며, 내용물의 질량도 " -"크게 줄어듭니다." - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "상급 주머니 거들" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" -msgstr[0] "무장의 벨트" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -"허리둘레에 꼭 맞는 넓은 허리띠로, 마치 다른 공간에 물건을 수납하는 것 같아 보이는 이 물건은 눈 깜빡할 사이에 어떤 무기던지 " -"집어넣거나 뽑아들 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "테크노맨서의 공구벨트" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "마법의 등불" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." -msgstr "원하는 도구를 즉시 생성할 수 있는 맞춤형 다용도 가죽 벨트입니다. 작동하여 무기를 집어넣거나 꺼냅니다." +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" -msgstr[0] "철 채찍 벨트" +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "작은 장소를 밝혀주는 마법의 등불" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" -msgstr "벨트를 붙잡아 풀면 손에 유연한 금속 채찍이 들어옵니다!" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" +msgstr[0] "마법의 등불 (흐릿함)" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." -msgstr "땋은 듯하지만 유연해 보이는 금속 벨트입니다. 작동시켜서 적을 찢어발기는 채찍으로 변형시킬 수 있습니다." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" -msgstr[0] "철 채찍" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." -msgstr "채찍이 동그랗게 감겨 다시 벨트 모양으로 돌아옵니다." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "마법의 빛" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." -msgstr "" -"끝부분이 날카로운 칼날로 된, 길게 땋은 신축성 있는 강철 채찍으로, 당신에게 오는 무엇이든 간단히 조각 내 버릴 것입니다. 작동하면 " -"다시 벨트 형태로 돌아옵니다." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." +msgstr "글을 읽을 수 있을 정도의 작은 마법의 빛. " -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" -msgstr[0] "세븐 리그 부츠" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" +msgstr[0] "마법의 빛 (흐릿함)" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -"해진 가죽과 강철로 구성된 투박하지만 매우 잘 맞으면서 편안한 부츠입니다. 꽤나 많이 쓰인 것 같은데 앞으로도 더욱 요긴하게 쓰일 것 " -"같습니다. 이동 시 소모되는 행동량을 줄여줍니다." -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "가속의 부츠" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "대형 얼음 방패" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" -msgstr[0] "탈출의 부츠" +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "마법의 얼음으로 만들어진 가볍지만 단단한 방패다." -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "미끈한 얼음 코팅" + +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." -msgstr "" -"해진 가죽과 강철로 구성된 투박하지만 매우 잘 맞으면서 편안한 부츠입니다. 이 부츠는 긴급 상황에서 하루에 한 번만 작동할 수 있으며," -" 발동 시 임의의 방향으로 먼 거리를 순간이동합니다." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." +msgstr "발에 마법의 얼음 코팅을 한다. 평평한 바닥에서는 상당히 빠르지만 험한 지형에서는 움직이기 어렵다." -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" -msgstr[0] "접지의 부츠" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" +msgstr[0] "폭풍망치" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." -msgstr "" -"투박하지만 매우 잘 맞으면서 편안한 가죽 부츠로, 고무로 채워진 듯한 작은 룬이 새겨져 있습니다. 착용 시, 전기로 인한 피해에 면역이 " -"됩니다." - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" -msgstr[0] "강철 팔목 보호대 한 쌍" +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" +msgstr "적들을 후려쳐 산산조각낼 번개로 충만한 마법의 전쟁망치입니다. 물론, 물건도 충분히 잘 부숩니다!" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." -msgstr "완전한 중세 팔 보호구 한 세트." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" +msgstr[0] "폭풍주먹" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "강철 팔목 보호대" +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." +msgstr "팔과 손을 마법의 번개로 감쌌다. 근접 전투에서 주먹으로 자신을 지킬 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" -msgstr[0] "하급 보호의 팔목 보호대" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "악랄한 촉수 채찍" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." -msgstr "" -"화려한 방패가 새겨진 가볍지만 매우 튼튼한 강철 보호대로, 은빛이 복잡한 디자인을 돋보여줍니다. 가벼운 아우라가 몸을 보호하여 피해를 " -"줄여줍니다." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." +msgstr "날카로운 뼈와 뾰족한 돌기로 덮인 길고 흔들리는 촉수" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" -msgstr[0] "상급 보호의 팔목 보호대" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "살아있는 주머니" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -"화려한 방패가 새겨진 가볍지만 매우 튼튼한 강철 보호대로, 금빛이 복잡한 디자인을 돋보여줍니다. 강한 아우라가 몸을 보호하여 피해를 " -"줄여줍니다." +"등에 맬수있는 살아있는 주머니, 주머니 안은 작은 촉수들로 가득 차서 안에 있는 모든 것을 움켜쥘 수 있습니다. 스스로 이동 및 조정하여" +" 방해를 최소화합니다." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" -msgstr[0] "하급 전격의 팔목 보호대" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "사악한 뼈창" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." -msgstr "" -"화려한 번개 다발이 새겨진 가볍지만 매우 튼튼한 강철 보호대로, 은빛이 복잡한 디자인을 돋보여줍니다. 가벼운 아우라가 몸을 보호하여 전격" -" 피해를 막아주고 또한 하루에 3번씩 전기충격 마법을 시전할 수 있습니다." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." +msgstr "이것은 완전히 뼈로 만들어진 사악한 창/미늘창 의 혼합물입니다 " -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" -msgstr[0] "상급 전격의 팔목 보호대" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" +msgstr[0] "나무활" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." -msgstr "" -"화려한 번개 다발이 새겨진 가볍지만 매우 튼튼한 강철 보호대로, 금빛이 복잡한 디자인을 돋보여줍니다. 강한 아우라가 몸을 보호하여 전격 " -"피해를 막아주고 또한 하루에 3번씩 번개의 화살 마법을 시전할 수 있습니다." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." +msgstr "마법으로 만들어진 단단하고 유연한 나무 활입니다. 시위를 당겨 조준하면 마법의 나무 화살이 나타납니다." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" -msgstr[0] "'고요한 바람' 소음기" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" +msgstr[0] "정화의 씨앗" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." -msgstr "" -"순수한 완충재만 쓰는게 아니라, 침묵 주문까지 새겨둔 이 튜브는 총격시 발생하는 소음을 청각에 손상이 일어나지 않을 정도로 줄여줍니다." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "씨앗 짜내기" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" -msgstr[0] "마나 레이저 사이트 (레일)" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "손바닥에 놓은 씨앗을 움켜쥐자, 씨앗이 고운 가루로 바뀝니다." -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." -msgstr "" -"총기의 부속품 레일에 장착 가능한, 마나 수정으로 발생하는 빛을 이용하는 소형 가시광 레이저입니다. 목표를 간편하고 신속하게 포착할 수 " -"있도록 돕습니다. 무게가 늘어나는 점을 제외하면 별다른 단점이 없습니다. 부속 레일을 돌려 총열 아래에 위치하도록 할 수 있습니다." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "쥐어짜서 정화의 가루를 뿌리는데 쓰이는 마법의 씨앗입니다. 씨앗 하나가 물 1갤런을 정화할 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" -msgstr[0] "마나 레이저 사이트 (총열하단)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" +msgstr[0] "희미하게 빛나는 가루" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." -msgstr "" -"총기의 부속품 레일에 장착 가능한, 마나 수정으로 발생하는 빛을 이용하는 소형 가시광 레이저입니다. 목표를 간편하고 신속하게 포착할 수 " -"있도록 돕습니다. 무게가 늘어나는 점을 제외하면 별다른 단점이 없습니다. 부속 레일을 돌려 총열 위에 위치하도록 할 수 있습니다." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "가루가 점점 더 강하게 빛난다." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "마나 도트사이트" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "애매함의 오라" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." -msgstr "기계식 조준기를 대체하는 마나 결정으로 제작된 푸른 도트 사이트. 정확도와 무게가 증가합니다." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." +msgstr "보이지 않는 마법의 장막이 당신을 온전히 감싸고 주변의 빛을 왜곡시킵니다. 각 턴마다 공격을 두 번 더 회피할 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" -msgstr[0] "마법의 가면" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "내산성의 오라" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." -msgstr "평범한 마법의 가면입니다." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." +msgstr "강산으로부터의 방호를 전신에 제공하는 투명한 방어막입니다." -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" -msgstr[0] "소멸의 가면" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "상위 내산성의 오라" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." -msgstr "안면의 형태가 없이 눈과 입 구멍만 있는 마스크로, 작동하면 잠시 동안 모든 것이 당신의 존재를 무시하게 될 것입니다." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "서리 갑옷" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" -msgstr[0] "절대시야의 가면" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "마법의 얼음이 얇은 층을 이뤄 전신을 뒤덮고 있습니다." -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." -msgstr "눈가를 가리는 스팀펑크풍의 반가면으로, 착용자의 시력을 교정하면서 시야를 크게 향상시키는 커다란 렌즈가 달려있습니다." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "돌피부 코팅" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "곤봉 +1" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "액체처럼 흐르는 살아있는 암석이 얇은 층을 이뤄 전신을 뒤덮고 있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" -msgstr[0] "곤봉 +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "과충전 연소" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" -msgstr[0] "육척봉 +1" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "이런, 참 끝내주는 일입니다! 근데 이거 금방 없어지는거 맞죠?" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "육척봉 +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "보호의 오라" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" -msgstr[0] "쇠장식 육척봉 +1" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "환경으로부터 당신을 보호하는 보이지 않는 마법의 보호막입니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "쇠장식 육척봉 +2" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "이 목검은 불타고 있습니다! 아직 들고 있어도 안전해보이지만, 조만간 불타 재가 될 것입니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" -msgstr[0] "롱소드 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" +msgstr[0] "부패의 뼈몽둥이" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "롱소드 +2" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "이따금씩 고동치는 뼈몽둥이입니다. 생기를 흡수하고 싶어하는, 눌어붙은 피로 물들어있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" -msgstr[0] "슬레지 해머 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" +msgstr[0] "바람의 질주 오라" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "슬레지 해머 +2" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "무거운 슬레지 해머 +1" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "용의 피입니다. 그 자체로도 열기를 내뿜고, 마치 살아있는 불꽃처럼 주기적으로 일렁이다 흐트러지는게 보입니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" -msgstr[0] "무거운 슬레지 해머 +2" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "비전 에너지가 주입되어 빛나는 피입니다. 희미한 푸른 빛을 냅니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "워해머 +1" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "마나 결정" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" -msgstr[0] "워해머 +2" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "결정화된 마력. 마력으로 다시 충전할 수 있지만 빼낼 수는 없습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "방망이 +1" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" +msgstr[0] "작은 마나 수정" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "방망이 +2" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "이것은 지팡이 끝에 부착할 수 있도록 특별히 고안된 작은 마력 결정입니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "알루미늄 방망이 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" +msgstr[0] "생 아울베어 모피" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" -msgstr[0] "알루미늄 방망이 +2" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" +"아울베어에게서 벗겨낸 생가죽을 조심스럽게 접었습니다. 손질하면 장기간 보존하고 또 무두질할 수 있으며, 급박한 상황이라면 먹을 수도 " +"있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "강철 창 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" +msgstr[0] "건조된 아울베어 모피" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" -msgstr[0] "강철 창 +2" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" +"털과 살점을 제거하고 부패를 막기 위한 처리를 거친 아울베어 모피를 말아놓은 것입니다. 무두질을 거치면 쓸만한 모피 생가죽이 될 것 " +"같습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "치앙 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" +msgstr[0] "아울베어 모피 생가죽" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" -msgstr[0] "치앙 +2" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "아울베어의 모피입니다. 아주 따뜻한 옷으로 만들 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "할버드 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" +msgstr[0] "드래곤의 뼈" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" -msgstr[0] "할버드 +2" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "드래곤의 뼈입니다! 이 자체로도 무기를 만들기에 완벽한 소재이며, 그 이외의 특별한 무언가가 있을 것 같다는 예감이 듭니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "글레이브 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" +msgstr[0] "드래곤의 뼈 조각" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" -msgstr[0] "글레이브 +2" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "나기나타 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" +msgstr[0] "뷸렛 갑피" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" -msgstr[0] "나기나타 +2" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "뷸렛의 머리에서 떼어낸 장대한 갑피는 항상 갑옷과 방패를 만드는 용도로 유용하게 쓰였습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "메이스 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" +msgstr[0] "악마키틴질 조각" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" -msgstr[0] "메이스 +2" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "악마거미의 외골격 조각입니다. 가볍고 매우 튼튼하며, 어쩌면 마법적 성질을 조금 갖고 있을지도 모릅니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "모닝스타 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" +msgstr[0] "악마키틴장갑판" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" -msgstr[0] "모닝스타 +2" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "성체 악마거미의 시체에서 공들여 떼어낸 커다란 악마거미 외골격 조각입니다. 이정도 크기라면 장갑판을 만드는데 쓸만해보입니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "지안 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" +msgstr[0] "오리칼쿰 덩어리" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" -msgstr[0] "지안 +2" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "오리칼쿰 덩어리. 사용하려면 주괴로 바꿔야 합니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "시미터 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" +msgstr[0] "오리칼쿰 조각" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" -msgstr[0] "시미터 +2" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "더 큰 조각에서 깨진 오리칼쿰의 조각. 사용하려면 주괴로 바꿔야 합니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "에스톡 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" +msgstr[0] "오리칼쿰 주괴" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" -msgstr[0] "에스톡 +2" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "오리칼쿰의 주괴. 가로 3cm, 세로 7cm, 높이 12cm의 규격품이며, 다양한 대장간 작업에 사용할 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "아밍소드 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" +msgstr[0] "액화 수은" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" -msgstr[0] "아밍소드 +2" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "액체 상태의 수은입니다. 흔히 온도계에서 볼 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "브로드소드 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" +msgstr[0] "미스릴 덩어리" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" -msgstr[0] "브로드소드 +2" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "전투도끼 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" +msgstr[0] "미스릴 주괴" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" -msgstr[0] "전투도끼 +2" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "기병용 세이버 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "묠니르" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" -msgstr[0] "기병용 세이버 +2" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" +"토르의 전설적인 망치인 묠니르입니다. 일격에 산을 무너뜨릴 수 있다고들 합니다. 아스가르드의 힘이 망치를 타고 흐르는 것이 느껴집니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "쇠지레 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "궁니르" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" -msgstr[0] "쇠지레 +2" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" +"오딘의 창인 궁니르입니다. 휘두르는 사람의 힘이나 기량에 관계없이 어떤 목표에도 반드시 적중하는 궁극의 창이라고들 합니다. 오딘이 당신을" +" 지켜주는 것 같은 기분이 듭니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "커틀러스 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" +msgstr[0] "그람" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" -msgstr[0] "커틀러스 +2" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" +"시구르드의 검인 그람입니다. 전설적인 용 파프니르를 이 검으로 살해했다고들 합니다. 레긴의 모루를 반으로 갈라놓았음에도 불구하고 그 " +"칼날은 흠집 하나 나지 않았습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "소방도끼 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "레바테인" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" -msgstr[0] "소방도끼 +2" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "로키의 지팡이인 레바테인입니다. 로키가 헬의 관문에서 꺼냈다고들 합니다. 속임수의 신의 신비로운 마법이 깃들어있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "일본도 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" +msgstr[0] "오리칼쿰 컴뱃 나이프" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" -msgstr[0] "일본도 +2" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" +"강철 대신 오리칼쿰으로 만들어진 컴뱃나이프입니다. 강철제보다 튼튼하고, 날카롭고, 관리하기 쉬우면서도 칼날이 더 얇은 덕분에 가볍기까지 " +"합니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "컴뱃 나이프 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" +msgstr[0] "오리칼쿰 롱소드" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" -msgstr[0] "컴뱃 나이프 +2" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" +"강철 대신 오리칼쿰으로 만들어진 롱소드입니다. 강철제보다 튼튼하고, 날카롭고, 관리하기 쉬우면서도 칼날이 더 얇은 덕분에 가볍기까지 " +"합니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "사냥용 칼 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" +msgstr[0] "오리칼쿰 소방도끼" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" -msgstr[0] "사냥용 칼 +2" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" +"강철 대신 오리칼쿰으로 만든 소방도끼. 더 단단한 물질을 절단할 수 있으며, 예산이 남아도는 소방서에서 적극적으로 사용되었습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "생존용 나이프 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" +msgstr[0] "용골 장검" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" -msgstr[0] "생존용 나이프 +2" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" +"용골로 만든 변종 롱소드입니다. 내구성을 희생하지 않고도 극도로 강력한 무기로 거듭났습니다. 오리칼쿰보다도 뛰어나며, 심지어 이 상태도 " +"원재료의 온전한 힘을 끌어낸 것이 아닙니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "트렌치 나이프 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" +msgstr[0] "용골 전투도끼" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" -msgstr[0] "트렌치 나이프 +2" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" +"용골로 만든 변종 전투도끼입니다. 내구성을 희생하지 않고도 극도로 강력한 무기로 거듭났습니다. 오리칼쿰보다도 뛰어나며, 심지어 이 상태도" +" 원재료의 온전한 힘을 끌어낸 것이 아닙니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "크리스 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" +msgstr[0] "용골 치앙" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" -msgstr[0] "크리스 +2" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" +"용골로 만든 변종 치앙입니다. 내구성을 희생하지 않고도 극도로 강력한 무기로 거듭났습니다. 오리칼쿰보다도 뛰어나며, 심지어 이 상태도 " +"원재료의 온전한 힘을 끌어낸 것이 아닙니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "쿠크리 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" +msgstr[0] "용골 타치" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" -msgstr[0] "쿠크리 +2" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" +"용골로 만든 변종 타치입니다. 내구성을 희생하지 않고도 극도로 강력한 무기로 거듭났습니다. 오리칼쿰보다도 뛰어나며, 심지어 이 상태도 " +"원재료의 온전한 힘을 끌어낸 것이 아닙니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "야태도 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" +msgstr[0] "가울 마라즈" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" -msgstr[0] "야태도 +2" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "곡괭이 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" +msgstr[0] "강산이 주입된 용골 장검" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" -msgstr[0] "곡괭이 +2" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "파이크 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" +msgstr[0] "강산이 주입된 용골 전투도끼" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" -msgstr[0] "파이크 +2" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "레이피어 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" +msgstr[0] "강산이 주입된 용골 치앙" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" -msgstr[0] "레이피어 +2" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "탄토 +1" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" +msgstr[0] "강산이 주입된 용골 타치" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" -msgstr[0] "탄토 +2" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "와키자시 +1" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" +msgstr[0] "거대 곤봉" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" -msgstr[0] "와키자시 +2" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "쯔바이핸더 +1" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" -msgstr[0] "쯔바이핸더 +2" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "코피스 +1" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" -msgstr[0] "코피스 +2" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "크시포스 +1" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" +"끄트머리에 커다란 혹이 달린 튼튼하고 울퉁불퉁한 몽둥이입니다. 굉장히 무겁지만, 충분한 근력이 있다면 매우 강력한 무기가 될 것입니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" -msgstr[0] "크시포스 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" +msgstr[0] "목제 삼지창" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "다오 +1" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" -msgstr[0] "다오 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" +msgstr[0] "가시달린 재블린" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "루체른 해머 +1" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" +"정확성을 높이기 위해 화살처럼 깃이 달린 이 무기는 길이가 3피트에 육박합니다. 심각한 출혈을 일으킬 것 같은 살벌한 가시들이 재블린의" +" 끝에 달려있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "루체른 해머 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "가시달린 자벨린을 발사하는 가짜 총입니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" -msgstr[0] "바이오맨서 창" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" +msgstr[0] "농축 마나 혈청" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "튼튼한 장대 위에 괴상하게 생긴 뼈 창날이 달려있습니다. 머리 부분에 바이오맨서 룬이 박혀있습니다." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "매우 농축된 형태의 마력 물약입니다. 이것이 어떤 영향을 미칠지 잘 모르실 겁니다..." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" -msgstr[0] "테크노맨서 도구함" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" +msgstr[0] "좀비 부두술 인형" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -"이 지팡이는 한쪽에 튼튼한 크레센트 렌치, 다른쪽에 망치를 달아 편리하게 사용할 수 있도록 만들어졌습니다. 망치머리에 테크노맨서의 룬이 " -"새겨져있습니다." +"뼈와 장기까지 포함된 언데드 인간의 인상깊을 정도로 정밀한 모형입니다. 네크로맨시 마법이 즉각적 부패를 지연시키지만, 영원하지는 않을 " +"것입니다. 첨부된 바늘로 찌르면 당신을 섬기게 만들 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" -msgstr[0] "마구스 지팡이" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" +msgstr[0] "골화된 부두술 인형" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -"열가공처리 및 마나주입을 통해 내구성을 강화한 유리 잔 두 개를 달아 마나 용기로 쓸 수 있도록 한 육척봉입니다. 양 끄트머리에 메이거스" -" 룬 두 개가 새겨져있습니다." +"뼈로 덮이고 장기가 포함된 언데드 인간의 인상깊을 정도로 정밀한 모형입니다. 네크로맨시 마법이 즉각적 부패를 지연시키지만, 영원하지는 " +"않을 것입니다. 첨부된 바늘로 찌르면 당신을 섬기게 만들 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" -msgstr[0] "켈비니스트 플랑베르주" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" +msgstr[0] "쿠거 부두술 인형" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "날이 마치 불꽃을 연상하듯 일렁이는 검입니다. 검의 폼멜에 켈비니스트 룬이 새겨져 있습니다." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"털, 뼈, 장기까지 포함된 언데드 쿠거의 인상깊을 정도로 정밀한 모형입니다. 네크로맨시 마법이 즉각적 부패를 지연시키지만, 영원하지는 " +"않을 것입니다. 첨부된 바늘로 찌르면 당신을 섬기게 만들 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" -msgstr[0] "스톰셰이퍼 도끼" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" +msgstr[0] "화염구의 완드" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "나무로 된 손잡이와 제련된 구리, 그리고 은장식으로 구성된 도끼입니다. 도끼의 눈에 스톰셰이퍼 룬이 새겨져 있습니다." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "이 전통적인 지팡이는 실패율 없이 화염구를 발사합니다. 숙련된 켈비시스트라면 더 효과적으로 사용할 수 있겠지만요." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" -msgstr[0] "애니미스트 애터미" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" +msgstr[0] "매직 미사일의 완드" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" -"소환 마법을 위해 애니미스트들이 피를 뽑아내는 데에 사용하는 의식용 강철 나이프입니다. 날 밑에 이들의 학파의 룬이 새겨져 있습니다." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "이 전통적인 지팡이는 실패율 없이 매직 미사일을 발사합니다. 숙련된 마구스라면 더 효과적으로 사용할 수 있겠지만요." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" -msgstr[0] "용수철지팡이 (바통)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" +msgstr[0] "구식화된 CBM:혈액 발전기" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "봉 형태로 늘리기" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "구식화된 물품입니다! 세이브 파일 호환을 위해 남아있습니다." -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "용수철지팡이를 휘둘러 지팡이 형태로 바꿉니다." +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "소형 마나 물약" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -"이 다재다능한 무기는 테크노맨시로 강화된 용수철을 사용하여 바통 형태인 동안에 봉의 끝부분을 집어넣은 채로 유지시켜줍니다. 발동하여 " -"봉의 형태로 늘립니다." +"이건 돈주고 구할 수 있는 물건이 아니니, 최종보스와 마주할 때까지 아끼는게 좋습니다! 사실, 그놈과 마주하더라도 가능하면 안 쓰는게 " +"좋아요!" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" -msgstr[0] "용수철지팡이 (봉)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" +msgstr[0] "마나 물약" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "바통 형태로 줄이기" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "대형 마나 물약" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "용수철지팡이를 접어 바통 형태로 바꿉니다." +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "고양이의 우아함의 물약" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" -"이 다재다능한 무기는 테크노맨시로 강화된 용수철을 사용하여 봉 형태를 유지하는 동안 끝부분이 접히는걸 방지합니다. 발동하여 바통 형태로 " -"줄입니다." - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" -msgstr[0] "발열 큐브" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "고양이의 우아함의 물약입니다. 마시면 10분 동안 민첩성이 향상될 것입니다." -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "횃불 활성화" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" +msgstr[0] "오우거의 힘의 물약" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "횃불 버튼을 누르면 큐브위에서 큰 불꽃을 내뿜습니다. 불꽃을 방출하지만 아무것도 태우지 않습니다." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "오우거의 힘의 물약입니다. 마시면 10분 동안 체력이 향상될 것입니다." -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "독수리의 시야의 물약" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "주먹만한 크기의 매끄러운 강철 입방체. 측면에 있는 여러 개의 버튼이 큐브을 작동시킵니다." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "독수리의 시야의 물약입니다. 마시면 10분 동안 지각력이 향상될 것입니다." -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" -msgstr[0] "발열 큐브 (횃불 켜짐)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" +msgstr[0] "여우의 교활함의 물약" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "횃불의 불꽃이 꺼졌다." +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "여우의 교활함의 물약입니다. 마시면 10분 동안 지능이 향상될 것입니다." -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" +msgstr[0] "뒤틀린 소생의 물약" + +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "횃불이 켜진 발열 큐브. 타지 않는 밝은 불꽃을 방출합니다." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" +"이 구역질나는 냄새의 액체는 당신의 심장을 위험할 정도로 가속시켜 언데드의 재생력을 흉내냅니다. 위험에 처한 상황, 혹은 심각한 부상을 " +"입은 상황에서 이 물약을 복용할 경우 치명적 결과를 초래할 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" -msgstr[0] "해골 열쇠" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "상급 뒤틀린 소생의 물약" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "작은 해골 금열쇠. 잠금 장치를 해제할 수 있습니다." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" +"이 구역질나는 냄새의 액체는 당신의 심장을 위험할 정도로 가속시켜 언데드의 재생력을 흉내냅니다. 위험에 처한 상황, 혹은 심각한 부상을 " +"입은 상황에서 이 물약을 복용할 경우 치명적 결과를 초래할 수 있습니다. 향상된 주입 기술 덕분에 약효가 도는 중의 부담이 조금 " +"경감되었습니다." -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" -msgstr[0] "영원의 횃불" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" +msgstr[0] "블랙 드래곤: 늪지의 폐허" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "이것은 고품질의 나무 횃불입니다. 주문을 외우면 불꽃이 튀며 밝게 불타오릅니다. 영원토록." +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" +"블랙 드래곤에 대해 자세히 묘사하는 책입니다. 이 책에 따르면 블랙 드래곤은 용 중에서도 가장 사악한 종으로, 늪지의 폐허에 사는 " +"족속들입니다. 놈들은 강산에 면역이며 동시에 강산을 내뿜는다는 모양입니다. 그리고 이 책에는 놈들의 가죽을 벗겨내 가공하는 방법과, " +"그렇게 마련한 가죽의 내산성을 살린 여러 갑옷을 만드는 방법도 적혀있습니다." -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" -msgstr[0] "무한의 플라스크" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "연금술 입문" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "플라스크를 열면 달디단 위스키가 가득 들어있습니다!" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "액화 마법 기술에 대한 페이퍼백 서적입니다. 알코올은 포함되어 있지 않습니다." -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "플라스크의 재충전이 아직 끝나지 않았다." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgstr[0] "사령술을 공부하는 영혼술사를 위한 가이드" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" -msgstr[0] "마법의 재단용 도구" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "언데드 개체의 영혼을 인형에 묶어, 그것들의 치유력을 흉내내는 기술을 담은 문고본 마도서입니다." -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" +msgstr[0] "마법공학 삽화본" + +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -"여러 종류의 바늘, 플라스틱 실패, 작은 가위, 그리고 플라스틱을 녹이고 덧붙이는데 필요한 작은 발열장치와 마법적 문양이 포함된 고급 " -"반짇고리입니다. 의복이나 갑옷을 강화하는데 쓸 수 있습니다. 재봉 기술에 영향을 받습니다. 또한 마법의 거미가 들어있어 느리지만 꾸준히 " -"새 실타래를 만들어냅니다." +"현대 기술과 마법을 결합하는 기술에 대한 페이퍼백 서적입니다. 뒷면에는 '캐니스 산업은 여기에 언급된 제품의 오작동이나 이로 인한 " +"사고에 대해 책임을 지지 않습니다.'라고 적혀있습니다." -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" -msgstr[0] "거미 상자" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" +msgstr[0] "아스가르드와 그 너머의 무기들" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "밤낮으로 실을 생산하는 거미가 들어있는 작은 유리상자. 실이 쌓이면 열어서 꺼낼 수 있습니다." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" +"노르드 룬으로 적힌 듯한 화려한 책. 상세한 삽화에 근거하여 볼 때, 이 책에는 여러 신들이 사용한 수많은 무기를 만드는 법에 대해 " +"담겨있는 것으로 보입니다." -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" -msgstr[0] "드루이드 컴포지트 보우" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" +msgstr[0] "독으로 요리하기" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "에너지 효율을 극대화하기 위해 여러 재료로 만든 활. 끝에 두 개의 드루이드 룬이 박혀있습니다" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "표지에 가마솥이 새겨진 가죽 서적입니다. 음식을 마법처럼 정화하는 내용이 담겨있습니다." -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" -msgstr[0] "M47A1 테크노 메두사" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" +msgstr[0] "전설의 금속" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" -"생존주의자를 대상으로 한 다구경 리볼버인 필립스 앤 로저스의 M47 Medusa를 마법으로 강화하여 업데이트한 버전입니다. 테크노맨싱으로" -" 작은 탄약 사용시의 안정성을 개선할 수 있었지만, 총열에 강선이 없기 때문에 전용 구경 리볼버만큼 정확하지 않습니다." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "놋쇠 표지가 있는 책. 오리칼쿰과 같은 마법의 금속을 만드는 법을 가르친다고 한다. 지루하고 두꺼운 연금술책이다." -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" -msgstr[0] "건블레이드" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" +msgstr[0] "환수로부터 안전해지는 법" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -"앞으로 구부러진 팔카타처럼 생긴 이 검은 칼등에 단축총열 펌프액션 산탄총이 달려있어, 적을 확인사살하거나 혹은 기선제압할 때 써먹을 수 " -"있습니다." - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" -msgstr[0] "구리 마법 반지" +"표지에 드래곤 브레스의 불길을 방패로 막아내는 그림이 그려진 가죽 제본 서적입니다. 괴물들의 가죽이나 비늘 따위로 보호구를 제작하는 " +"여러 내용들이 담겨있습니다." -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "평범한 마법의 구리반지입니다." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" +msgstr[0] "인챈터의 가이드북" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" -msgstr[0] "마법 반지" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "무기와 도구를 마법적으로 강화하는데 필요한 이론과 연습을 다루는 두꺼운 교과서입니다." -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "평범한 마법의 은반지입니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "마법의 두루마리" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "평범한 마법의 금반지입니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" +msgstr[0] "마나 결정화의 두루마리" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "평범한 마법의 백금반지입니다." +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "훌륭한 마법사는 항상 철저히 준비하는 법입니다. 마나를 결정화시켜 나중에 활용하세요!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" -msgstr[0] "칼날 반지" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" +msgstr[0] "어둠의 시야의 두루마리" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." -msgstr "단검이 새겨진 화려한 은반지입니다. 작동 시 손에 거의 완벽한 투척 나이프를 만들어냅니다" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "진정한 비전술사에게 어둠이 숨길 수 있는 비밀은 없습니다. 완벽한 어둠 속에서도 볼 수 있도록 시야를 조절합니다!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" -msgstr[0] "장어 반지" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" +msgstr[0] "투명화의 두루마리" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." -msgstr "뱀장어가 스스로 감겨 있는 모습을 묘사한 얇은 은색 띠 반지. 턴 당 공격을 피할 수 있는 기회를 1회 추가합니다." +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "당신이 원하지 않으면 빛은 당신을 비추지 않습니다. 투명인간이 되었습니다!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" -msgstr[0] "쌍두장어 반지" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" +msgstr[0] "몽환의 신체 두루마리" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" -"머리가 두 개인 뱀장어가 스스로 감겨 있는 모습을 묘사한 얇은 금반지. 턴 당 공격을 피할 수 있는 기회를 2회 추가합니다." +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "마법적 기운이 신체 주변의 빛을 왜곡시켜, 적의 공격을 더 쉽게 피하도록 만듭니다." -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" -msgstr[0] "체력의 반지 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" +msgstr[0] "홀로그램 전환의 두루마리" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "이 구리 반지를 끼면 힘이 조금 세집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" +msgstr[0] "강타의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" -msgstr[0] "체력의 반지 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" +msgstr[0] "생명력 전환의 두루마리" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "이 은반지를 끼면 힘이 충만해집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" +msgstr[0] "고통을 넘어선 정신의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" -msgstr[0] "체력의 반지 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" +msgstr[0] "좀비 소환의 두루마리" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "이 금반지를 끼면 놀라울 정도로 튼튼해집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" +msgstr[0] "스켈레톤 소환의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" -msgstr[0] "체력의 반지 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" +msgstr[0] "떠다니는 원반 소환의 두루마리" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "이 백금 반지를 끼면 힘이 훨씬 더 세집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" +msgstr[0] "부패한 습격자 소환의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" -msgstr[0] "민첩성의 반지 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" +msgstr[0] "가벼운 상처 치료의 두루마리" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "이 구리 반지를 끼면 민첩성이 조금 높아집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" +msgstr[0] "고통 나누기의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" -msgstr[0] "민첩성의 반지 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" +msgstr[0] "악랄한 촉수의 두루마리" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "이 은반지를 끼면 민첩성이 조금 더 높아집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" +msgstr[0] "기괴한 강화의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" -msgstr[0] "민첩성의 반지 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" +msgstr[0] "강산 분사의 두루마리" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "이 금반지를 끼면 놀라울 정도로 민첩해집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" +msgstr[0] "살아있는 주머니의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" -msgstr[0] "민첩성의 반지 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" +msgstr[0] "뼈 창 소환의 두루마리" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "이 백금 반지를 끼면 민첩성이 훨씬 더 높아집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" +msgstr[0] "메가 블래스트의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" -msgstr[0] "지능의 반지 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" +msgstr[0] "마법의 빛 두루마리" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "이 구리 반지를 끼면 지능이 조금 높아집니다" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" +msgstr[0] "눈부신 섬광의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" -msgstr[0] "지능의 반지 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" +msgstr[0] "영체의 손아귀 두루마리" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "이 은반지를 끼면 지적인 느낌을 줍니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" +msgstr[0] "보호의 오라 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" -msgstr[0] "지능의 반지 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" +msgstr[0] "초목의 손아귀의 두루마리" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "이 금반지를 끼면 놀라울 정도로 똑똑해집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" +msgstr[0] "뿌리 타격의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" -msgstr[0] "지능의 반지 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" +msgstr[0] "나무 말뚝의 두루마리" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "이 백금 반지를 끼면 지능이 훨씬 더 높아집니다" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" +msgstr[0] "자연의 활 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" -msgstr[0] "지각력의 반지 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" +msgstr[0] "자연의 황홀경 두루마리" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "이 구리 반지를 끼면 지각력이 조금 높아집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" +msgstr[0] "백 오브 캣츠 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" -msgstr[0] "지각력의 반지 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "돌주먹의 두루마리" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "이 은반지를 끼면 지각력이 조금 더 높아집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "지진의 발구르기의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" -msgstr[0] "지각력의 반지 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" +msgstr[0] "돌의 강인함의 두루마리" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "이 금반지를 끼면 눈이 뜨이며 지각력이 매우 높아집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "파편 분사의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" -msgstr[0] "지각력의 반지 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "관통하는 화살의 두루마리" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "이 백금 반지를 끼면 지각력이 훨씬 더 높아집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" +msgstr[0] "파편 폭풍의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" -msgstr[0] "속도의 반지 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "암석의 화살 두루마리" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "이 구리 반지를 끼면 조금 빨라집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "발화의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" -msgstr[0] "속도의 반지 +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "꼬마불꽃의 두루마리" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "이 은반지를 끼면 조금 더 빨라집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "고드름 낙하의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" -msgstr[0] "속도의 반지 +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "화염구의 두루마리" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "이 금반지를 끼면 매우 빨라집니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" +msgstr[0] "냉기의 원뿔 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" -msgstr[0] "속도의 반지 +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "불타는 손길의 두루마리" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "이 백금 반지를 끼면 훨씬 빨라집니다" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "서리 분사의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" -msgstr[0] "보호의 반지 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "서늘한 손길의 두루마리" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "이 구리 반지는 착용자가 피격당했을 때 받는 충격량을 일정부분 감소시켜줍니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "빙상 활주의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" -msgstr[0] "보호의 반지 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "눈꽃 폭발의 두루마리" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "이 은반지는 착용할 때 받는 피해를 줄여줍니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "얼음 방패의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" -msgstr[0] "보호의 반지 +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "서리 갑옷의 두루마리" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "이 금반지는 착용할 때 받는 피해를 크게 줄여줍니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "매직 미사일의 두루마리" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" -msgstr[0] "보호의 반지 +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "위상 관문의 두루마리" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "이 백금 반지는 착용할 때 받는 피해를 엄청나게 줄여줍니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "중력 우물 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" -msgstr[0] "마법 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "마나 폭발의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" -msgstr[0] "롱소드 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" +msgstr[0] "마나 화살의 두루마리" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 롱소드로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "가속의 두루마리" -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "앞면에 롱소드가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "마나 광선의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" -msgstr[0] "아밍소드 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" +msgstr[0] "탈출의 두루마리" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 아밍소드로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "고양이의 우아함의 두루마리" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "앞면에 아밍소드가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "독수리의 시야의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" -msgstr[0] "브로드소드 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "오우거의 힘의 두루마리" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 브로드소드로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" +msgstr[0] "여우의 교활함의 두루마리" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "앞면에 브로드소드가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "전기충격의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" -msgstr[0] "전투도끼 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "번개의 화살 두루마리" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 전투도끼로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" +msgstr[0] "선풍의 일격 두루마리" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "앞면에 전투도끼가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "바람의 질주 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" -msgstr[0] "파이크 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" +msgstr[0] "폭풍망치 소환의 두루마리" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 파이크로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "축복의 두루마리" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "앞면에 파이크가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" +msgstr[0] "성스러운 검의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" -msgstr[0] "메이스 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "영체의 갑옷 두루마리" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 메이스로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" +msgstr[0] "램프의 두루마리" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "앞면에 메이스가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "마력발전의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" -msgstr[0] "육척봉 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" +msgstr[0] "테이즈의 두루마리" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 육척봉으로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "하급 양자터널의 두루마리" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "앞면에 육척봉이 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" +msgstr[0] "시냅스 자극의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" -msgstr[0] "해머 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "레이즈의 두루마리" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 해머로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" +msgstr[0] "움직이는 칼의 두루마리" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "앞면에 해머가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "거울의 형상 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" -msgstr[0] "스크류드라이버 세트 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "번개 폭발의 두루마리" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 스크류드라이버 세트로 변합니다!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "죽음의 시선의 두루마리" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" +msgstr[0] "정화의 씨앗 두루마리" + +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "앞면에 스크류드라이버 세트가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." +msgstr "물을 정화시켜주는 대지의 선물을 불러냅니다. 높은 레벨의 주문은 더 많은 씨앗을 생성합니다." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" -msgstr[0] "연장통 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" +msgstr[0] "광학적 빛줄기 재채기의 두루마리" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 연장통으로 변합니다!" +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." +msgstr "얼굴에서 반-직접 광선을 쏘아내기 위해 내장 배터리를 과부하시킵니다." -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "앞면에 연장통이 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" +msgstr[0] "용암 폭탄의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" -msgstr[0] "쇠지레 토큰" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" +msgstr[0] "강산 저항의 두루마리" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 쇠지레로 변합니다!" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "이 주문은 산성으로부터 당신을 보호하는 투명한 보호막을 만들어냅니다." -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" +msgstr[0] "번개치는 폭풍의 두루마리" + +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "앞면에 쇠지레가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." +msgstr "이 두루마리는 스톰셰이퍼들이 흔히 쓰는 번개 폭풍 주문을 개량하여 위력과 마나 소모량을 모두 끌어올린 것을 담고 있습니다." -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" -msgstr[0] "보틀 잭 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" +msgstr[0] "희생의 재성장의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "보틀 잭 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "희생의 치유의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" -msgstr[0] "메스 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" +msgstr[0] "돌의 피부 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" -msgstr[0] "메스 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "돌 기둥의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" -msgstr[0] "푸주칼 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" +msgstr[0] "마비의 바늘 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" -msgstr[0] "푸주칼 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "선혈의 투사 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" -msgstr[0] "고기 중식도 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" +msgstr[0] "응고의 바느질 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" -msgstr[0] "고기 중식도 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "이온화의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" -msgstr[0] "정육칼 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" +msgstr[0] "이그누스 파투스의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" -msgstr[0] "정육칼 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "안개 벽의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" -msgstr[0] "도축 키트 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" +msgstr[0] "물 응결의 두루마리" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" -msgstr[0] "도축 키트 +2" +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" -msgstr[0] "카에스투스 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" +msgstr[0] "깨끗한 물 응결의 두루마리" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" -msgstr[0] "카에스투스 +2" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" -msgstr[0] "불주먹" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" +msgstr[0] "염산 생성의 두루마리" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -"주먹을 감싸 타격력을 높여주는 묵직한 금속 보호구로, 착용자의 손을 보호하기 위한 튼튼한 속장갑이 달려있습니다. 적에게만 피해를 입히는 " -"마법의 흑염을 뿜어내는 마법이 불어넣어졌습니다." -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" -msgstr[0] "불주먹 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" +msgstr[0] "악마 소?환의 두루마리" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "불주먹 +2" +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" -msgstr[0] "파운딩 건틀렛" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" +msgstr[0] "화염 폭풍의 두루마리" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "마법적인 상징으로 덮인 커다랗고 반짝이는 금속 건틀릿. 놀라울 정도로 강력한 일격을 낼 수 있습니다." +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" -msgstr[0] "산탄총 카에스투스" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" +msgstr[0] "냉기 폭풍의 두루마리" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -"단축 이중총열 산탄총을 매단 금속 카에스투스입니다. 반동을 흡수할 개머리판이 없어 충분한 근력이 있어야 제대로 사격할 수 있습니다." -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" -msgstr[0] "어스셰이퍼 카에스투스" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" +msgstr[0] "바위 무덤의 두루마리" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." -msgstr "손을 뒤덮는 룬을 새겨 타격력과 방어력을 높인 석제 전투용 장갑입니다. 손바닥에 어스셰이퍼 룬이 새겨져있습니다." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "마법 완드" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" +msgstr[0] "운석 소환의 두루마리" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" -msgstr[0] "일회용 완드" +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" -msgstr[0] "매직 미사일의 하급 완드" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" +msgstr[0] "강산 화살의 두루마리" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 매직 미사일 주문을 시전합니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" -msgstr[0] "매직 미사일의 중급 완드" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" +msgstr[0] "강산 폭탄의 두루마리" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" -msgstr[0] "매직 미사일의 상급 완드" +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" -msgstr[0] "화염구의 하급 완드" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" +msgstr[0] "강산 폭풍의 두루마리" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 화염구 주문을 시전합니다." +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" -msgstr[0] "화염구의 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +msgstr[0] "카타클리즘: 밝은 밤을 디버깅하는 테크노맨서를 위한 안내서" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" -msgstr[0] "화염구의 상급 완드" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" -msgstr[0] "마나 광선의 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" +msgstr[0] "마술 입문서" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 마나 광선 주문을 시전합니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" -msgstr[0] "마나 광선의 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" +msgstr[0] "배낭여행을 위한 마법 안내서" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" -msgstr[0] "마나 광선의 상급 완드" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" +"이 책은 배낭여행 시 갖고 가야 할 물건... 아니, 알아둬야 할 주문 안내서입니다. 책이 꽤 두껍긴 해도 여기 있는 주문은 상당히 " +"유용하게 쓰일 겁니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" -msgstr[0] "발화의 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" +msgstr[0] "이단자를 위한 화염술서" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." -msgstr "사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 발화 주문을 시전합니다." +"This charred husk of a book still contains many ways to light things aflame." +msgstr "겉이 새까맣게 타버린 이 책에는 아직도 불을 붙이는 여러 방법들이 담겨있습니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" -msgstr[0] "발화의 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" +msgstr[0] "마법의 요소에 대한 학술서" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" -msgstr[0] "발화의 상급 완드" +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This details complex diagrams, rituals, and choreography that describes " +"various spells." +msgstr "이 책에는 다양한 주문을 설명하는 복잡한 도표, 의식, 동작 등이 상세히 묘사되어 있습니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" -msgstr[0] "눈꽃 폭발의 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" +msgstr[0] "신성소개론" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." -msgstr "" -"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 지팡이는 눈꽃 폭발 주문을 시전합니다." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "여기엔 거의 종교 용어밖에 없어 보이지만, 치유에 관한 몇 가지 메모가 적혀 있습니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" -msgstr[0] "눈꽃 폭발의 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +msgstr[0] "성전사를 위한 현대 주문시전 안내서" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "눈꽃 폭발의 상급 완드" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "제목이 저런데도 내용은 온갖 중세 영어투성이입니다. 조금 더디긴 해도 대부분의 단어는 제법 그럭저럭 이해할 만합니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" -msgstr[0] "냉기의 원뿔의 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" +msgstr[0] "영원한 겨울의 손아귀" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." -msgstr "" -"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 냉기의 원뿔 주문을 시전합니다." +"This slim book almost seems to be made from ice, it's cold to the touch." +msgstr "이 얇은 책은 거의 얼음으로만 만들어진 것 같습니다. 손 시려워라!" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" -msgstr[0] "냉기의 원뿔의 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" +msgstr[0] "다가오는 폭풍의 서" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "냉기의 원뿔의 상급 완드" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "폭풍 구름과 번개 볼트가 맞물려 새겨진 커다란 책입니다. 촉감이 제법 따끔따끔합니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" -msgstr[0] "매직 미사일의 일회용 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" +msgstr[0] "평범한 마법서" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -"사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 매직 미사일 주문을 시전합니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" -msgstr[0] "매직 미사일의 일회용 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" +msgstr[0] "빛과 거짓의 서" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "매직 미사일의 일회용 상급 완드" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." +msgstr "작고 하얀 책으로, 주변의 은은한 빛을 미묘하게 증폭시키고 있습니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" -msgstr[0] "화염구의 일회용 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "살점의 서" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 화염구 주문을 시전합니다." +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "무두질된 인간의 피부로 덮여있는 듯한 작은 책입니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" -msgstr[0] "화염구의 일회용 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" +msgstr[0] "나무의 책" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" -msgstr[0] "화염구의 일회용 상급 완드" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "나무껍질로 덮여있는 책입니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" -msgstr[0] "마나 광선의 일회용 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "에너지원으로서의 마나의 유용성" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "" -"사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 마나 광선 주문을 시전합니다." - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" -msgstr[0] "마나 광선의 일회용 중급 완드" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" -msgstr[0] "마나 광선의 일회용 상급 완드" +"This book details spells that use your mana to recover various physiological" +" effects." +msgstr "이 책에는 마력으로 다양한 생리적 효과를 회복하는 주문에 대해 자세히 설명되어 있습니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" -msgstr[0] "발화의 일회용 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" +msgstr[0] "전투 마법사의 서" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 발화 주문을 시전합니다." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "마구스의 전투 마법으로 가득한 정말이지 마법스러운 주문서입니다. 운도 좋으셔라!" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" -msgstr[0] "발화의 일회용 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "지구공동의 서" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" -msgstr[0] "발화의 일회용 상급 완드" +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." +msgstr "이 대지의 힘을 담은 먼지투성이 마법서에는 마치 천년만년... 음... 먼지투성이네요." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" -msgstr[0] "눈꽃 폭발의 일회용 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" +msgstr[0] "마법 이동의 서" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 일회용 나무 지팡이입니다. 이 지팡이는 눈꽃 폭발 주문을 시전합니다." +"이 작고 가벼운 책은 어쩐지 완전히 실재하진 않는 것 같습니다. 한 97% 정도만 존재한다고 쳐봅시다. 이 책에는 이동이나 운동 등을" +" 주로 다룬 마구스 학파의 주문이 담겨 있습니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" -msgstr[0] "눈꽃 폭발의 일회용 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "얼룩진 두루마리" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" -msgstr[0] "눈꽃 폭발의 일회용 상급 완드" +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." +msgstr "" +"이 두루마리는 누군가 새로운 주문을 구상하다가 커피를 엎지르고 홧김에 구겨버린 것 같습니다. 당신은 여기서 확실히 어느 주문을 외울 수" +" 있을 거라 말하지만, 그 주문이 잘 될지는 당신 자신도 잘 모르는 모양이군요." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" -msgstr[0] "냉기의 원뿔의 일회용 하급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" +msgstr[0] "바보들을 위한 사령술과 그 하수인들" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -"사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 냉기의 원뿔 주문을 시전합니다." +"이 책은 언데드 하수인을 불러내 당신을 위해 싸우게 만드는 여러 방법을 소개합니다. 소환된 개체는 잠시 후 먼지로 부스러져 사라질 " +"것입니다." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" -msgstr[0] "냉기의 원뿔의 일회용 중급 완드" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "테크노맨시의 핵심" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" -msgstr[0] "냉기의 원뿔의 일회용 상급 완드" +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." +msgstr "이 두꺼운 설명서는 주문 시전자에게 다양한 형태의 물질과 에너지를 조작하고 강화하는 방법을 알려주고 있습니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" -msgstr[0] "마법의 돌장갑 건틀렛" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" +msgstr[0] "바보도 할 수 있다! 테크노맨시 완벽 가이드" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "보호와 공격을 할수있는, 유연한 돌멩이 같은 마법의 물질입니다." +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." +msgstr "이 도표와 만화로 가득한 화려한 안내서는 조금 뒤쳐지는 학도들을 위한 몇 가지 기초적인 테크노맨시 주문을 가르쳐 줍니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" -msgstr[0] "꼬마불꽃" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "테크노맨시와 전자기 스펙트럼" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "이것은 손에 쥘 수 있는 작은 불꽃입니다. 원하면 뭔가에 불이 붙게 할 수 있습니다." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "이 두꺼운 연구용 참고 자료집에는 전자파방사선에 마법을 결합하는 정보들이 가득합니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "마법의 등불" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +msgstr[0] "공간 정보 시스템 : 선형성의 거짓말" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "작은 장소를 밝혀주는 마법의 등불" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" +"이 책은 시공간이 얼마나 비-유클리드적이고 뒤죽박죽 꼬여있는지에 대해 상세히 기술하고 있습니다. 또한 서로 교환되는 십여 가지의 다른 " +"좌표계를 보여주고 있어 상당히 이해하기 어렵습니다. 수많은 전문용어들이 있긴 하지만 그래도 집중하여 공부하다 보면 포탈에 대해 한두 " +"가지 정도는 익힐 수 있을 것 같습니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "마법의 빛" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "인간 조건의 초월" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "글을 읽을 수 있을 정도의 작은 마법의 빛. " +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "" +"인간이란 스스로를 발전시키는 유일한 생명체입니다. 본 책은 이에 대한 더욱 영구적인 해답을 찾아내기 위해 여러 감각들을 일시적으로 " +"고조시킬 수 있는 다양한 주문들을 소개하고 있습니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" -msgstr[0] "대형 얼음 방패" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" +msgstr[0] "견습 테크노맨서의 주문책" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "마법의 얼음으로 만들어진 가볍지만 단단한 방패다." +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" -msgstr[0] "미끈한 얼음 코팅" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "견습 스톰셰이퍼의 주문책" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "발에 마법의 얼음 코팅을 한다. 평평한 바닥에서는 상당히 빠르지만 험한 지형에서는 움직이기 어렵다." +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" -msgstr[0] "폭풍망치" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "견습 어스셰이퍼의 주문책" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "적들을 후려쳐 산산조각낼 번개로 충만한 마법의 전쟁망치입니다. 물론, 물건도 충분히 잘 부숩니다!" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" -msgstr[0] "폭풍주먹" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "견습 켈비니스트의 주문책" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "팔과 손을 마법의 번개로 감쌌다. 근접 전투에서 주먹으로 자신을 지킬 수 있습니다." +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" -msgstr[0] "악랄한 촉수 채찍" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" +msgstr[0] "정화의 솥" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "날카로운 뼈와 뾰족한 돌기로 덮인 길고 흔들리는 촉수" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" -msgstr[0] "살아있는 주머니" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" +"악마거미 키틴질로 만든 솥으로, 빛을 빨아들이는 것처럼 보입니다. 16리터까지의 재료를 보관할 수 있으며 재료로부터 독성을 흡수할 " +"것입니다. 연구를 진행하면 다른 기능을 찾아낼 수 있을지도 모릅니다." -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." msgstr "" -"등에 맬수있는 살아있는 주머니, 주머니 안은 작은 촉수들로 가득 차서 안에 있는 모든 것을 움켜쥘 수 있습니다. 스스로 이동 및 조정하여" -" 방해를 최소화합니다." +"마법적으로 향상되고 악마거미 키틴질로 보강된, 휴대 가능한 목탄 용광로입니다. 마법적 금속을 재련해 주괴로 만들어 제작에 쓸 수 있게 " +"합니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" -msgstr[0] "사악한 뼈창" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" +msgstr[0] "방화 절구" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "이것은 완전히 뼈로 만들어진 사악한 창/미늘창 의 혼합물입니다 " +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "드래곤 브레스에 준하는 온도에 버틸 수 있는 작업이 필요할 때 사용할 수 있는 연금술용 막자사발입니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" -msgstr[0] "나무활" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "구리 주입 팔찌" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "마법으로 만들어진 단단하고 유연한 나무 활입니다. 시위를 당겨 조준하면 마법의 나무 화살이 나타납니다." +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" +"이 팔찌에는 룬이 새겨져 있습니다. 그것을 들여다볼 때 신비한 기미를 느낄 수 있습니다. 마나를 물체에 주입할 때 유용할 것입니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" -msgstr[0] "정화의 씨앗" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "은 주입 팔찌" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "씨앗 짜내기" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "구리 서클릿" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "손바닥에 놓은 씨앗을 움켜쥐자, 씨앗이 고운 가루로 바뀝니다." +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "구리 장식이 된 머리에 장식하는 목제 띠. 이것을 머리에 쓴 채 관자놀이를 문지르면 마음이 매우 차분해집니다." -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" +msgstr[0] "최하급 마법의 지팡이" + +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "쥐어짜서 정화의 가루를 뿌리는데 쓰이는 마법의 씨앗입니다. 씨앗 하나가 물 1갤런을 정화할 수 있습니다." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" -msgstr[0] "희미하게 빛나는 가루" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" +msgstr[0] "하급 마법의 지팡이" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "가루가 점점 더 강하게 빛난다." +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" +"마법의 나무와 미스릴로 만든, 아름답게 조각된 지팡이입니다. 주문을 영창하면 마법으로 희미하게 빛나긴 하지만, 적을 때릴만큼 튼튼한 " +"무기는 아닙니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" -msgstr[0] "애매함의 오라" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" +msgstr[0] "상급 마법의 지팡이" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "보이지 않는 마법의 장막이 당신을 온전히 감싸고 주변의 빛을 왜곡시킵니다. 각 턴마다 공격을 두 번 더 회피할 수 있습니다." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" -msgstr[0] "내산성의 오라" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "강산으로부터의 방호를 전신에 제공하는 투명한 방어막입니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "마법사의 모자" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" -msgstr[0] "상위 내산성의 오라" +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "별이 박혀있는 뾰족한 파란색 모자. 착용하면 마나 재생력이 높아집니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" -msgstr[0] "서리 갑옷" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" +msgstr[0] "화염구 해머" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "마법의 얼음이 얇은 층을 이뤄 전신을 뒤덮고 있습니다." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "인화성!!!! 피해욧!!!! 폭발물!!!!" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" -msgstr[0] "돌피부 코팅" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "마법의 가죽 벨트" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "액체처럼 흐르는 살아있는 암석이 얇은 층을 이뤄 전신을 뒤덮고 있습니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "가속의 벨트" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" -msgstr[0] "과충전 연소" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "메깅요르드" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "이런, 참 끝내주는 일입니다! 근데 이거 금방 없어지는거 맞죠?" +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." +msgstr "천둥의 신 토르의 신비한 허리띠입니다. 혹은 최소한 그렇게 생겼습니다. 착용자의 기본 체력을 두 배로 늘립니다." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" -msgstr[0] "보호의 오라" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" +msgstr[0] "하급 주머니 거들" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "환경으로부터 당신을 보호하는 보이지 않는 마법의 보호막입니다." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "" +"허리 사이즈에 딱 맞는 넓적한 거들입니다. 필요 이상으로 많은 것을 담을 수 있는 수많은 작은 주머니로 덮여있으며, 내용물의 질량도 " +"크게 줄어듭니다." -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "이 목검은 불타고 있습니다! 아직 들고 있어도 안전해보이지만, 조만간 불타 재가 될 것입니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" +msgstr[0] "상급 주머니 거들" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" -msgstr[0] "부패의 뼈몽둥이" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "무장의 벨트" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "이따금씩 고동치는 뼈몽둥이입니다. 생기를 흡수하고 싶어하는, 눌어붙은 피로 물들어있습니다." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." +msgstr "" +"허리둘레에 꼭 맞는 넓은 허리띠로, 마치 다른 공간에 물건을 수납하는 것 같아 보이는 이 물건은 눈 깜빡할 사이에 어떤 무기던지 " +"집어넣거나 뽑아들 수 있습니다." -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "용의 피입니다. 그 자체로도 열기를 내뿜고, 마치 살아있는 불꽃처럼 주기적으로 일렁이다 흐트러지는게 보입니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" +msgstr[0] "철 채찍 벨트" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "블럽에 감염된 개체에서 추출한 피입니다. 이 검은 찌꺼기의 겉표면은 가벼운 숨결에 흔들리듯 느리게 일렁입니다." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" +msgstr "벨트를 붙잡아 풀면 손에 유연한 금속 채찍이 들어옵니다!" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "비전 에너지가 주입되어 빛나는 피입니다. 희미한 푸른 빛을 냅니다." +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "땋은 듯하지만 유연해 보이는 금속 벨트입니다. 작동시켜서 적을 찢어발기는 채찍으로 변형시킬 수 있습니다." -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "마나 결정" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" +msgstr[0] "철 채찍" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "결정화된 마력. 마력으로 다시 충전할 수 있지만 빼낼 수는 없습니다." - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" -msgstr[0] "작은 마나 수정" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "채찍이 동그랗게 감겨 다시 벨트 모양으로 돌아옵니다." -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "이것은 지팡이 끝에 부착할 수 있도록 특별히 고안된 작은 마력 결정입니다." +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" +"끝부분이 날카로운 칼날로 된, 길게 땋은 신축성 있는 강철 채찍으로, 당신에게 오는 무엇이든 간단히 조각 내 버릴 것입니다. 작동하면 " +"다시 벨트 형태로 돌아옵니다." -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" -msgstr[0] "생 아울베어 모피" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "체력의 벨트 +2" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "세븐 리그 부츠" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -"아울베어에게서 벗겨낸 생가죽을 조심스럽게 접었습니다. 손질하면 장기간 보존하고 또 무두질할 수 있으며, 급박한 상황이라면 먹을 수도 " -"있습니다." - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" -msgstr[0] "건조된 아울베어 모피" +"해진 가죽과 강철로 구성된 투박하지만 매우 잘 맞으면서 편안한 부츠입니다. 꽤나 많이 쓰인 것 같은데 앞으로도 더욱 요긴하게 쓰일 것 " +"같습니다. 이동 시 소모되는 행동량을 줄여줍니다." -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "가속의 부츠" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "탈출의 부츠" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -"털과 살점을 제거하고 부패를 막기 위한 처리를 거친 아울베어 모피를 말아놓은 것입니다. 무두질을 거치면 쓸만한 모피 생가죽이 될 것 " -"같습니다." +"해진 가죽과 강철로 구성된 투박하지만 매우 잘 맞으면서 편안한 부츠입니다. 이 부츠는 긴급 상황에서 하루에 한 번만 작동할 수 있으며," +" 발동 시 임의의 방향으로 먼 거리를 순간이동합니다." -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" -msgstr[0] "아울베어 모피 생가죽" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "접지의 부츠" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "아울베어의 모피입니다. 아주 따뜻한 옷으로 만들 수 있습니다." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." +msgstr "" +"투박하지만 매우 잘 맞으면서 편안한 가죽 부츠로, 고무로 채워진 듯한 작은 룬이 새겨져 있습니다. 착용 시, 전기로 인한 피해에 면역이 " +"됩니다." -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" -msgstr[0] "드래곤의 뼈" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" +msgstr[0] "강철 팔목 보호대 한 쌍" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "드래곤의 뼈입니다! 이 자체로도 무기를 만들기에 완벽한 소재이며, 그 이외의 특별한 무언가가 있을 것 같다는 예감이 듭니다." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "완전한 중세 팔 보호구 한 세트." -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "묠니르" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" +msgstr[0] "강철 팔목 보호대" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "하급 보호의 팔목 보호대" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -"토르의 전설적인 망치인 묠니르입니다. 일격에 산을 무너뜨릴 수 있다고들 합니다. 아스가르드의 힘이 망치를 타고 흐르는 것이 느껴집니다." +"화려한 방패가 새겨진 가볍지만 매우 튼튼한 강철 보호대로, 은빛이 복잡한 디자인을 돋보여줍니다. 가벼운 아우라가 몸을 보호하여 피해를 " +"줄여줍니다." -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "궁니르" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" +msgstr[0] "상급 보호의 팔목 보호대" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -"오딘의 창인 궁니르입니다. 휘두르는 사람의 힘이나 기량에 관계없이 어떤 목표에도 반드시 적중하는 궁극의 창이라고들 합니다. 오딘이 당신을" -" 지켜주는 것 같은 기분이 듭니다." +"화려한 방패가 새겨진 가볍지만 매우 튼튼한 강철 보호대로, 금빛이 복잡한 디자인을 돋보여줍니다. 강한 아우라가 몸을 보호하여 피해를 " +"줄여줍니다." -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" -msgstr[0] "그람" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" +msgstr[0] "하급 전격의 팔목 보호대" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -"시구르드의 검인 그람입니다. 전설적인 용 파프니르를 이 검으로 살해했다고들 합니다. 레긴의 모루를 반으로 갈라놓았음에도 불구하고 그 " -"칼날은 흠집 하나 나지 않았습니다." +"화려한 번개 다발이 새겨진 가볍지만 매우 튼튼한 강철 보호대로, 은빛이 복잡한 디자인을 돋보여줍니다. 가벼운 아우라가 몸을 보호하여 전격" +" 피해를 막아주고 또한 하루에 3번씩 전기충격 마법을 시전할 수 있습니다." -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "레바테인" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" +msgstr[0] "상급 전격의 팔목 보호대" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "로키의 지팡이인 레바테인입니다. 로키가 헬의 관문에서 꺼냈다고들 합니다. 속임수의 신의 신비로운 마법이 깃들어있습니다." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." +msgstr "" +"화려한 번개 다발이 새겨진 가볍지만 매우 튼튼한 강철 보호대로, 금빛이 복잡한 디자인을 돋보여줍니다. 강한 아우라가 몸을 보호하여 전격 " +"피해를 막아주고 또한 하루에 3번씩 번개의 화살 마법을 시전할 수 있습니다." -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" -msgstr[0] "오리칼쿰 컴뱃 나이프" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" +msgstr[0] "'고요한 바람' 소음기" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -"강철 대신 오리칼쿰으로 만들어진 컴뱃나이프입니다. 강철제보다 튼튼하고, 날카롭고, 관리하기 쉬우면서도 칼날이 더 얇은 덕분에 가볍기까지 " -"합니다." +"순수한 완충재만 쓰는게 아니라, 침묵 주문까지 새겨둔 이 튜브는 총격시 발생하는 소음을 청각에 손상이 일어나지 않을 정도로 줄여줍니다." -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" -msgstr[0] "오리칼쿰 롱소드" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" +msgstr[0] "마나 레이저 사이트 (레일)" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -"강철 대신 오리칼쿰으로 만들어진 롱소드입니다. 강철제보다 튼튼하고, 날카롭고, 관리하기 쉬우면서도 칼날이 더 얇은 덕분에 가볍기까지 " -"합니다." +"총기의 부속품 레일에 장착 가능한, 마나 수정으로 발생하는 빛을 이용하는 소형 가시광 레이저입니다. 목표를 간편하고 신속하게 포착할 수 " +"있도록 돕습니다. 무게가 늘어나는 점을 제외하면 별다른 단점이 없습니다. 부속 레일을 돌려 총열 아래에 위치하도록 할 수 있습니다." -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" -msgstr[0] "오리칼쿰 소방도끼" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" +msgstr[0] "마나 레이저 사이트 (총열하단)" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -"강철 대신 오리칼쿰으로 만든 소방도끼. 더 단단한 물질을 절단할 수 있으며, 예산이 남아도는 소방서에서 적극적으로 사용되었습니다." +"총기의 부속품 레일에 장착 가능한, 마나 수정으로 발생하는 빛을 이용하는 소형 가시광 레이저입니다. 목표를 간편하고 신속하게 포착할 수 " +"있도록 돕습니다. 무게가 늘어나는 점을 제외하면 별다른 단점이 없습니다. 부속 레일을 돌려 총열 위에 위치하도록 할 수 있습니다." -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" -msgstr[0] "용골 장검" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" +msgstr[0] "마나 도트사이트" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" -"용골로 만든 변종 롱소드입니다. 내구성을 희생하지 않고도 극도로 강력한 무기로 거듭났습니다. 오리칼쿰보다도 뛰어나며, 심지어 이 상태도 " -"원재료의 온전한 힘을 끌어낸 것이 아닙니다." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "기계식 조준기를 대체하는 마나 결정으로 제작된 푸른 도트 사이트. 정확도와 무게가 증가합니다." -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" -msgstr[0] "용골 전투도끼" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" +msgstr[0] "마법의 가면" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" -"용골로 만든 변종 전투도끼입니다. 내구성을 희생하지 않고도 극도로 강력한 무기로 거듭났습니다. 오리칼쿰보다도 뛰어나며, 심지어 이 상태도" -" 원재료의 온전한 힘을 끌어낸 것이 아닙니다." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "평범한 마법의 가면입니다." -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" -msgstr[0] "용골 치앙" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" +msgstr[0] "소멸의 가면" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" -"용골로 만든 변종 치앙입니다. 내구성을 희생하지 않고도 극도로 강력한 무기로 거듭났습니다. 오리칼쿰보다도 뛰어나며, 심지어 이 상태도 " -"원재료의 온전한 힘을 끌어낸 것이 아닙니다." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." +msgstr "안면의 형태가 없이 눈과 입 구멍만 있는 마스크로, 작동하면 잠시 동안 모든 것이 당신의 존재를 무시하게 될 것입니다." -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" -msgstr[0] "용골 타치" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" +msgstr[0] "절대시야의 가면" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" -"용골로 만든 변종 타치입니다. 내구성을 희생하지 않고도 극도로 강력한 무기로 거듭났습니다. 오리칼쿰보다도 뛰어나며, 심지어 이 상태도 " -"원재료의 온전한 힘을 끌어낸 것이 아닙니다." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "눈가를 가리는 스팀펑크풍의 반가면으로, 착용자의 시력을 교정하면서 시야를 크게 향상시키는 커다란 렌즈가 달려있습니다." -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" -msgstr[0] "오리칼쿰 덩어리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" +msgstr[0] "곤봉 +1" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "오리칼쿰 덩어리. 사용하려면 주괴로 바꿔야 합니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "곤봉 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" -msgstr[0] "오리칼쿰 조각" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" +msgstr[0] "육척봉 +1" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "더 큰 조각에서 깨진 오리칼쿰의 조각. 사용하려면 주괴로 바꿔야 합니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "육척봉 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" -msgstr[0] "오리칼쿰 주괴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" +msgstr[0] "쇠장식 육척봉 +1" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "오리칼쿰의 주괴. 가로 3cm, 세로 7cm, 높이 12cm의 규격품이며, 다양한 대장간 작업에 사용할 수 있습니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "쇠장식 육척봉 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" -msgstr[0] "액화 수은" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" +msgstr[0] "롱소드 +1" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "액체 상태의 수은입니다. 흔히 온도계에서 볼 수 있습니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "롱소드 +2" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" -msgstr[0] "농축 마나 혈청" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "슬레지 해머 +1" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "매우 농축된 형태의 마력 물약입니다. 이것이 어떤 영향을 미칠지 잘 모르실 겁니다..." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "슬레지 해머 +2" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" -msgstr[0] "화염구의 완드" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "무거운 슬레지 해머 +1" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "이 전통적인 지팡이는 실패율 없이 화염구를 발사합니다. 숙련된 켈비시스트라면 더 효과적으로 사용할 수 있겠지만요." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "무거운 슬레지 해머 +2" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" -msgstr[0] "매직 미사일의 완드" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "워해머 +1" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "이 전통적인 지팡이는 실패율 없이 매직 미사일을 발사합니다. 숙련된 마구스라면 더 효과적으로 사용할 수 있겠지만요." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "워해머 +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" -msgstr[0] "블랙 드래곤: 늪지의 폐허" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "방망이 +1" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "방망이 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "알루미늄 방망이 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "알루미늄 방망이 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "강철 창 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "강철 창 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "치앙 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "치앙 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "할버드 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "할버드 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "글레이브 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "글레이브 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "나기나타 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "나기나타 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "메이스 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "메이스 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "모닝스타 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "모닝스타 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "지안 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "지안 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "시미터 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "시미터 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "에스톡 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "에스톡 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "아밍소드 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "아밍소드 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "브로드소드 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "브로드소드 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "전투도끼 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "전투도끼 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "기병용 세이버 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "기병용 세이버 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "쇠지레 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "쇠지레 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "커틀러스 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "커틀러스 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "소방도끼 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "소방도끼 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "일본도 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "일본도 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "컴뱃 나이프 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "컴뱃 나이프 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "사냥용 칼 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "사냥용 칼 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "생존용 나이프 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "생존용 나이프 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "트렌치 나이프 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "트렌치 나이프 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "크리스 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "크리스 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "쿠크리 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "쿠크리 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "야태도 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "야태도 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "곡괭이 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "곡괭이 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "파이크 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "파이크 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "레이피어 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "레이피어 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "탄토 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "탄토 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "와키자시 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "와키자시 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "쯔바이핸더 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "쯔바이핸더 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "코피스 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "코피스 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "크시포스 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "크시포스 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "다오 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "다오 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "루체른 해머 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "루체른 해머 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "용수철지팡이 (바통)" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "봉 형태로 늘리기" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "용수철지팡이를 휘둘러 지팡이 형태로 바꿉니다." + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -"블랙 드래곤에 대해 자세히 묘사하는 책입니다. 이 책에 따르면 블랙 드래곤은 용 중에서도 가장 사악한 종으로, 늪지의 폐허에 사는 " -"족속들입니다. 놈들은 강산에 면역이며 동시에 강산을 내뿜는다는 모양입니다. 그리고 이 책에는 놈들의 가죽을 벗겨내 가공하는 방법과, " -"그렇게 마련한 가죽의 내산성을 살린 여러 갑옷을 만드는 방법도 적혀있습니다." +"이 다재다능한 무기는 테크노맨시로 강화된 용수철을 사용하여 바통 형태인 동안에 봉의 끝부분을 집어넣은 채로 유지시켜줍니다. 발동하여 " +"봉의 형태로 늘립니다." -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" -msgstr[0] "연금술 입문" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" +msgstr[0] "용수철지팡이 (봉)" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "액화 마법 기술에 대한 페이퍼백 서적입니다. 알코올은 포함되어 있지 않습니다." +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "바통 형태로 줄이기" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" -msgstr[0] "사령술을 공부하는 영혼술사를 위한 가이드" +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "용수철지팡이를 접어 바통 형태로 바꿉니다." -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "언데드 개체의 영혼을 인형에 묶어, 그것들의 치유력을 흉내내는 기술을 담은 문고본 마도서입니다." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" +"이 다재다능한 무기는 테크노맨시로 강화된 용수철을 사용하여 봉 형태를 유지하는 동안 끝부분이 접히는걸 방지합니다. 발동하여 바통 형태로 " +"줄입니다." -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" -msgstr[0] "마법공학 삽화본" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" +msgstr[0] "발열 큐브" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "횃불 활성화" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" -"현대 기술과 마법을 결합하는 기술에 대한 페이퍼백 서적입니다. 뒷면에는 '캐니스 산업은 여기에 언급된 제품의 오작동이나 이로 인한 " -"사고에 대해 책임을 지지 않습니다.'라고 적혀있습니다." +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "횃불 버튼을 누르면 큐브위에서 큰 불꽃을 내뿜습니다. 불꽃을 방출하지만 아무것도 태우지 않습니다." -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" -msgstr[0] "아스가르드와 그 너머의 무기들" +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "주먹만한 크기의 매끄러운 강철 입방체. 측면에 있는 여러 개의 버튼이 큐브을 작동시킵니다." -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" +msgstr[0] "발열 큐브 (횃불 켜짐)" + +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "횃불의 불꽃이 꺼졌다." + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" -"노르드 룬으로 적힌 듯한 화려한 책. 상세한 삽화에 근거하여 볼 때, 이 책에는 여러 신들이 사용한 수많은 무기를 만드는 법에 대해 " -"담겨있는 것으로 보입니다." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "횃불이 켜진 발열 큐브. 타지 않는 밝은 불꽃을 방출합니다." -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" -msgstr[0] "독으로 요리하기" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" +msgstr[0] "해골 열쇠" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "표지에 가마솥이 새겨진 가죽 서적입니다. 음식을 마법처럼 정화하는 내용이 담겨있습니다." +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "작은 해골 금열쇠. 잠금 장치를 해제할 수 있습니다." -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" -msgstr[0] "전설의 금속" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" +msgstr[0] "영원의 횃불" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "놋쇠 표지가 있는 책. 오리칼쿰과 같은 마법의 금속을 만드는 법을 가르친다고 한다. 지루하고 두꺼운 연금술책이다." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "이것은 고품질의 나무 횃불입니다. 주문을 외우면 불꽃이 튀며 밝게 불타오릅니다. 영원토록." -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" -msgstr[0] "환수로부터 안전해지는 법" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" +msgstr[0] "무한의 플라스크" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "플라스크를 열면 달디단 위스키가 가득 들어있습니다!" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "플라스크의 재충전이 아직 끝나지 않았다." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" +msgstr[0] "마법의 재단용 도구" + +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -"표지에 드래곤 브레스의 불길을 방패로 막아내는 그림이 그려진 가죽 제본 서적입니다. 괴물들의 가죽이나 비늘 따위로 보호구를 제작하는 " -"여러 내용들이 담겨있습니다." +"여러 종류의 바늘, 플라스틱 실패, 작은 가위, 그리고 플라스틱을 녹이고 덧붙이는데 필요한 작은 발열장치와 마법적 문양이 포함된 고급 " +"반짇고리입니다. 의복이나 갑옷을 강화하는데 쓸 수 있습니다. 재봉 기술에 영향을 받습니다. 또한 마법의 거미가 들어있어 느리지만 꾸준히 " +"새 실타래를 만들어냅니다." -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" -msgstr[0] "인챈터의 가이드북" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" +msgstr[0] "거미 상자" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "무기와 도구를 마법적으로 강화하는데 필요한 이론과 연습을 다루는 두꺼운 교과서입니다." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "밤낮으로 실을 생산하는 거미가 들어있는 작은 유리상자. 실이 쌓이면 열어서 꺼낼 수 있습니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" -msgstr[0] "마법의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" +msgstr[0] "마법의 독서용 램프 (덮임)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" -msgstr[0] "마나 결정화의 두루마리" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" +"빛나는 가루와 하급 마나 물약의 마력으로 돌아가는 전등으로, 이 값비싼 독서용 램프는 최소한 10년간은 지속될 딱 책 읽는데나 쓸만한 " +"빛을 발합니다. 사용하여 커버를 열고 빛을 드러낼 수 있습니다." -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" +msgstr[0] "마법의 독서용 램프" + +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "훌륭한 마법사는 항상 철저히 준비하는 법입니다. 마나를 결정화시켜 나중에 활용하세요!" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" +"빛나는 가루와 하급 마나 물약의 마력으로 돌아가는 전등으로, 이 값비싼 독서용 램프는 최소한 10년간은 지속될 딱 책 읽는데나 쓸만한 " +"빛을 발합니다. 사용하여 커버를 덮고 빛을 숨길 수 있습니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" -msgstr[0] "어둠의 시야의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" +msgstr[0] "M47A1 테크노 메두사" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "진정한 비전술사에게 어둠이 숨길 수 있는 비밀은 없습니다. 완벽한 어둠 속에서도 볼 수 있도록 시야를 조절합니다!" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" +"생존주의자를 대상으로 한 다구경 리볼버인 필립스 앤 로저스의 M47 Medusa를 마법으로 강화하여 업데이트한 버전입니다. 테크노맨싱으로" +" 작은 탄약 사용시의 안정성을 개선할 수 있었지만, 총열에 강선이 없기 때문에 전용 구경 리볼버만큼 정확하지 않습니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" -msgstr[0] "투명화의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" +msgstr[0] "건블레이드" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "당신이 원하지 않으면 빛은 당신을 비추지 않습니다. 투명인간이 되었습니다!" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" +"앞으로 구부러진 팔카타처럼 생긴 이 검은 칼등에 단축총열 펌프액션 산탄총이 달려있어, 적을 확인사살하거나 혹은 기선제압할 때 써먹을 수 " +"있습니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" -msgstr[0] "몽환의 신체 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" +msgstr[0] "구리 마법 반지" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "평범한 마법의 구리반지입니다." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" +msgstr[0] "마법 반지" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "평범한 마법의 은반지입니다." + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "평범한 마법의 금반지입니다." + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "평범한 마법의 백금반지입니다." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" +msgstr[0] "칼날 반지" + +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "마법적 기운이 신체 주변의 빛을 왜곡시켜, 적의 공격을 더 쉽게 피하도록 만듭니다." +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "단검이 새겨진 화려한 은반지입니다. 작동 시 손에 거의 완벽한 투척 나이프를 만들어냅니다" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" -msgstr[0] "홀로그램 전환의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" +msgstr[0] "장어 반지" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" -msgstr[0] "강타의 두루마리" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "뱀장어가 스스로 감겨 있는 모습을 묘사한 얇은 은색 띠 반지. 턴 당 공격을 피할 수 있는 기회를 1회 추가합니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" -msgstr[0] "생명력 전환의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" +msgstr[0] "쌍두장어 반지" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" -msgstr[0] "고통을 넘어선 정신의 두루마리" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" +"머리가 두 개인 뱀장어가 스스로 감겨 있는 모습을 묘사한 얇은 금반지. 턴 당 공격을 피할 수 있는 기회를 2회 추가합니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" -msgstr[0] "좀비 소환의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" +msgstr[0] "체력의 반지 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" -msgstr[0] "스켈레톤 소환의 두루마리" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "이 구리 반지를 끼면 힘이 조금 세집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" -msgstr[0] "떠다니는 원반 소환의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" +msgstr[0] "체력의 반지 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" -msgstr[0] "부패한 습격자 소환의 두루마리" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "이 은반지를 끼면 힘이 충만해집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" -msgstr[0] "가벼운 상처 치료의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" +msgstr[0] "체력의 반지 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" -msgstr[0] "고통 나누기의 두루마리" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "이 금반지를 끼면 놀라울 정도로 튼튼해집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" -msgstr[0] "악랄한 촉수의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" +msgstr[0] "체력의 반지 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" -msgstr[0] "기괴한 강화의 두루마리" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "이 백금 반지를 끼면 힘이 훨씬 더 세집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" -msgstr[0] "강산 분사의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" +msgstr[0] "민첩성의 반지 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" -msgstr[0] "살아있는 주머니의 두루마리" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "이 구리 반지를 끼면 민첩성이 조금 높아집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "뼈 창 소환의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" +msgstr[0] "민첩성의 반지 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" -msgstr[0] "메가 블래스트의 두루마리" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "이 은반지를 끼면 민첩성이 조금 더 높아집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "마법의 빛 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" +msgstr[0] "민첩성의 반지 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" -msgstr[0] "눈부신 섬광의 두루마리" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "이 금반지를 끼면 놀라울 정도로 민첩해집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "영체의 손아귀 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" +msgstr[0] "민첩성의 반지 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" -msgstr[0] "보호의 오라 두루마리" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "이 백금 반지를 끼면 민첩성이 훨씬 더 높아집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "초목의 손아귀의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" +msgstr[0] "지능의 반지 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" -msgstr[0] "뿌리 타격의 두루마리" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "이 구리 반지를 끼면 지능이 조금 높아집니다" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "나무 말뚝의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" +msgstr[0] "지능의 반지 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" -msgstr[0] "자연의 활 두루마리" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "이 은반지를 끼면 지적인 느낌을 줍니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "자연의 황홀경 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" +msgstr[0] "지능의 반지 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" -msgstr[0] "백 오브 캣츠 두루마리" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "이 금반지를 끼면 놀라울 정도로 똑똑해집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "돌주먹의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" +msgstr[0] "지능의 반지 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" -msgstr[0] "지진의 발구르기의 두루마리" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "이 백금 반지를 끼면 지능이 훨씬 더 높아집니다" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "돌의 강인함의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" +msgstr[0] "지각력의 반지 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" -msgstr[0] "파편 분사의 두루마리" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "이 구리 반지를 끼면 지각력이 조금 높아집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "관통하는 화살의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" +msgstr[0] "지각력의 반지 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" -msgstr[0] "파편 폭풍의 두루마리" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "이 은반지를 끼면 지각력이 조금 더 높아집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "암석의 화살 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" +msgstr[0] "지각력의 반지 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" -msgstr[0] "발화의 두루마리" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "이 금반지를 끼면 눈이 뜨이며 지각력이 매우 높아집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "꼬마불꽃의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" +msgstr[0] "지각력의 반지 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" -msgstr[0] "고드름 낙하의 두루마리" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "이 백금 반지를 끼면 지각력이 훨씬 더 높아집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "화염구의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" +msgstr[0] "속도의 반지 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" -msgstr[0] "냉기의 원뿔 두루마리" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "이 구리 반지를 끼면 조금 빨라집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "불타는 손길의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" +msgstr[0] "속도의 반지 +5" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" -msgstr[0] "서리 분사의 두루마리" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "이 은반지를 끼면 조금 더 빨라집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "서늘한 손길의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" +msgstr[0] "속도의 반지 +7" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" -msgstr[0] "빙상 활주의 두루마리" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "이 금반지를 끼면 매우 빨라집니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" -msgstr[0] "눈꽃 폭발의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" +msgstr[0] "속도의 반지 +10" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "얼음 방패의 두루마리" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "이 백금 반지를 끼면 훨씬 빨라집니다" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "서리 갑옷의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" +msgstr[0] "보호의 반지 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" -msgstr[0] "매직 미사일의 두루마리" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "이 구리 반지는 착용자가 피격당했을 때 받는 충격량을 일정부분 감소시켜줍니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "위상 관문의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" +msgstr[0] "보호의 반지 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "중력 우물 두루마리" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "이 은반지는 착용할 때 받는 피해를 줄여줍니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" -msgstr[0] "마나 폭발의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" +msgstr[0] "보호의 반지 +6" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "마나 화살의 두루마리" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "이 금반지는 착용할 때 받는 피해를 크게 줄여줍니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "가속의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" +msgstr[0] "보호의 반지 +8" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" -msgstr[0] "마나 광선의 두루마리" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "이 백금 반지는 착용할 때 받는 피해를 엄청나게 줄여줍니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "탈출의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" +msgstr[0] "마법 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "고양이의 우아함의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" +msgstr[0] "롱소드 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" -msgstr[0] "독수리의 시야의 두루마리" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 롱소드로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" -msgstr[0] "오우거의 힘의 두루마리" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "앞면에 롱소드가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" -msgstr[0] "여우의 교활함의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" +msgstr[0] "아밍소드 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" -msgstr[0] "전기충격의 두루마리" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 아밍소드로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" -msgstr[0] "번개의 화살 두루마리" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "앞면에 아밍소드가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" -msgstr[0] "선풍의 일격 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" +msgstr[0] "브로드소드 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" -msgstr[0] "바람의 질주 두루마리" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 브로드소드로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" -msgstr[0] "폭풍망치 소환의 두루마리" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "앞면에 브로드소드가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" -msgstr[0] "축복의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" +msgstr[0] "전투도끼 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" -msgstr[0] "성스러운 검의 두루마리" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 전투도끼로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" -msgstr[0] "영체의 갑옷 두루마리" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "앞면에 전투도끼가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" -msgstr[0] "램프의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" +msgstr[0] "파이크 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" -msgstr[0] "마력발전의 두루마리" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 파이크로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" -msgstr[0] "테이즈의 두루마리" +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "앞면에 파이크가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" -msgstr[0] "하급 양자터널의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" +msgstr[0] "메이스 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" -msgstr[0] "시냅스 자극의 두루마리" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 메이스로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" -msgstr[0] "레이즈의 두루마리" +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "앞면에 메이스가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" -msgstr[0] "움직이는 칼의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" +msgstr[0] "육척봉 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" -msgstr[0] "거울의 형상 두루마리" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 육척봉으로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" -msgstr[0] "번개 폭발의 두루마리" +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "앞면에 육척봉이 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" -msgstr[0] "죽음의 시선의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" +msgstr[0] "해머 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" -msgstr[0] "정화의 씨앗 두루마리" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 해머로 변합니다!" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." -msgstr "물을 정화시켜주는 대지의 선물을 불러냅니다. 높은 레벨의 주문은 더 많은 씨앗을 생성합니다." +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "앞면에 해머가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" -msgstr[0] "광학적 빛줄기 재채기의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" +msgstr[0] "스크류드라이버 세트 토큰" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "얼굴에서 반-직접 광선을 쏘아내기 위해 내장 배터리를 과부하시킵니다." - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" -msgstr[0] "용암 폭탄의 두루마리" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 스크류드라이버 세트로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" -msgstr[0] "강산 저항의 두루마리" +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "앞면에 스크류드라이버 세트가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." -msgstr "이 주문은 산성으로부터 당신을 보호하는 투명한 보호막을 만들어냅니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" +msgstr[0] "연장통 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" -msgstr[0] "번개치는 폭풍의 두루마리" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 연장통으로 변합니다!" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." -msgstr "이 두루마리는 스톰셰이퍼들이 흔히 쓰는 번개 폭풍 주문을 개량하여 위력과 마나 소모량을 모두 끌어올린 것을 담고 있습니다." +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "앞면에 연장통이 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" -msgstr[0] "희생의 재성장의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" +msgstr[0] "쇠지레 토큰" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" -msgstr[0] "희생의 치유의 두루마리" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "토큰에 새겨진 주문을 외우자, 토큰이 빠르게 성장해서 반짝이는 쇠지레로 변합니다!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" -msgstr[0] "돌의 피부 두루마리" +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "앞면에 쇠지레가 그려진 큰 은화. 뒷면에 새겨진 주문을 외우면 활성화 됩니다." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "돌 기둥의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" +msgstr[0] "보틀 잭 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" -msgstr[0] "마비의 바늘 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" +msgstr[0] "보틀 잭 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" -msgstr[0] "선혈의 투사 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" +msgstr[0] "메스 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" -msgstr[0] "응고의 바느질 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" +msgstr[0] "메스 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "이온화의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" +msgstr[0] "푸주칼 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" -msgstr[0] "이그누스 파투스의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" +msgstr[0] "푸주칼 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" -msgstr[0] "안개 벽의 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" +msgstr[0] "고기 중식도 +1" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" -msgstr[0] "카타클리즘: 밝은 밤을 디버깅하는 테크노맨서를 위한 안내서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" +msgstr[0] "고기 중식도 +2" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" +msgstr[0] "정육칼 +1" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" -msgstr[0] "마술 입문서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" +msgstr[0] "정육칼 +2" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "이것은 마법서라기보단 팜플렛에 가까워 보이지만, 적어도 당신이 사용할 만한 괜찮은 주문 한둘쯤은 있어 보이네요." +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" +msgstr[0] "도축 키트 +1" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" -msgstr[0] "배낭여행을 위한 마법 안내서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" +msgstr[0] "도축 키트 +2" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" -"이 책은 배낭여행 시 갖고 가야 할 물건... 아니, 알아둬야 할 주문 안내서입니다. 책이 꽤 두껍긴 해도 여기 있는 주문은 상당히 " -"유용하게 쓰일 겁니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" +msgstr[0] "카에스투스 +1" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" -msgstr[0] "이단자를 위한 화염술서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" +msgstr[0] "카에스투스 +2" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" +msgstr[0] "불주먹" + +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "겉이 새까맣게 타버린 이 책에는 아직도 불을 붙이는 여러 방법들이 담겨있습니다." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." +msgstr "" +"주먹을 감싸 타격력을 높여주는 묵직한 금속 보호구로, 착용자의 손을 보호하기 위한 튼튼한 속장갑이 달려있습니다. 적에게만 피해를 입히는 " +"마법의 흑염을 뿜어내는 마법이 불어넣어졌습니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" -msgstr[0] "마법의 요소에 대한 학술서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" +msgstr[0] "불주먹 +1" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "이 책에는 다양한 주문을 설명하는 복잡한 도표, 의식, 동작 등이 상세히 묘사되어 있습니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" +msgstr[0] "불주먹 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" -msgstr[0] "신성소개론" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" +msgstr[0] "파운딩 건틀렛" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "여기엔 거의 종교 용어밖에 없어 보이지만, 치유에 관한 몇 가지 메모가 적혀 있습니다." +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." +msgstr "마법적인 상징으로 덮인 커다랗고 반짝이는 금속 건틀릿. 놀라울 정도로 강력한 일격을 낼 수 있습니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" -msgstr[0] "성전사를 위한 현대 주문시전 안내서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" +msgstr[0] "산탄총 카에스투스" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "제목이 저런데도 내용은 온갖 중세 영어투성이입니다. 조금 더디긴 해도 대부분의 단어는 제법 그럭저럭 이해할 만합니다." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." +msgstr "" +"단축 이중총열 산탄총을 매단 금속 카에스투스입니다. 반동을 흡수할 개머리판이 없어 충분한 근력이 있어야 제대로 사격할 수 있습니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" -msgstr[0] "영원한 겨울의 손아귀" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" +msgstr[0] "마법 완드" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "이 얇은 책은 거의 얼음으로만 만들어진 것 같습니다. 손 시려워라!" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" +msgstr[0] "일회용 완드" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" -msgstr[0] "다가오는 폭풍의 서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" +msgstr[0] "매직 미사일의 하급 완드" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." -msgstr "폭풍 구름과 번개 볼트가 맞물려 새겨진 커다란 책입니다. 촉감이 제법 따끔따끔합니다." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" +"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 매직 미사일 주문을 시전합니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" -msgstr[0] "평범한 마법서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" +msgstr[0] "매직 미사일의 중급 완드" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "새내기 마법사가 만든 주문이 담겨있는 작은 책입니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" +msgstr[0] "매직 미사일의 상급 완드" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" -msgstr[0] "빛과 거짓의 서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" +msgstr[0] "화염구의 하급 완드" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "작고 하얀 책으로, 주변의 은은한 빛을 미묘하게 증폭시키고 있습니다." +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 화염구 주문을 시전합니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" -msgstr[0] "살점의 서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" +msgstr[0] "화염구의 중급 완드" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." -msgstr "무두질된 인간의 피부로 덮여있는 듯한 작은 책입니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" +msgstr[0] "화염구의 상급 완드" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" -msgstr[0] "나무의 책" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" +msgstr[0] "마나 광선의 하급 완드" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "나무껍질로 덮여있는 책입니다." +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "" +"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 마나 광선 주문을 시전합니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" -msgstr[0] "에너지원으로서의 마나의 유용성" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" +msgstr[0] "마나 광선의 중급 완드" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "이 책에는 마력으로 다양한 생리적 효과를 회복하는 주문에 대해 자세히 설명되어 있습니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" +msgstr[0] "마나 광선의 상급 완드" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" -msgstr[0] "전투 마법사의 서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" +msgstr[0] "발화의 하급 완드" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" -msgstr "마구스의 전투 마법으로 가득한 정말이지 마법스러운 주문서입니다. 운도 좋으셔라!" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." +msgstr "사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 발화 주문을 시전합니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" -msgstr[0] "지구공동의 서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" +msgstr[0] "발화의 중급 완드" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "이 대지의 힘을 담은 먼지투성이 마법서에는 마치 천년만년... 음... 먼지투성이네요." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" +msgstr[0] "발화의 상급 완드" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" -msgstr[0] "마법 이동의 서" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" +msgstr[0] "눈꽃 폭발의 하급 완드" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -"이 작고 가벼운 책은 어쩐지 완전히 실재하진 않는 것 같습니다. 한 97% 정도만 존재한다고 쳐봅시다. 이 책에는 이동이나 운동 등을" -" 주로 다룬 마구스 학파의 주문이 담겨 있습니다." +"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 지팡이는 눈꽃 폭발 주문을 시전합니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" -msgstr[0] "얼룩진 두루마리" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" +msgstr[0] "눈꽃 폭발의 중급 완드" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." -msgstr "" -"이 두루마리는 누군가 새로운 주문을 구상하다가 커피를 엎지르고 홧김에 구겨버린 것 같습니다. 당신은 여기서 확실히 어느 주문을 외울 수" -" 있을 거라 말하지만, 그 주문이 잘 될지는 당신 자신도 잘 모르는 모양이군요." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "눈꽃 폭발의 상급 완드" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" -msgstr[0] "바보들을 위한 사령술과 그 하수인들" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" +msgstr[0] "냉기의 원뿔의 하급 완드" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -"이 책은 언데드 하수인을 불러내 당신을 위해 싸우게 만드는 여러 방법을 소개합니다. 소환된 개체는 잠시 후 먼지로 부스러져 사라질 " -"것입니다." +"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 나무 지팡이입니다. 이 완드는 냉기의 원뿔 주문을 시전합니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" -msgstr[0] "테크노맨시의 핵심" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" +msgstr[0] "냉기의 원뿔의 중급 완드" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "이 두꺼운 설명서는 주문 시전자에게 다양한 형태의 물질과 에너지를 조작하고 강화하는 방법을 알려주고 있습니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" +msgstr[0] "냉기의 원뿔의 상급 완드" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" -msgstr[0] "바보도 할 수 있다! 테크노맨시 완벽 가이드" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" +msgstr[0] "매직 미사일의 일회용 하급 완드" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." -msgstr "이 도표와 만화로 가득한 화려한 안내서는 조금 뒤쳐지는 학도들을 위한 몇 가지 기초적인 테크노맨시 주문을 가르쳐 줍니다." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." +msgstr "" +"사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 매직 미사일 주문을 시전합니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" -msgstr[0] "테크노맨시와 전자기 스펙트럼" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" +msgstr[0] "매직 미사일의 일회용 중급 완드" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "이 두꺼운 연구용 참고 자료집에는 전자파방사선에 마법을 결합하는 정보들이 가득합니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" +msgstr[0] "매직 미사일의 일회용 상급 완드" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" -msgstr[0] "공간 정보 시스템 : 선형성의 거짓말" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" +msgstr[0] "화염구의 일회용 하급 완드" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" -"이 책은 시공간이 얼마나 비-유클리드적이고 뒤죽박죽 꼬여있는지에 대해 상세히 기술하고 있습니다. 또한 서로 교환되는 십여 가지의 다른 " -"좌표계를 보여주고 있어 상당히 이해하기 어렵습니다. 수많은 전문용어들이 있긴 하지만 그래도 집중하여 공부하다 보면 포탈에 대해 한두 " -"가지 정도는 익힐 수 있을 것 같습니다." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." +msgstr "사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 화염구 주문을 시전합니다." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" -msgstr[0] "인간 조건의 초월" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" +msgstr[0] "화염구의 일회용 중급 완드" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." -msgstr "" -"인간이란 스스로를 발전시키는 유일한 생명체입니다. 본 책은 이에 대한 더욱 영구적인 해답을 찾아내기 위해 여러 감각들을 일시적으로 " -"고조시킬 수 있는 다양한 주문들을 소개하고 있습니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" +msgstr[0] "화염구의 일회용 상급 완드" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" -msgstr[0] "정화의 솥" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" +msgstr[0] "마나 광선의 일회용 하급 완드" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -"악마거미 키틴질로 만든 솥으로, 빛을 빨아들이는 것처럼 보입니다. 16리터까지의 재료를 보관할 수 있으며 재료로부터 독성을 흡수할 " -"것입니다. 연구를 진행하면 다른 기능을 찾아낼 수 있을지도 모릅니다." +"사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 마나 광선 주문을 시전합니다." -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" -"마법적으로 향상되고 악마거미 키틴질로 보강된, 휴대 가능한 목탄 용광로입니다. 마법적 금속을 재련해 주괴로 만들어 제작에 쓸 수 있게 " -"합니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" +msgstr[0] "마나 광선의 일회용 중급 완드" -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" -msgstr[0] "방화 절구" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" +msgstr[0] "마나 광선의 일회용 상급 완드" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" +msgstr[0] "발화의 일회용 하급 완드" + +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "드래곤 브레스에 준하는 온도에 버틸 수 있는 작업이 필요할 때 사용할 수 있는 연금술용 막자사발입니다." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." +msgstr "사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 발화 주문을 시전합니다." -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "뷸렛 장갑판" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" +msgstr[0] "발화의 일회용 중급 완드" -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" -msgstr[0] "거대 곤봉" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" +msgstr[0] "발화의 일회용 상급 완드" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" +msgstr[0] "눈꽃 폭발의 일회용 하급 완드" + +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -"끄트머리에 커다란 혹이 달린 튼튼하고 울퉁불퉁한 몽둥이입니다. 굉장히 무겁지만, 충분한 근력이 있다면 매우 강력한 무기가 될 것입니다." +"사용하여 주문을 시전할 수 있도록 마나 결정 소켓이 달린 가느다란 일회용 나무 지팡이입니다. 이 지팡이는 눈꽃 폭발 주문을 시전합니다." -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" -msgstr[0] "목제 삼지창" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" +msgstr[0] "눈꽃 폭발의 일회용 중급 완드" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" +msgstr[0] "눈꽃 폭발의 일회용 상급 완드" -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" -msgstr[0] "가시달린 재블린" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" +msgstr[0] "냉기의 원뿔의 일회용 하급 완드" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -"정확성을 높이기 위해 화살처럼 깃이 달린 이 무기는 길이가 3피트에 육박합니다. 심각한 출혈을 일으킬 것 같은 살벌한 가시들이 재블린의" -" 끝에 달려있습니다." +"사용하여 주문을 시전할 수 있도록 마나 결정이 달린 가느다란 일회용 나무 지팡이입니다. 이 완드는 냉기의 원뿔 주문을 시전합니다." -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "가시달린 자벨린을 발사하는 가짜 총입니다." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" +msgstr[0] "냉기의 원뿔의 일회용 중급 완드" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" +msgstr[0] "냉기의 원뿔의 일회용 상급 완드" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "접이식 오리칼쿰 프레임" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "오리칼쿰 파이프로 만든 접이식 프레임입니다. 알루미늄처럼 가볍지는 않지만 훨씬 더 튼튼합니다." -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "오리칼쿰 프레임" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "오리칼쿰으로 만든 프레임. 강철보다 훨씬 튼튼하지만 훨씬 더 비쌉니다." -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "뷸렛 장갑판" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "악마거미" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "새끼 악마거미" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -215461,7 +215670,7 @@ msgstr "" "해줍니다. 매우 빠르며, 커다란 송곳니에서는 맹독이 뚝뚝 흐릅니다." #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -215471,13 +215680,13 @@ msgstr "" "이 자동차만 한 거미의 커다란 겹눈은 마치 공기에서 빛을 빨아들이는 듯한 무한한 검은 웅덩이 같아 보입니다. 적갈색 등딱지에는 땅에 " "닿으면 지글지글 끓어오르는 검은 액체들이 뚝뚝 떨어지는 사악한 뿔들이 박혀있습니다." -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "여왕 악마거미" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -215487,25 +215696,25 @@ msgstr "" "이삿짐 트럭 크기 만한 거대한 거미. 복부는 거대하고 부풀어 올랐으며, 키틴질 가시 주변에서 마법이 터지는 것과 같이 사악한 지성이 " "눈에서 불타고 있습니다." -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "무서운 존재" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "두려운 존재" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "공포스러운 존재" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "블랙 드래곤 웜링" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " @@ -215514,13 +215723,13 @@ msgstr "" "이 작고 검은 용은 아직 5살도 되지 않았습니다. 비늘에는 광택이 있고 머리에 뿔이 아주 약간 나 있을 뿐입니다. 하지만 이 어린 " "개체에게서도 그 눈이 가학적으로 번뜩이는 것을 볼 수 있습니다." -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "어린 블랙 드래곤" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -215532,13 +215741,13 @@ msgstr "" "부분부터 어두워지기 시작했습니다. 얼핏 봐도 이 생물이 매우 사악하다는 걸 알 수 있습니다. 비록 완전히 자라지 않았음에도 몸집은 다" " 자란 황소만큼 큽니다." -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "성체 블랙 드래곤" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" @@ -215547,13 +215756,13 @@ msgstr "" "악의로 점철된 녹색으로 빛나는 깊은 눈구멍과 검은 비늘을 가진 괴물. 안면과 골격은 마치 해골처럼 보이며, 단검같이 뾰족한 턱에서는 " "산이 흘러내리고 있습니다." -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "고블린" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" @@ -215562,26 +215771,26 @@ msgstr "" "더럽고 약간 해진 옷을 걸친, 작고 교활한 녹색 아인입니다. 곤봉을 휘둘러대며 얼굴에 흉측한 미소를 짓는 것을 볼 때, 문제를 일으키는 " "것을 좋아하며 싸움이 일어나면 도망치지 않을 것 같습니다." -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "고블린 투석병" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "욕설과 돌을 던져대는 작은 녹색 아인입니다. 적을 도발하는 것을 사랑하고, 다른 동족에 비해 공격을 피하는데 능숙합니다." -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "고블린 부족장" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " @@ -215590,25 +215799,25 @@ msgstr "" "더 적극적인 폭력과 조금 더 뛰어난 교활함으로 나머지 동족들을 통치하는 고블린입니다. 동족에 비해 훨씬 튼튼하고, 희미한 마법의 기운이 " "느껴지는 무기를 휘둘러댑니다." -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "점토 골렘" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "점토로 만든 커다란 휴머노이드 골렘입니다. 비율이 불균형하며 부서지기 쉬워 보입니다." -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "플라스틱 골렘" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -215618,36 +215827,107 @@ msgstr "" "전통적으로, 골렘을 제조하는건 수공예와 세심한 장인정신을 요구하는 수개월에 걸친 작업으로, 돌 골렘은 마법 도구만큼이나 예술적인 작품이라" " 할 만합니다. 3D 프린팅의 등장으로 누구나 취미로 골렘을 제조할 수 있게 되었고, 플라스틱 골렘의 인기도 치솟게 되었습니다." -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "바위 골렘" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "바위로 구성된 커다란 휴머노이드 골렘입니다. 마치 로켓을 연상시키는 주먹이 달려있습니다." -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "철 골렘" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "무쇠로 이루어진 커다란 휴머노이드 골렘입니다. 입에서 유독한 가스가 새어나오고 있는 듯 합니다." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "신선한 수지 골렘" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "반쯤 벗겨진 수지 골렘" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "강화된 수지 골렘" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "오리칼쿰 골렘" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "미스릴 골렘" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "리자드맨 전사" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -215662,29 +215942,29 @@ msgstr "" "받으면 매우 위험한 녀석들로 변모합니다. 일반적으로 커다란 몽둥이로 싸우는 것을 선호하지만 그들의 날카로운 이빨과 발톱만으로도 " "흉포합니다." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "리자드맨 사냥꾼" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "리자드맨 전사보다는 작지만 정확한 투창 실력은 여전히 치명적입니다." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "사냥꾼이 가시달린 자벨린을 던집니다!" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "리자드맨 주술사" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -215698,13 +215978,13 @@ msgstr "" "자들은 거의 없다고 합니다. 주술사는 자연의 힘을 사용하여 적과 싸우며, 필요할 때 자연의 힘을 빌려 소환수를 불러낼 수 있는 " "드루이드입니다." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "리자드맨 족장" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -215716,13 +215996,13 @@ msgstr "" " 야망을 내비쳐 자신의 자리를 차지합니다. 족장은 부족에서 가장 크고 강한 구성원이며 이빨과 발톱에 더하여 무지막지한 삼지창을 가지고 " "있습니다." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "악어" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." @@ -215730,31 +216010,29 @@ msgstr "" "한때, 그리고 장래에 리자드맨 사제였을지도 모르는 이 커다란 악어에게선 더 이상 인간형의 모습이라곤 찾아볼 수 없는 데다, 굉장히 위험해" " 보입니다." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "아울베어" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -"이 끔찍하게 생긴 아울베어는 어느 정신나간 마법사에 의한 유전자 실험의 결과물로 보입니다. 이 생물들은 지하의 미궁에서부터 온대 기후에" -" 걸친 뒤엉킨 숲 지역에까지 서식하고 있습니다. 이들은 언제나 사악한 성질을 띤 탐욕스런 포식자에 잔학한 사냥꾼이며, 눈에 보이는 대로" -" 먹이를 공격하고 죽을 때까지 싸울 것입니다." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "블랙 푸딩" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." @@ -215763,18 +216041,18 @@ msgstr "" "있습니다." #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "블랙 푸딩이 %3$s에 강산을 끼얹어 화상을 입힙니다!" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "크래브젝" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -215785,23 +216063,23 @@ msgstr "" " 분홍빛의 액체가 흘러나오고 있고 인간의 모습을 한 기이한 형체는 날카로운 흑청색의 판으로 덮여있습니다." #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "크래브젝이 %3$s(을)를 응시합니다!" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "새끼 아울베어" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "뷸렛" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -215812,13 +216090,13 @@ msgstr "" "뷸렛, 또는 땅상어는 어느 미친 마법사가 악마의 영액을 주입하여 늑대거북과 아르마딜로를 실험적으로 교잡시킨 결과물이었습니다. 온대 기후에" " 분포하며 말, 사람 및 대부분의 고기를 먹어치우는 육식성 생물입니다. 멍청한 뷸렛은 성질이 사납고 항상 배가 고프며 겁이 없습니다." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "윌 오 위스프" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" @@ -215827,147 +216105,189 @@ msgstr "" "위스프는 노랗고, 하얀데다, 녹색이거나 파란색일수도 있습니다. 이들은 늪지에 서식하고 있는데, 특히나 안개가 자욱한 곳에선 쉽게 등불로" " 오인받곤 합니다." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "트롤" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "녹색 피부를 가진 괴물같은 인간의 형상입니다. 트롤은 두꺼운 가죽과 자연적인 재생 능력으로도 유명합니다." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "스터지" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "이 무시무시한 날짐승은 마치 커다란 박쥐와 거대 모기의 교배종 같아 보입니다." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "슈리커" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "슈리커는 사람만 한 크기의 버섯으로, 찢어질 듯한 비명을 질러 자신을 건드리는 생물을 쫓아냅니다." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "리머" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "리머는 사람의 머리와 몸통이 보일 듯 말 듯 한 녹아내린 살덩이같이 생겼습니다." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "오크 전사" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "오크 꿍수" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "핏빛의 오크 전사" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "축복이 있으라." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "나는 이 땅에서 저주를 씻어내야만 한다. 우리의 임무를 도울 것인가, 방해할 것인가?" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "안녕하신가 ." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "축복 있으라. 평온에 역행하는 자들을 정화해 주기를." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "이 장소를 정화해야만 앞으로 나아갈 수 있을지니." -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "오, 또 자네군." -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "허? *웅얼웅얼* ... 넌 누구지?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "난 바쁜 몸이네. 무슨 용건이지?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "내 탑과 연구를 버리고 떠나라고? 그럴 수는 없네." -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "아, 또 만나네." -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "너도 힘을 찾고 있나?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "그래, 그래... *파지직* 아름답지 않아?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "떠나기 전에 더 큰 힘을 찾아야 해." -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "마법사의 시험" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "저는 방랑자입니다. 비전술의 디버그 테스터죠." -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "마스터 마구스" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "난 늙은 마구스라네. 내 잔디밭에서 꺼지게!" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "테크노학도" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "더 큰 힘을 찾고 있어." -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "치유사" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "이 땅의 저주를 풀어내고 말겠어." -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "고대의 존재" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." @@ -215975,12 +216295,12 @@ msgstr "" "옛 시대의 마법사들. 대격변에 닥칠 때까지 세상으로부터 은둔하며 살아온 그들은 그들 자신만의 의제를 가지고 있고 당신이나 당신의 것에 " "대해 거의 관심을 두지 않습니다." -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "회색 불꽃" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." @@ -215988,30 +216308,30 @@ msgstr "" "대격변의 저주를 받은 이들의 무리. 그들은 이 세상에서 저주를 없애겠다고 맹세했고 그 임무를 완수하기 위해 어떤 일도 마다하지 않을 " "것입니다." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "마법책 회수하기" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "내가 그 망할 것을 어디에 뒀더라..." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" "내 책이 어디 있는지 찾을 수가 없어. 전투 마법사의 서라는 책인데, 그 쓸모없는 도제놈이 훔쳐간게 분명해. 찾아서 가져다줘." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "...응? 어 아직 여기 있었네. 가서 내 책을 찾아와." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "그 도제놈처럼 쓸모없긴..." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -216021,70 +216341,70 @@ msgstr "" "네가 해야 할 일을 나한테 시키려고? 하. 그 도제놈 말로는 마을에서 뭔가 찾을게 있다던데, 거기서부터 시작해보는게 어떤가. 아, 그래," " 전투 마법사의 서라고 써있을거야. 설마 제목 정도는 읽을 수 있겠지? 응?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "내 책은 어딨지?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "드디어. 오래도 걸렸군." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "말도 안돼! 쓸모없는 놈 같으니! 시간만 낭비했군!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "내가 왜 쓸모없는 잡것들과 엮여야 하지?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "전력 저장소 CBM 찾기" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "전기... 무한한 힘... 압도적인 힘으로!!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "전기가 더 필요해. 전력 저장소 바이오닉을 가져다주면 이 책을 줄게." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "깨끗하기만 하면 그걸 어디서 구해오든 신경쓰지 않겠어." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "너도 더 많은 전기를 원하지. 안 그런가?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "전자제품매장에서 찾을 수 있을거야. 아니면 시체에 붙어있는걸 떼어서 가져오든지." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "뭔가 좀 찾았나?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "완벽해. 더 많은 전기는… 더 큰 힘이 된다…" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "차질이 빚어지니 무척 불편하군. 전기가 더 많이 필요해." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "좀비 50마리 죽이기" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "부름에 답하겠느냐?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." @@ -216092,153 +216412,153 @@ msgstr "" "이 세상은 혼돈과 죽음에 잠식되었다. 이 땅에서 저주 받은 것 오십을 몰아내야 한다. 저주의 정화를 돕는 자에게는 마땅한 보상이 있을 " "것이다." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "축복 있으라. 네 노력을 관찰해, 가치의 유무를 판단하겠다." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "저주의 정화를 돕지 않겠다고? 어쩌면 네가 이 저주의 일부일지도 모르겠군..." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "마을과 도시에서 깨어난 신자들이 있으니, 중심부로 가까이 갈수록 더 많이 구할 수 있으리라." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "축복 있으라. 너는 조금 가치있는 자로군. 어쩌면 위대한 과업을 함께할 수 있을지도 모르겠다." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "의심은 저주받은 것들의 왕국이지. 나를 실망시키는구나." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "네게는 너무 강한 저주였나?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "좀비 150마리 죽이기" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "너는 그나마 조금 가치있는 자라는걸 증명했다. 헌데, 고작 그것만으로 충분하겠나?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "정화를 계속해야 한다. 저주받은 것 일백 하고도 오십을 이 땅에서 없애라. 그러면 네게 위대한 축복이 내릴 것이다." -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." -msgstr "축복이 있으라, 몇 안되는 참된 증인이여." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." +msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "알았다. 언젠가 우리에게 다시 돌아오리라 믿는다." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "모퉁이진 가장 어두운 곳에서 깨어난 혼돈. 놈들을 찾아 파괴해라." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "축복 있으라. 너는 우리의 과업에 있어 귀중한 자산이다. 어쩌면 우리의 구원이 될지도 모르지." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "참 멀리도 왔구나. 실패하려고 말이다." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "이 땅의 저주는 정화를 추구하지 않는 것들을 집어삼킨다." -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "마구스" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "기술자" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "치유사" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "이곳의 땅이 당신의 움직이라는 명령을 따르지 않습니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "구덩이가 깊어집니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "잔해가 구덩이 바깥으로 움직입니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "대지가 당신이 나아갈 길을 터줍니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "바위가 부스러져 모래로 화합니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "바위가 부스러져 먼지가 됩니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "공기 중의 먼지가 땅으로 추락합니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "진균이 부스러집니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "대지가 흔들리고, 부자연스러운 매끄러운 돌벽이 솟아오릅니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "죽은 나무에서 새싹이 자랍니다." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "죽은 초목에서 새 생명이 움틉니다." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "마구스" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "마법만큼이나 오래된 전통 학파인 마구스는 우주의 기운을 그들의 의지에 묶고 형성하는 데 중점을 둡니다." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "애니미스트" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -216248,12 +216568,12 @@ msgstr "" "애니미스트 전통은 자연 세계와의 조화와 연결에 초점을 맞춘 오래된 방식들을 조합하여 탄생한, 비교적 최근에 형성된 학파입니다. 그렇다고" " 애니미스트들이 수동적이란 건 아닙니다. 자연은 그리 호락호락하지 않으니까요." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "켈비니스트" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " @@ -216262,12 +216582,12 @@ msgstr "" "위대한 대마도사 켈빈의 추종자들. 켈비니스트들은 마법을 환경과 온도를 통제하고 조작하는데 집중하여, 화끈하고 강렬한 폭발이나 뼈에 " "사무칠듯한 추위를 일으킵니다." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "스톰셰이퍼" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " @@ -216276,12 +216596,12 @@ msgstr "" "스톰셰이퍼들은 지구를 이루는 바람과 조수와의 명상과 조화를 통한 고대의 신비한 계율을 따릅니다. 그들은 그러한 힘들과 깊게 연결됨으로써" " 강렬한 변화를 요청할 수 있습니다." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "테크노맨서" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " @@ -216290,12 +216610,12 @@ msgstr "" "테크노맨서는 우주의 근본적인 본질에 대한 진보된 지식과 그들의 신비한 힘을 결합한 새로운 유형의 현대식 마법사들입니다. 그들은 마법을 " "단련하기 위해 기술을 사용할 것이고 그 반대 또한 행할 것입니다." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "어스셰이퍼" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -216305,12 +216625,12 @@ msgstr "" "어스셰이퍼들은 자신들의 정신을 대지의 돌과 금속들 사이에 깊이 가라앉혔고 그들의 비밀과 하나가 되었습니다. 숙련된 어스셰이퍼들의 마법은" " 그들이 창조한 돌 만큼이나 영원할 수 있으며, 그 시간은 지질시대에 비견될 수준입니다." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "바이오맨서" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -216321,12 +216641,12 @@ msgstr "" "고기라도 말이죠. 대부분의 다른 마법사들은 그 방식이 역겹고 불안정하다 생각하지만 그 누구도 이들이 가진 능력이 보여주는 역량이나 " "적응력에 의문을 제기하지는 못할겁니다." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "드루이드" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -216336,61 +216656,61 @@ msgstr "" "인간만큼이나 그 세계의 일부입니다." #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "마나의 아이" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "당신의 영맥에 마나가 넘쳐흐릅니다." #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "내면에서 강력한 힘이 파직거리는 소리가 납니다." #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "감각세계를 초월했습니다." #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "감각세계를 초월했습니다." #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "마도가 네 안에 있으며, 마법이 곧 그대일지니." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "마나 고체화" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "체내의 영맥을 통제하기가 훨씬 쉬워져서 자연스레 마나 결정을 생성할 수 있게 되었습니다." #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "손이 마력으로 일렁입니다. 손가락끝에서 추적 화살을 쏘아낼 수 있습니다." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "교묘한 주문" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " @@ -216398,42 +216718,42 @@ msgid "" msgstr "" "당신의 영맥을 팔로부터 풀어내, 더이상 주문을 시전할 때 팔을 휘두르지 않아도 됩니다. 팔 방해도가 주문 실패율에 영향을 주지 않습니다." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "고요한 주문" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "당신의 의지를 세상에 발현할 때 목소리를 매개로 삼지 않아도 됩니다. 입 방해도가 주문 실패율에 영향을 주지 않습니다." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "허약함" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "당신의 몸은 부자연스러울 정도로 약합니다. 체력 -2." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "마나 광채" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "불필요한 마나가 열과 빛으로 방출되어 당신을 부드럽게 빛나게 합니다." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "마력 추출" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -216442,193 +216762,193 @@ msgstr "이하로는 마력 추출 시리즈의 주문 부분이 있습니다. #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "폭력이 당신의 영맥을 자극합니다. 적에게 근접공격을 가할 때마다 일정 확률로 마나를 조금 회복합니다." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "마력 흡수" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "마력의 소용돌이" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "하위 마나 효율" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "당신의 마력 저장량이 조금 증가합니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "마나 효율" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "당신의 마력 저장량이 증가합니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "상위 마나 효율" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "당신의 마력 저장량이 크게 증가합니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "하위 마나 비효율" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "당신의 마력 저장량이 조금 감소합니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "마나 비효율" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "당신의 마력 저장량이 감소합니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "상위 마나 비효율" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "당신의 마력 저장량이 크게 감소합니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "하위 마나 재생" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "당신의 자연 마나 회복이 통상보다 조금 빠릅니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "마나 재생" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "당신의 자연 마나 회복이 통상보다 빠릅니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "상위 마나 재생" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "당신의 자연 마나 회복이 통상보다 아주 빠릅니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "하위 마나 재생 감소" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "당신의 자연 마나 회복이 통상보다 조금 느립니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "마나 재생 감소" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "당신의 자연 마나 회복이 통상보다 느립니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "상위 마나 재생 감소" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "당신의 자연 마나 회복이 통상보다 끔찍하게 느립니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "하위 마나 감응" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "당신은 몸 안의 마력을 통상보다 조금 더 느낄 수 있어, 더 많은 마나를 비축할 수 있습니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "마나 감응" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "당신은 몸 안의 마력을 통상보다 더욱 잘 느낄 수 있어, 더 많은 마나를 비축할 수 있습니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "상위 마나 감응" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "당신은 몸 안의 마력을 통상보다 굉장히 잘 느낄 수 있어, 상당히 많은 마나를 비축할 수 있습니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "하위 마나 감응 저해" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "당신은 몸에 있는 마력을 감지하기 어려워, 사용할 수 있는 마나 비축량이 줄어듭니다." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "마나 감응 저해" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "상위 마나 감응 저해" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "디버그 주문 변이" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "모든 디버그 주문을 최대 레벨로 제공합니다." #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " @@ -216637,81 +216957,101 @@ msgstr "" "값비싼 마법 금속 프레임입니다. 프레임 위에 다른 차량 부품들을 장착할 수 있고, 또 다른 프레임을 붙여서 차량 크기를 늘릴 수 " "있습니다. " -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "떠다니는 원반" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "마나 바퀴" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "부유 원반을 움직이게 하는 마력의 집합체입니다." -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "마나 프레임" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "물건을 띄우고 운반할 수 있는 순수한 마력의 형태입니다." -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "마나 에너지" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "마나 동력원" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "이걸 보고 있다면 버그입니다." -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "마법의 문" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "금속 벽에 새겨진, 기묘한 상징이 새겨진 원입니다. 이 세상의 것이 아닌 것 같은 형태가 눈길을 잡아끕니다." -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "마법용품점" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "마법용품점 지붕" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "악마 거미 둥지" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "중고 서점" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "늪" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "블랙 드래곤 둥지" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "호숫가 별장" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "호숫가 별장 보트 창고" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "마도사의 탑" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "숲속 무덤" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "마법 학교" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "고블린 정착지" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "오크 캠프" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "바이오닉 수동 설치" @@ -217986,39 +218326,39 @@ msgstr "나무와 수다떱니다." #: data/mods/Monster_Girls/categories.json #: data/mods/Monster_Girls/thresh_mutation.json msgid "Kitsune" -msgstr "" +msgstr "키츠네" #. ~ Mutation class: Kitsune mutagen_message #: data/mods/Monster_Girls/categories.json msgid "You suddenly have an indescribable craving for chicken..." -msgstr "" +msgstr "갑작스럽게 닭을 향한 설명하기 힘든 갈망이 솟구칩니다..." #. ~ Mutation class: Kitsune iv_message #: data/mods/Monster_Girls/categories.json msgid "" "Your blood runs wild with mischief and merriment as the mutagen flows " "through it." -msgstr "" +msgstr "뮤타젠을 머금은 당신의 피가 장난과 유쾌를 향해 날뜁니다." #. ~ Mutation class: Kitsune Male memorial messsage #: data/mods/Monster_Girls/categories.json msgctxt "memorial_male" msgid "Learned what the fox says." -msgstr "" +msgstr "이제 여우가 어떻게 우는지 알게 됐습니다." #. ~ Mutation class: Kitsune Female memorial messsage #: data/mods/Monster_Girls/categories.json msgctxt "memorial_female" msgid "Learned what the fox says." -msgstr "" +msgstr "이제 여우가 어떻게 우는지 알게 됐습니다." #: data/mods/Monster_Girls/dreams.json msgid "You have a strange dream about foxes." -msgstr "" +msgstr "여우가 나오는 이상한 꿈을 꿨습니다." #: data/mods/Monster_Girls/dreams.json msgid "Your dreams give you a mischievous furry feeling." -msgstr "" +msgstr "꿈에서 심술궂은 털을 느꼈습니다." #: data/mods/Monster_Girls/dreams.json msgid "In a dream, you see a curiously harpy-like reflection of yourself." @@ -218044,12 +218384,12 @@ msgstr "기이한 소 꼬리가 달린 또다른 자신을 꿈 속에서 언뜻 #: data/mods/Monster_Girls/dreams.json msgid "You have a vivid dream of sneaking up to a chicken coop." -msgstr "" +msgstr "닭장에 조용히 숨어드는 생생한 꿈을 꿨습니다." #: data/mods/Monster_Girls/dreams.json msgid "" "Whilst dreaming, you see yourself… but with a pair of fox ears on your head?" -msgstr "" +msgstr "꿈 속에서 당신은 스스로와 마주합니다... 그런데, 머리에 웬 여우 귀 한 쌍이 나있습니다?" #: data/mods/Monster_Girls/dreams.json msgid "" @@ -218079,11 +218419,11 @@ msgstr "거미볼 반쯤 변하는 꿈에 공포를 느꼈습니다." msgid "" "You vividly dream of running away from a chicken coop, your prey held by the" " neck between your teeth." -msgstr "" +msgstr "닭장으로부터 도망치는 생생한 꿈을 꿨습니다. 당신의 이빨 사이에 사냥감의 모가지가 물려있는 그 촉감이 지금도 떠오릅니다." #: data/mods/Monster_Girls/dreams.json msgid "You vividly dream of… a wedding altar?!?" -msgstr "" +msgstr "결혼식장에서 사는... 생생한 꿈을 꾸었습니다?!?" #: data/mods/Monster_Girls/dreams.json msgid "" @@ -218093,17 +218433,17 @@ msgstr "매력적인 트리피드 씨가 좀비 머리 부케를 건네줍니다 #: data/mods/Monster_Girls/dreams.json msgid "You vividly dream of committing tax fraud: the ultimate trick!" -msgstr "" +msgstr "세금 사기를 저지르는 생생한 꿈을 꾸었습니다. 이게 진짜 끝내주는 장난이죠!" #: data/mods/Monster_Girls/dreams.json msgid "" "You find yourself subconsciously moving your head from your normal pillow to" " your tail as you sleep." -msgstr "" +msgstr "잠자는 도중 자신도 모르게 원래 베고 자던 베개가 아니라 꼬리에 머리를 뉘였음을 깨닫습니다." #: data/mods/Monster_Girls/dreams.json msgid "You dream of sharing your love of mischief with a partner." -msgstr "" +msgstr "짝과 함께 장난에 대한 애정을 공유하는 꿈을 꿉니다." #: data/mods/Monster_Girls/modinfo.json msgid "Monster Girls Mutations" @@ -218225,19 +218565,19 @@ msgstr[0] "요정 혈청" #: data/mods/Monster_Girls/mutagens.json msgid "Kitsune mutagen" msgid_plural "Kitsune mutagens" -msgstr[0] "" +msgstr[0] "키츠네 뮤타젠" #: data/mods/Monster_Girls/mutagens.json msgid "Kitsune serum" msgid_plural "Kitsune serums" -msgstr[0] "" +msgstr[0] "키츠네 혈청" #. ~ Description for Kitsune serum #: data/mods/Monster_Girls/mutagens.json msgid "" "A super-concentrated mutagen the color of amber. You need a syringe to " "inject it… if you really want to?" -msgstr "" +msgstr "호박색을 띈 초농축된 뮤타젠입니다. 주사기가 있으면 사용할 수 있 지만... 꼭 써야 하나요?" #. ~ Description for {'str': 'Nekomimi'} #: data/mods/Monster_Girls/thresh_mutation.json @@ -218345,6 +218685,8 @@ msgid "" "you'll find that special partner-in-crime to live up to the other reputation" " Kitsunes have." msgstr "" +"일본 여우령들의 마법의 힘을 얻지는 못했을지라도, 그 장난기 가득한 본성은 당신에게도 완벽하게 깃들었습니다. 언젠가는 키츠네가 갖는 그 " +"악동으로서의 명성에 부끄럽지 않은 특별한 공범을 얻을지도 모르지요." #: data/mods/Mundane_Zombies/modinfo.json msgid "Mundane Zombies" @@ -223166,6 +223508,10 @@ msgstr "조작/정보 전환" msgid "Toggle safe fuel mod" msgstr "연료 절약 모드 설정" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "스프라이트 전환" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "전력 부족시 자동 시작 설정" @@ -223358,10 +223704,6 @@ msgstr "인접한 타일에 물건 버리기" msgid "View/Activate Bionics" msgstr "바이오닉 보기/활성화" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "스프라이트 전환" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "변이 보기/활성화" @@ -229401,11 +229743,12 @@ msgstr "바이오닉" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" "[%s] 단축키 변경, [%s] 탭 변경, " -"[%s] 연료 절약 모드 전환, [%s] 자동 활성화 모드" -" 전환." +"[%s] 연료 절약 모드 전환, [%s] 스프라이트 표시 " +"전환, [%s] 자동 활성화 모드 전환." #: src/bionics_ui.cpp #, c-format @@ -229474,6 +229817,10 @@ msgstr "켜짐" msgid "(incapacitated)" msgstr "(정지됨)" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "(숨겨짐)" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "(연료 절약 모드 활성화됨)" @@ -230309,6 +230656,10 @@ msgstr "%s(이)가 그걸 입으려면 빈 손이 있어야 합니다." msgid "Can't wear more than one %s!" msgstr "%s(은)는 동시에 하나만 착용할 수 있습니다!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -246075,8 +246426,13 @@ msgid "Test which group?" msgstr "어떤 그룹을 테스트하시겠습니까?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" -msgstr "1000회 생성시 결과:" +msgid "How many iterations to test?" +msgstr "실험을 몇 번 반복할까요?" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" +msgstr "%zu회 생성시 결과: " #: src/item_factory.cpp src/trait_group.cpp #, c-format @@ -252053,8 +252409,14 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "오류: 유효하지 않은 에너지 스트링입니다. 기본값 없음을 사용합니다." #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" -msgstr "오류: 유효하지 않은 피해 종류 스트링입니다. 기본값 피해종류 없음을 사용합니다." +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "오류: '없음' 피해는 주문에 대해 유효하지 않으며 구식화된 피해 종류입니다. '방어 무시' 피해로 변경해주세요" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" +msgstr "오류: 유효하지 않은 피해 종류 스트링입니다. 기본값 피해종류 때리기를 사용합니다." #: src/magic.cpp #, c-format @@ -257227,11 +257589,12 @@ msgstr "%1$s(이)가 기계적으로 %2$s(을)를 붙잡습니다!" msgid "%1$s slams %2$s to the ground!" msgstr "%1$s는%2$s를 땅바닥에 내동댕이쳤습니다!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" -msgstr "좀비가 %1$s(을)를 걷어 차 %2$d 피해를 입었습니다..." +msgid "The %1$s kicks your %2$s for %3$d damage…" +msgstr "%1$s(이)가 %2$s(을)를 걷어차 %3$d 피해를 입습니다..." #: src/monattack.cpp #, c-format @@ -261483,7 +261846,7 @@ msgstr "기본 월드맵" msgid "Android" msgstr "안드로이드" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -269199,6 +269562,11 @@ msgstr "%s의 파종기가 낮은 기온 때문에 꺼졌습니다." msgid "Your %s winks out of existence." msgstr "%s(이)가 온데간데 없이 사라집니다." +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -269340,6 +269708,16 @@ msgstr "%s의 엔진에서 재채기 같은 소리가 납니다." msgid "Your %s is not fast enough to keep up with the %s" msgstr "%s(은)는 %s(을)를 따라갈만큼 빠르지 않습니다." +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -269932,11 +270310,6 @@ msgstr "공을 들여 %s(을)를 휴대하기 쉽게 접었습니다." msgid "You let go of %s as you fold it." msgstr "%s(을)를 접고 내버려둡니다." -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "접힌 %s" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/nb.po b/lang/po/nb.po index f4871305d83a..0cb8293f391d 100644 --- a/lang/po/nb.po +++ b/lang/po/nb.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Norwegian Bokmål (https://app.transifex.com/bn-team/teams/113585/nb/)\n" "MIME-Version: 1.0\n" @@ -7523,6 +7523,17 @@ msgstr "" msgid "You can see through everything!" msgstr "Du kan se gjennom alt!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10842,7 +10853,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11290,75 +11301,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11372,51 +11399,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12159,12 +12224,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12206,6 +12271,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12663,7 +12899,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12698,7 +12934,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12735,7 +12971,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12904,7 +13140,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13022,7 +13258,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13097,7 +13333,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13279,7 +13515,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14464,7 +14700,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14473,22 +14709,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14501,7 +14737,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14513,7 +14749,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14526,7 +14762,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14544,7 +14780,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14553,12 +14789,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14618,7 +14854,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15041,7 +15277,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19303,12 +19539,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19333,18 +19569,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19353,7 +19589,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19361,12 +19597,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19391,18 +19627,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19410,19 +19646,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19445,12 +19681,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20207,15 +20443,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20223,7 +20459,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20231,6 +20467,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27448,7 +27712,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27565,7 +27828,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27631,7 +27893,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27652,7 +27913,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27660,7 +27920,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27668,7 +27927,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27687,8 +27945,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -27721,14 +27978,12 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27771,7 +28026,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27789,7 +28043,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -27834,7 +28087,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -27846,7 +28098,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -27854,7 +28105,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -27866,7 +28116,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28231,7 +28480,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28273,6 +28523,19 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28350,7 +28613,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28380,7 +28644,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28726,7 +28991,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -28835,8 +29099,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29085,7 +29350,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29113,7 +29378,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29236,7 +29501,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29296,7 +29560,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29619,7 +29882,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29706,7 +29969,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29733,7 +29996,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -29902,7 +30165,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30239,7 +30502,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30256,7 +30519,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30269,7 +30531,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30284,7 +30545,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30306,7 +30566,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30456,7 +30715,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31309,7 +31567,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -31725,7 +31982,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -31867,7 +32123,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -31892,7 +32147,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32437,9 +32691,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32473,7 +32739,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32489,7 +32754,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -32987,7 +33251,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -33002,7 +33265,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33018,7 +33280,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33084,7 +33345,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33122,7 +33382,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34609,7 +34868,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -34995,7 +35254,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "sand" @@ -35251,7 +35509,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -36892,7 +37149,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37532,7 +37788,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38565,7 +38820,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "solid stein" @@ -39487,7 +39741,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -39664,6 +39917,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -39731,7 +40020,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "HVIS DU SER DETTE SÅ ER DET EN BUG." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "tråd" @@ -39744,7 +40032,6 @@ msgstr "" "En liten mengde av tråd som kan bli brukt til å fylle om ett sy-utstyr." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -39756,7 +40043,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "En sterk sene kuttet fra ett lik, brukbar som tråd." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -39768,7 +40054,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "Sterk tynn fiber, laget fra en plante. Kan bli brukt som tråd." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "garn" @@ -39791,7 +40076,6 @@ msgid "A cleansing agent made into bars." msgstr "Et rengjøringsmiddel laget i barer." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -39803,7 +40087,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "En rull av utrolig sterk tape. Dets bruksområder er utallig." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -39815,7 +40098,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Disse er tynne papirstriper ment til å lage sigaretter." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -39864,7 +40146,6 @@ msgstr[0] "vannaktig plutoniumoppslemming" msgstr[1] "vannaktig plutoniumoppslemming" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40121,7 +40402,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40171,7 +40451,6 @@ msgstr "" " fjerne forurensninger ut av luft og vann." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "kalsiumkarbidforblanding" @@ -40410,7 +40689,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Blanding av oksygen og nitrogen i proporsjoner passende for dykking. " #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "tennstoff" @@ -40446,7 +40724,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -40775,7 +41052,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -42806,7 +43082,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "bit av svovel" @@ -42820,7 +43095,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "sement" @@ -42838,7 +43112,6 @@ msgstr "" " Bare tilsett vann." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "kalkstein" @@ -42853,7 +43126,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "kalsiumoksid" @@ -42882,7 +43154,6 @@ msgstr "" "om til glass. Ellers er det bare bra for å lage sement." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "jord" @@ -42911,7 +43182,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -42923,7 +43193,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -42937,7 +43206,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -43332,7 +43600,6 @@ msgstr "" "rakettdrivningsmidler, for eksempel rocket candy." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "niter" @@ -43348,7 +43615,6 @@ msgstr "" "til saltpeter." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -43752,7 +44018,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -43801,7 +44066,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -45404,7 +45668,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -45417,7 +45680,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -45559,7 +45821,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "pelsskinn" @@ -45571,7 +45832,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -45583,7 +45843,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "lærlapp" @@ -45595,7 +45854,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -45607,7 +45865,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -45619,7 +45876,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -45631,7 +45887,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "En tube av sterk lim. Brukt i mange lage-oppskrifter." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "beinlim" @@ -45666,7 +45921,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "stållenke" @@ -45680,7 +45934,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -45692,7 +45945,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -45723,7 +45975,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -45738,7 +45989,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -45752,7 +46002,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -45767,7 +46016,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -45844,7 +46092,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -45856,7 +46103,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -45870,7 +46116,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -45885,7 +46130,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -45936,7 +46180,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -45951,7 +46194,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -45965,7 +46207,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -45977,7 +46218,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -45992,7 +46232,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -46053,7 +46292,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -46105,7 +46343,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -46117,7 +46354,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -46130,7 +46366,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -46142,7 +46377,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -46182,7 +46416,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -46194,7 +46427,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -46208,7 +46440,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -46219,9 +46450,7 @@ msgstr[1] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -46235,9 +46464,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -46251,7 +46478,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -46265,7 +46491,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -46279,7 +46504,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -46293,7 +46517,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -46314,7 +46537,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -46328,7 +46550,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -46342,7 +46563,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -46355,9 +46575,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -46372,7 +46590,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -46386,21 +46603,18 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -46415,7 +46629,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -46430,9 +46643,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -46447,9 +46658,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -46463,9 +46672,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -46479,9 +46686,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -46495,9 +46700,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -46511,9 +46714,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -46527,9 +46728,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -46571,7 +46770,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -46583,7 +46781,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -46595,7 +46792,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -46607,7 +46803,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -46621,7 +46816,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -46635,7 +46829,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -46649,7 +46842,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -46663,7 +46855,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -46677,7 +46868,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -46692,7 +46882,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -46707,7 +46896,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -46721,7 +46909,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -46766,7 +46953,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -46778,7 +46964,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -46792,7 +46977,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -46806,7 +46990,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -46832,7 +47015,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -46844,7 +47026,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -46871,7 +47052,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -46904,7 +47084,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -46919,7 +47098,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -46943,7 +47121,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -46955,7 +47132,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -46970,7 +47146,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -46985,7 +47160,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -47017,7 +47191,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -47031,7 +47204,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -47065,7 +47237,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -47078,14 +47249,12 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -47099,7 +47268,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -47111,7 +47279,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -47123,7 +47290,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -47135,7 +47301,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -47159,7 +47324,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -47173,7 +47337,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -47187,7 +47350,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -47199,7 +47361,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -47211,7 +47372,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -47225,7 +47385,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -47237,7 +47396,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -47249,7 +47407,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -47261,7 +47418,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -47273,7 +47429,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -47285,7 +47440,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -47297,7 +47451,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -47309,7 +47462,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -47321,7 +47473,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -47333,7 +47484,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -47345,7 +47495,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -47357,7 +47506,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -47369,7 +47517,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -47381,7 +47528,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -47393,7 +47539,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -47408,7 +47553,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -47447,7 +47591,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -47459,7 +47602,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -47473,7 +47615,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -47485,7 +47626,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -47505,7 +47645,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -47556,7 +47695,7 @@ msgstr[1] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -47672,7 +47811,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -47700,7 +47838,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -47712,7 +47849,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -47724,7 +47860,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -47736,7 +47871,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -47751,7 +47885,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -47766,7 +47899,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -47781,7 +47913,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -47835,7 +47966,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -47858,7 +47988,6 @@ msgid "A twisted shard of jagged metal." msgstr "Ett vridd fragment av hakket metall." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -47870,7 +47999,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -48005,7 +48133,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -48018,9 +48145,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -48033,9 +48158,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -48048,16 +48171,14 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -48071,7 +48192,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -48087,7 +48207,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -48145,21 +48264,18 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -48350,7 +48466,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -48508,7 +48623,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -48522,7 +48636,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -48536,7 +48649,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -48550,7 +48662,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -48562,7 +48673,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -48576,7 +48686,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -48590,7 +48699,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -48604,7 +48712,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -48616,7 +48723,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -48628,7 +48734,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -49111,7 +49216,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -49123,7 +49227,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -49135,7 +49238,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -49147,7 +49249,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -49159,7 +49260,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -49171,7 +49271,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -49183,7 +49282,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -49195,7 +49293,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -49210,7 +49307,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -49855,7 +49951,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -49888,7 +49984,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -53560,7 +53656,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -54159,7 +54254,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -54172,7 +54268,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -54185,7 +54282,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -54199,7 +54297,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -54698,7 +54797,7 @@ msgstr[1] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -54943,7 +55042,7 @@ msgstr[1] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -54953,14 +55052,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -57530,7 +57629,7 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -65385,7 +65484,7 @@ msgstr[1] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -73275,8 +73374,8 @@ msgstr[1] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -73405,7 +73504,7 @@ msgstr[1] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -73424,7 +73523,7 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -75216,8 +75315,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -75225,7 +75323,6 @@ msgstr[1] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -75423,8 +75520,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -86236,6 +86332,20 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -90433,7 +90543,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -90447,7 +90556,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -90493,7 +90601,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -90528,7 +90635,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -90542,7 +90648,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -91149,7 +91254,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -91161,7 +91265,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -91173,7 +91276,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -91185,7 +91287,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -91266,7 +91367,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -91278,7 +91378,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -91292,7 +91391,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -91304,7 +91402,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -91316,7 +91413,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -91330,7 +91426,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -91366,7 +91461,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -91409,7 +91503,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -91451,7 +91544,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -91463,7 +91555,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -91476,7 +91567,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -91490,7 +91580,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -91504,7 +91593,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -91518,7 +91606,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -91535,7 +91622,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -91548,7 +91634,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -91561,7 +91646,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -91575,7 +91659,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -91589,7 +91672,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -91603,7 +91685,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -91928,7 +92009,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -91940,7 +92020,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "" @@ -93196,7 +93275,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -96152,7 +96231,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -96475,7 +96554,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -96649,7 +96728,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -96767,7 +96846,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -100894,14 +100973,12 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" msgstr[1] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -100915,7 +100992,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -100929,7 +101005,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -100943,7 +101018,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -100959,7 +101033,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -100974,7 +101047,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -100989,7 +101061,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -101004,7 +101075,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -104536,7 +104606,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -104550,7 +104619,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -104571,7 +104639,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -104584,7 +104651,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -104597,7 +104663,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -104699,7 +104764,6 @@ msgid "A roll of purple carpet." msgstr "En rull lilla teppe." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -104713,7 +104777,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -104725,7 +104788,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -104738,7 +104800,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -104755,7 +104816,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -104769,7 +104829,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -104783,7 +104842,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -104798,7 +104856,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "vismut" @@ -104810,7 +104867,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "Et tett, men sprøtt metall som brukes ofte som et alternativ til bly." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "gull" @@ -104827,14 +104883,12 @@ msgstr "" "formue, men nå er verdien dessverre sterkt redusert." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "platinum" msgstr[1] "platinum" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -104850,7 +104904,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "bly" @@ -104867,7 +104920,6 @@ msgstr "" "ammunisjon." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "magnesiumpulver" @@ -104883,7 +104935,6 @@ msgstr "" "magnesium. Nyttig for bygging av bluss og lignende gjenstander." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "sølv" @@ -104897,7 +104948,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -104909,7 +104959,6 @@ msgid "A small sheet of metal." msgstr "en liten plate av metall." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -104925,7 +104974,6 @@ msgstr "" " nyttig for noen lage-oppskrifter." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -104937,7 +104985,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "En tungt formet del av stål. Brukbar for noen lage-oppskrifter." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -104951,7 +104998,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -104963,7 +105009,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -104977,7 +105022,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -105014,7 +105058,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -105077,7 +105120,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -105146,7 +105188,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -105174,7 +105215,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -105189,8 +105229,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -105204,7 +105242,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -105218,7 +105255,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -105232,7 +105268,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -105246,7 +105281,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -105258,7 +105292,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -105270,7 +105303,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -105284,7 +105316,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -105297,8 +105328,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -105313,7 +105343,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -105328,7 +105357,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -105344,7 +105372,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -105359,7 +105386,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -105395,7 +105421,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -105412,7 +105437,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -105438,7 +105462,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -105452,7 +105475,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -105492,7 +105514,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -105508,7 +105529,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -105522,7 +105542,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -105536,7 +105555,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -105548,7 +105566,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -105560,7 +105577,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -105572,7 +105588,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -105587,7 +105602,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -105601,7 +105615,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -105627,7 +105640,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -105641,7 +105653,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -105727,7 +105738,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -105741,7 +105751,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -105768,7 +105777,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -105844,7 +105852,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -105858,7 +105865,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -105873,7 +105879,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -105888,7 +105893,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -105905,7 +105909,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -105921,7 +105924,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -105950,7 +105952,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -105964,7 +105965,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -105978,7 +105978,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -106004,7 +106003,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -106018,7 +106016,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -106033,7 +106030,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -106045,7 +106041,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -106097,7 +106092,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -106112,7 +106106,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -106124,7 +106117,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -106138,7 +106130,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -106223,7 +106214,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -106239,6 +106229,22 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -106247,7 +106253,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -106296,7 +106301,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -106329,7 +106333,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -106345,7 +106348,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -106360,7 +106362,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -106378,7 +106379,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -106406,7 +106406,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -106421,7 +106420,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -106436,7 +106434,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -106463,7 +106460,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -106477,9 +106473,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -106496,7 +106490,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -106512,7 +106505,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -106529,7 +106521,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -106561,7 +106552,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -106592,7 +106582,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -106623,7 +106612,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -106639,7 +106627,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -106721,7 +106708,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -106735,7 +106721,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -106759,7 +106744,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -106774,7 +106758,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -106789,7 +106772,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -106806,7 +106788,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -106823,7 +106804,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -106838,7 +106818,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -106854,7 +106833,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -107831,7 +107809,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -107845,7 +107822,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -107861,7 +107837,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -107877,7 +107852,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -107892,7 +107866,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -107907,7 +107880,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -107922,7 +107894,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -107938,7 +107909,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -107977,7 +107947,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -108007,7 +107976,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -108044,7 +108012,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -108072,7 +108039,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -108086,7 +108052,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -108142,7 +108107,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -108156,7 +108120,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -108187,7 +108150,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -108199,7 +108161,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -108211,7 +108172,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -108225,7 +108185,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -108239,7 +108198,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -108253,7 +108211,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -108271,7 +108228,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -108298,7 +108254,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -108326,7 +108281,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -108340,7 +108294,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -108383,7 +108336,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -108397,7 +108349,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -108410,7 +108361,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -108424,7 +108374,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -108454,7 +108403,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -108469,7 +108417,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -108494,7 +108441,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -108509,7 +108455,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -108552,7 +108497,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -108574,7 +108518,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -108598,7 +108541,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -108607,7 +108549,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -108622,7 +108564,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -108633,7 +108574,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -108685,7 +108626,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -108728,7 +108668,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -108890,7 +108829,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -109028,7 +108966,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -109070,7 +109007,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -109123,7 +109059,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -109131,7 +109067,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -109147,7 +109083,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -109159,7 +109095,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -109232,7 +109167,6 @@ msgstr "" "ikke administreres manuelt." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -109275,7 +109209,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -109304,7 +109237,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -109316,7 +109248,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -109342,7 +109273,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -109357,7 +109287,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -109390,7 +109319,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -109404,7 +109332,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -109419,7 +109346,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -109441,7 +109367,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -109455,7 +109380,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -109469,7 +109393,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -109483,7 +109406,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -109500,7 +109422,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -109536,7 +109457,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -109573,7 +109493,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -109587,7 +109506,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -109625,7 +109543,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -109761,7 +109678,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -109799,7 +109715,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -109819,7 +109734,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -109845,7 +109759,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -109897,7 +109810,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -109934,7 +109846,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -110029,7 +109940,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -110076,7 +109986,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -110236,7 +110145,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -110367,7 +110275,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -110382,7 +110289,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -110397,7 +110303,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -110409,7 +110314,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -110421,7 +110325,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -110435,7 +110338,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -110449,7 +110351,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -110463,7 +110364,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -110502,7 +110402,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -110517,7 +110416,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -110555,7 +110453,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -110582,7 +110479,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -110596,7 +110492,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -110672,7 +110567,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -110690,7 +110584,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -110716,7 +110609,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -110731,7 +110623,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -110746,7 +110637,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -110774,7 +110664,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -110788,7 +110677,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -110800,7 +110688,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -110814,7 +110701,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -110828,7 +110714,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -110880,7 +110765,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -110895,7 +110779,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -110912,7 +110795,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -110926,7 +110808,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -110940,7 +110821,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -110955,7 +110835,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -110971,7 +110850,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -110989,7 +110867,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -111006,7 +110883,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -111020,7 +110896,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -111047,7 +110922,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -111063,7 +110937,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -111080,7 +110953,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -111098,7 +110970,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -111116,7 +110987,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -111136,7 +111006,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -111153,7 +111022,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -111210,7 +111078,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -111224,7 +111091,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -111236,7 +111102,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -111302,7 +111167,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -111314,7 +111178,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -111326,7 +111189,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -111341,7 +111203,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -111353,7 +111214,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -111368,7 +111228,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -111382,7 +111241,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -111397,7 +111255,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -111420,7 +111277,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -111436,8 +111292,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -111467,8 +111322,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -111484,7 +111338,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -111496,7 +111349,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -111508,7 +111360,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -111549,7 +111400,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -111575,7 +111425,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -111613,7 +111462,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -111627,7 +111475,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -111665,7 +111512,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -111685,7 +111531,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -111730,7 +111575,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -111749,7 +111593,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -111802,7 +111645,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -111830,7 +111672,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -111864,7 +111705,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -111885,7 +111725,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -111912,7 +111751,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -111949,7 +111787,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -111991,7 +111828,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -112018,7 +111854,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -112117,7 +111952,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -112129,7 +111963,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -112137,7 +111970,6 @@ msgstr[1] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -112274,7 +112106,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -112288,7 +112119,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -112302,7 +112132,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -112316,7 +112145,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -112331,7 +112159,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -112343,7 +112170,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -112357,7 +112183,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -112372,7 +112197,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -112386,7 +112210,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -112399,7 +112222,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -112413,7 +112235,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -112428,7 +112249,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -112454,7 +112274,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -112483,7 +112302,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -112497,7 +112315,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -112511,7 +112328,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -112523,7 +112339,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -112537,7 +112352,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -112549,7 +112363,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -112564,7 +112377,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -112578,7 +112390,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -112594,7 +112405,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -112609,7 +112419,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -112623,7 +112432,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -112637,7 +112445,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -112651,7 +112458,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -112682,7 +112488,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -112696,7 +112501,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -112710,7 +112514,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -112727,7 +112530,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -112739,7 +112541,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -112753,7 +112554,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -112767,7 +112567,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -112782,7 +112581,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -112809,7 +112607,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -112823,7 +112620,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -112837,7 +112633,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -112852,7 +112647,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -112882,7 +112676,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -112896,7 +112689,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -112925,7 +112717,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -112939,7 +112730,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -112953,7 +112743,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -112967,7 +112756,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -112983,7 +112771,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -112997,7 +112784,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -113012,7 +112798,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -114242,6 +114027,17 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -114571,7 +114367,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -114987,6 +114782,13 @@ msgstr[1] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -115310,6 +115112,30 @@ msgstr[1] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -116140,13 +115966,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -116466,13 +116285,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -117026,7 +116838,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -117050,7 +116862,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -120925,7 +120737,7 @@ msgstr[1] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -120933,7 +120745,7 @@ msgstr[1] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -130759,9 +130571,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -131494,9 +131306,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -131512,9 +131324,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "Kan jeg gjøre noe for deg?" @@ -131542,25 +131354,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -131580,9 +131392,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -137825,7 +137637,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "Hei ." @@ -147492,17 +147304,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -148702,7 +148514,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -154389,9 +154201,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -163316,7 +163128,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -163684,7 +163495,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "hytte" @@ -163706,7 +163517,6 @@ msgstr "hyttekjeller" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "skog" @@ -166459,7 +166269,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -166506,7 +166315,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -166631,6 +166440,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -166644,7 +166460,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -166685,7 +166501,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -176422,7 +176238,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -176501,6 +176317,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -178219,6 +178042,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -178288,7 +178129,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -178356,6 +178197,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -178501,7 +178346,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -178844,7 +178689,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -185530,7 +185374,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -185538,8 +185382,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -186463,9 +186307,9 @@ msgstr[1] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -186478,7 +186322,7 @@ msgstr[1] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -203454,74 +203298,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -203531,177 +203307,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -204914,115 +204519,134 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -205030,157 +204654,213 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" msgstr[1] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" msgstr[1] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -205188,25 +204868,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -205214,25 +204894,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -205240,7 +204920,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -205248,7 +204928,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -205258,7 +204938,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -205268,7 +204948,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -205278,7 +204958,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -205288,7 +204968,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -205297,7 +204977,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -205306,7 +204986,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -205316,7 +204996,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -205325,18 +205005,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -205345,7 +205025,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -205353,18 +205033,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -205374,7 +205054,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -205383,18 +205063,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -205402,25 +205082,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -205428,59 +205108,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205489,7 +205201,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205498,25 +205210,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205528,7 +205240,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205539,25 +205251,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205567,7 +205279,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205577,588 +205289,640 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -206170,245 +205934,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -206416,808 +206153,872 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" msgstr[1] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -207225,20 +207026,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -207246,74 +207047,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -207321,21 +207122,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -207343,105 +207144,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -207449,16 +207274,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -207466,74 +207291,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -207541,357 +207366,357 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -207899,175 +207724,99 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -208075,113 +207824,84 @@ msgstr[1] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -208189,14 +207909,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -208204,39 +207924,39 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -208244,13 +207964,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -208258,13 +207978,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -208272,114 +207992,90 @@ msgstr[1] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -208387,12 +208083,12 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -208400,66 +208096,66 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -208467,19 +208163,19 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -208487,13 +208183,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -208501,13 +208197,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -208515,13 +208211,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -208529,70 +208225,70 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -208600,12 +208296,12 @@ msgstr[1] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -208613,313 +208309,278 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" msgstr[1] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -208928,4326 +208589,4913 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" msgstr[1] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -213256,7 +213504,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -213264,14 +213512,14 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -213279,40 +213527,40 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -213321,83 +213569,83 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" msgstr[1] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -213405,39 +213653,115 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -213448,31 +213772,31 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -213482,14 +213806,14 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -213498,62 +213822,63 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" msgstr[1] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" msgstr[1] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" msgstr[1] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -213562,25 +213887,25 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -213589,204 +213914,249 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" msgstr[1] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" msgstr[1] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" msgstr[1] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" msgstr[1] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" msgstr[1] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -213794,222 +214164,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -214017,48 +214387,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -214066,12 +214436,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -214079,12 +214449,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -214092,103 +214462,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -214197,276 +214567,296 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" msgstr[1] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" msgstr[1] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -220763,6 +221153,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -220955,10 +221349,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -226955,6 +227345,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -227023,6 +227414,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -227865,6 +228260,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -243448,7 +243847,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -249416,7 +249820,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -254559,10 +254969,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -258754,7 +259165,7 @@ msgstr "Verdensstandard" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -266340,6 +266751,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -266481,6 +266897,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -267073,11 +267499,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/nl.po b/lang/po/nl.po index 26d2deba14d5..ad2ae1848764 100644 --- a/lang/po/nl.po +++ b/lang/po/nl.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Dutch (https://app.transifex.com/bn-team/teams/113585/nl/)\n" "MIME-Version: 1.0\n" @@ -7527,6 +7527,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10842,7 +10853,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11290,75 +11301,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "AMMUNITIE" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "WAPENS" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "GEREEDSCHAPPEN" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "KLEDING" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "VOEDSEL" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "DRUGS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "BOEKEN" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MODIFICATIES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "MUTAGENS" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "BIONICS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11372,51 +11399,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "MISC" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "BRANDSTOF" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "ZADEN" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "CHEMISCH SPUL" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12159,12 +12224,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12206,6 +12271,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12663,7 +12899,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12698,7 +12934,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12735,7 +12971,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12904,7 +13140,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13022,7 +13258,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13097,7 +13333,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13279,7 +13515,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14464,7 +14700,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "gedeukt" @@ -14473,22 +14709,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "gekrast" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "gesneden" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14501,7 +14737,7 @@ msgid "bent" msgstr "gebogen" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14513,7 +14749,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14526,7 +14762,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14544,7 +14780,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "gescheurd" @@ -14553,12 +14789,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14618,7 +14854,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15041,7 +15277,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19296,12 +19532,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19326,18 +19562,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19346,7 +19582,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19354,12 +19590,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19384,18 +19620,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19403,19 +19639,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19438,12 +19674,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20200,15 +20436,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20216,7 +20452,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20224,6 +20460,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27441,7 +27705,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27558,7 +27821,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27624,7 +27886,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27645,7 +27906,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27653,7 +27913,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27661,7 +27920,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27680,8 +27938,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -27714,14 +27971,12 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27764,7 +28019,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27782,7 +28036,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -27827,7 +28080,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -27839,7 +28091,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -27847,7 +28098,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -27859,7 +28109,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28224,7 +28473,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28266,6 +28516,19 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28343,7 +28606,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28373,7 +28637,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28719,7 +28984,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -28828,8 +29092,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29078,7 +29343,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29106,7 +29371,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29229,7 +29494,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29289,7 +29553,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29612,7 +29875,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29699,7 +29962,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29726,7 +29989,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -29895,7 +30158,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30232,7 +30495,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30249,7 +30512,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30262,7 +30524,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30277,7 +30538,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30299,7 +30559,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30449,7 +30708,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31302,7 +31560,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -31718,7 +31975,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -31860,7 +32116,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -31885,7 +32140,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32430,9 +32684,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32466,7 +32732,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32482,7 +32747,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -32980,7 +33244,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -32995,7 +33258,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33011,7 +33273,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33077,7 +33338,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33115,7 +33375,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34602,7 +34861,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -34988,7 +35247,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35244,7 +35502,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -36885,7 +37142,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37522,7 +37778,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38555,7 +38810,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "" @@ -39477,7 +39731,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -39654,6 +39907,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -39717,7 +40006,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ALS JE DIT ZIET IS HET EEN BUG" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -39730,7 +40018,6 @@ msgstr "" "Een kleine hoeveelheid draad, zou een naaiset van draad kunnen voorzien." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -39742,7 +40029,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Een sterke spier gesneden uit een lijk, bruikbaar als draad." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -39754,7 +40040,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "Sterke dunne plantenvezel, bruikbaar als draad." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -39777,7 +40062,6 @@ msgid "A cleansing agent made into bars." msgstr "Verontreinigingsagent." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -39791,7 +40075,6 @@ msgstr "" "gebruiken/" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -39803,7 +40086,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Dunne stukjes papier om shaggies mee te draaien." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -39851,7 +40133,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40096,7 +40377,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40141,7 +40421,6 @@ msgid "" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40359,7 +40638,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "" @@ -40393,7 +40671,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -40722,7 +40999,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -42753,7 +43029,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "" @@ -42767,7 +43042,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -42782,7 +43056,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -42797,7 +43070,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -42820,7 +43092,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "" @@ -42847,7 +43118,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -42859,7 +43129,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -42873,7 +43142,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -43248,7 +43516,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -43262,7 +43529,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -43629,7 +43895,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -43678,7 +43943,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -45267,7 +45531,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -45280,7 +45543,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -45420,7 +45682,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -45432,7 +45693,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -45444,7 +45704,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -45456,7 +45715,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -45468,7 +45726,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -45480,7 +45737,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -45492,7 +45748,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -45527,7 +45782,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "" @@ -45541,7 +45795,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -45553,7 +45806,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -45584,7 +45836,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -45599,7 +45850,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -45613,7 +45863,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -45628,7 +45877,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -45705,7 +45953,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -45719,7 +45966,6 @@ msgstr "" "bevatten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -45733,7 +45979,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -45748,7 +45993,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -45799,7 +46043,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -45814,7 +46057,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -45828,7 +46070,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -45840,7 +46081,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -45855,7 +46095,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -45916,7 +46155,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -45968,7 +46206,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -45980,7 +46217,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -45993,7 +46229,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -46005,7 +46240,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -46045,7 +46279,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -46057,7 +46290,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -46071,7 +46303,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -46082,9 +46313,7 @@ msgstr[1] "" msgid "A broken laptop, basically a paperweight now." msgstr "Een gebroken laptop die nu niet veel meer dient dan een gewicht." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -46098,9 +46327,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -46114,7 +46341,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -46128,7 +46354,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -46142,7 +46367,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -46156,7 +46380,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -46177,7 +46400,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -46191,7 +46413,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -46205,7 +46426,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -46218,9 +46438,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -46235,7 +46453,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -46249,21 +46466,18 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -46278,7 +46492,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -46293,9 +46506,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -46310,9 +46521,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -46326,9 +46535,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -46342,9 +46549,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -46358,9 +46563,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -46374,9 +46577,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -46390,9 +46591,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -46434,7 +46633,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -46446,7 +46644,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -46458,7 +46655,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -46470,7 +46666,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -46484,7 +46679,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -46498,7 +46692,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -46512,7 +46705,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -46526,7 +46718,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -46540,7 +46731,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -46555,7 +46745,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -46570,7 +46759,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -46584,7 +46772,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -46629,7 +46816,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -46641,7 +46827,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -46655,7 +46840,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -46669,7 +46853,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -46695,7 +46878,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -46707,7 +46889,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -46734,7 +46915,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -46767,7 +46947,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -46782,7 +46961,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -46806,7 +46984,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -46818,7 +46995,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "Een gebruikte SD-kaart, misschien staat er iets interessants op?" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -46835,7 +47011,6 @@ msgstr "" "zetten." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -46852,7 +47027,6 @@ msgstr "" " ervoor hebt, kun je het proberen open te kraken." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -46884,7 +47058,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -46898,7 +47071,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -46932,7 +47104,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -46945,14 +47116,12 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -46966,7 +47135,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -46978,7 +47146,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -46990,7 +47157,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -47002,7 +47168,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -47026,7 +47191,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -47040,7 +47204,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -47054,7 +47217,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -47066,7 +47228,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -47078,7 +47239,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -47092,7 +47252,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -47104,7 +47263,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -47116,7 +47274,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -47128,7 +47285,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -47140,7 +47296,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -47152,7 +47307,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -47164,7 +47318,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -47176,7 +47329,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -47188,7 +47340,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -47200,7 +47351,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -47212,7 +47362,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -47224,7 +47373,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -47236,7 +47384,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -47248,7 +47395,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -47260,7 +47406,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -47275,7 +47420,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -47314,7 +47458,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -47326,7 +47469,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -47340,7 +47482,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -47352,7 +47493,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -47372,7 +47512,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -47423,7 +47562,7 @@ msgstr[1] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -47539,7 +47678,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -47567,7 +47705,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -47579,7 +47716,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -47591,7 +47727,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -47603,7 +47738,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -47618,7 +47752,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -47633,7 +47766,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -47648,7 +47780,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -47702,7 +47833,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -47725,7 +47855,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -47737,7 +47866,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -47872,7 +48000,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -47885,9 +48012,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -47900,9 +48025,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -47915,16 +48038,14 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -47938,7 +48059,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -47954,7 +48074,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -48012,21 +48131,18 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -48216,7 +48332,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -48374,7 +48489,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -48388,7 +48502,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -48402,7 +48515,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -48416,7 +48528,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -48428,7 +48539,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -48442,7 +48552,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -48456,7 +48565,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -48470,7 +48578,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -48482,7 +48589,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -48494,7 +48600,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -48977,7 +49082,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -48989,7 +49093,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -49001,7 +49104,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -49013,7 +49115,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -49025,7 +49126,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -49037,7 +49137,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -49049,7 +49148,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -49061,7 +49159,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -49076,7 +49173,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -49721,7 +49817,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Sluit luik" @@ -49754,7 +49850,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Open luik" @@ -53299,7 +53395,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -53896,7 +53991,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -53909,7 +54005,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -53922,7 +54019,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -53936,7 +54034,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -54435,7 +54534,7 @@ msgstr[1] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -54680,7 +54779,7 @@ msgstr[1] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -54690,14 +54789,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -57267,7 +57366,7 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -65120,7 +65219,7 @@ msgstr[1] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -73010,8 +73109,8 @@ msgstr[1] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -73140,7 +73239,7 @@ msgstr[1] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -73159,7 +73258,7 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -74951,8 +75050,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -74960,7 +75058,6 @@ msgstr[1] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -75158,8 +75255,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -85965,6 +86061,20 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -90162,7 +90272,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -90176,7 +90285,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -90222,7 +90330,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -90257,7 +90364,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -90271,7 +90377,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -90878,7 +90983,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -90890,7 +90994,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -90902,7 +91005,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -90914,7 +91016,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -90995,7 +91096,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -91007,7 +91107,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -91021,7 +91120,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -91033,7 +91131,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -91045,7 +91142,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -91059,7 +91155,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -91095,7 +91190,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -91138,7 +91232,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -91180,7 +91273,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -91192,7 +91284,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -91205,7 +91296,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -91219,7 +91309,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -91233,7 +91322,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -91247,7 +91335,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -91264,7 +91351,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -91277,7 +91363,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -91290,7 +91375,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -91304,7 +91388,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -91318,7 +91401,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -91332,7 +91414,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -91657,7 +91738,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -91669,7 +91749,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "" @@ -92925,7 +93004,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -95881,7 +95960,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -96204,7 +96283,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -96378,7 +96457,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -96496,7 +96575,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -100623,14 +100702,12 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" msgstr[1] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -100644,7 +100721,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -100658,7 +100734,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -100672,7 +100747,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -100688,7 +100762,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -100703,7 +100776,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -100718,7 +100790,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -100733,7 +100804,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -104191,7 +104261,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -104205,7 +104274,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -104226,7 +104294,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -104239,7 +104306,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -104252,7 +104318,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -104354,7 +104419,6 @@ msgid "A roll of purple carpet." msgstr "Een opgerolde paarse tapijt." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -104368,7 +104432,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -104380,7 +104443,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -104393,7 +104455,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -104408,7 +104469,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -104422,7 +104482,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -104436,7 +104495,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -104451,7 +104509,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -104463,7 +104520,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -104478,14 +104534,12 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" msgstr[1] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -104501,7 +104555,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "" @@ -104515,7 +104568,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -104529,7 +104581,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "" @@ -104543,7 +104594,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -104555,7 +104605,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -104569,7 +104618,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -104581,7 +104629,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -104595,7 +104642,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -104607,7 +104653,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -104621,7 +104666,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -104657,7 +104701,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -104718,7 +104761,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -104787,7 +104829,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -104815,7 +104856,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -104830,8 +104870,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -104845,7 +104883,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -104859,7 +104896,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -104873,7 +104909,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -104887,7 +104922,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -104899,7 +104933,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -104911,7 +104944,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -104925,7 +104957,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -104938,8 +104969,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -104954,7 +104984,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -104969,7 +104998,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -104985,7 +105013,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -105000,7 +105027,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -105036,7 +105062,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -105053,7 +105078,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -105079,7 +105103,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -105093,7 +105116,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -105133,7 +105155,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -105149,7 +105170,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -105163,7 +105183,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -105177,7 +105196,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -105189,7 +105207,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -105201,7 +105218,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -105213,7 +105229,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -105228,7 +105243,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -105242,7 +105256,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -105268,7 +105281,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -105282,7 +105294,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -105368,7 +105379,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -105382,7 +105392,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -105409,7 +105418,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -105485,7 +105493,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -105499,7 +105506,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -105514,7 +105520,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -105529,7 +105534,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -105546,7 +105550,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -105562,7 +105565,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -105591,7 +105593,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -105605,7 +105606,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -105619,7 +105619,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -105645,7 +105644,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -105659,7 +105657,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -105674,7 +105671,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -105686,7 +105682,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -105738,7 +105733,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -105753,7 +105747,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -105765,7 +105758,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -105779,7 +105771,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -105864,7 +105855,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -105880,6 +105870,22 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -105888,7 +105894,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -105937,7 +105942,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -105970,7 +105974,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -105986,7 +105989,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -106001,7 +106003,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -106019,7 +106020,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -106047,7 +106047,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -106062,7 +106061,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -106077,7 +106075,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -106104,7 +106101,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -106118,9 +106114,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -106137,7 +106131,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -106153,7 +106146,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -106170,7 +106162,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -106202,7 +106193,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -106233,7 +106223,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -106264,7 +106253,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -106280,7 +106268,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -106362,7 +106349,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -106376,7 +106362,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -106400,7 +106385,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -106415,7 +106399,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -106430,7 +106413,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -106447,7 +106429,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -106464,7 +106445,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -106479,7 +106459,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -106495,7 +106474,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -107472,7 +107450,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -107486,7 +107463,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -107502,7 +107478,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -107518,7 +107493,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -107533,7 +107507,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -107548,7 +107521,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -107563,7 +107535,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -107579,7 +107550,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -107618,7 +107588,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -107648,7 +107617,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -107685,7 +107653,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -107713,7 +107680,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -107727,7 +107693,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -107783,7 +107748,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -107797,7 +107761,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -107828,7 +107791,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -107840,7 +107802,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -107852,7 +107813,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -107866,7 +107826,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -107880,7 +107839,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -107894,7 +107852,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -107912,7 +107869,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -107939,7 +107895,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -107967,7 +107922,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -107981,7 +107935,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -108024,7 +107977,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -108038,7 +107990,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -108051,7 +108002,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -108065,7 +108015,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -108095,7 +108044,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -108110,7 +108058,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -108135,7 +108082,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -108150,7 +108096,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -108193,7 +108138,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -108215,7 +108159,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -108239,7 +108182,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -108248,7 +108190,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -108263,7 +108205,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -108274,7 +108215,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -108326,7 +108267,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -108369,7 +108309,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -108531,7 +108470,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -108669,7 +108607,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -108711,7 +108648,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -108764,7 +108700,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -108772,7 +108708,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -108788,7 +108724,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -108800,7 +108736,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -108869,7 +108804,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -108912,7 +108846,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -108941,7 +108874,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -108953,7 +108885,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -108979,7 +108910,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -108994,7 +108924,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -109027,7 +108956,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -109041,7 +108969,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -109056,7 +108983,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -109078,7 +109004,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -109092,7 +109017,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -109106,7 +109030,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -109120,7 +109043,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -109137,7 +109059,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -109173,7 +109094,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -109210,7 +109130,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -109224,7 +109143,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -109262,7 +109180,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -109399,7 +109316,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -109437,7 +109353,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -109457,7 +109372,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -109483,7 +109397,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -109535,7 +109448,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -109572,7 +109484,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -109667,7 +109578,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -109714,7 +109624,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -109874,7 +109783,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -110005,7 +109913,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -110020,7 +109927,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -110035,7 +109941,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -110047,7 +109952,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -110059,7 +109963,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -110073,7 +109976,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -110087,7 +109989,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -110101,7 +110002,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -110140,7 +110040,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -110155,7 +110054,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -110193,7 +110091,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -110220,7 +110117,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -110234,7 +110130,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -110310,7 +110205,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -110328,7 +110222,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -110354,7 +110247,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -110369,7 +110261,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -110384,7 +110275,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -110412,7 +110302,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -110426,7 +110315,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -110438,7 +110326,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -110452,7 +110339,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -110466,7 +110352,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -110518,7 +110403,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -110533,7 +110417,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -110550,7 +110433,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -110564,7 +110446,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -110578,7 +110459,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -110593,7 +110473,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -110609,7 +110488,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -110627,7 +110505,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -110644,7 +110521,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -110658,7 +110534,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -110685,7 +110560,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -110701,7 +110575,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -110718,7 +110591,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -110736,7 +110608,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -110754,7 +110625,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -110774,7 +110644,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -110791,7 +110660,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -110848,7 +110716,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -110862,7 +110729,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -110874,7 +110740,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -110940,7 +110805,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -110952,7 +110816,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -110964,7 +110827,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -110979,7 +110841,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -110991,7 +110852,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -111006,7 +110866,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -111020,7 +110879,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -111035,7 +110893,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -111058,7 +110915,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -111074,8 +110930,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -111105,8 +110960,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -111122,7 +110976,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -111134,7 +110987,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -111146,7 +110998,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -111187,7 +111038,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -111213,7 +111063,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -111251,7 +111100,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -111265,7 +111113,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -111303,7 +111150,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -111323,7 +111169,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -111368,7 +111213,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -111387,7 +111231,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -111440,7 +111283,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -111468,7 +111310,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -111502,7 +111343,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -111523,7 +111363,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -111550,7 +111389,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -111587,7 +111425,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -111629,7 +111466,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -111656,7 +111492,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -111755,7 +111590,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -111767,7 +111601,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -111775,7 +111608,6 @@ msgstr[1] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -111912,7 +111744,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -111926,7 +111757,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -111940,7 +111770,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -111954,7 +111783,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -111969,7 +111797,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -111981,7 +111808,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -111995,7 +111821,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -112010,7 +111835,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -112024,7 +111848,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -112037,7 +111860,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -112051,7 +111873,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -112066,7 +111887,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -112092,7 +111912,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -112121,7 +111940,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -112135,7 +111953,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -112149,7 +111966,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -112161,7 +111977,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -112175,7 +111990,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -112187,7 +112001,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -112202,7 +112015,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -112216,7 +112028,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -112232,7 +112043,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -112247,7 +112057,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -112261,7 +112070,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -112275,7 +112083,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -112289,7 +112096,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -112320,7 +112126,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -112334,7 +112139,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -112348,7 +112152,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -112365,7 +112168,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -112377,7 +112179,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -112391,7 +112192,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -112405,7 +112205,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -112420,7 +112219,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -112447,7 +112245,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -112461,7 +112258,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -112475,7 +112271,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -112490,7 +112285,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -112520,7 +112314,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -112534,7 +112327,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -112563,7 +112355,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -112577,7 +112368,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -112591,7 +112381,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -112605,7 +112394,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -112621,7 +112409,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -112635,7 +112422,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -112650,7 +112436,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -113880,6 +113665,17 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -114209,7 +114005,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -114625,6 +114420,13 @@ msgstr[1] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -114948,6 +114750,30 @@ msgstr[1] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -115778,13 +115604,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -116104,13 +115923,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -116664,7 +116476,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -116688,7 +116500,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Pijn" @@ -120563,7 +120375,7 @@ msgstr[1] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -120571,7 +120383,7 @@ msgstr[1] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -130379,9 +130191,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -131114,9 +130926,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -131132,9 +130944,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -131162,25 +130974,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -131200,9 +131012,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -137439,7 +137251,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -147106,17 +146918,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -148316,7 +148128,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -154003,9 +153815,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -162916,7 +162728,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "In een bos" @@ -163284,7 +163095,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -163306,7 +163117,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "bos" @@ -166059,7 +165869,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -166106,7 +165915,7 @@ msgstr "WAPEN" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "ALLE" @@ -166231,6 +166040,13 @@ msgstr "ELEKTRONISCH" msgid "CBMS" msgstr "CBM'S" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "GEREEDSCHAPPEN" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -166244,7 +166060,7 @@ msgstr "BELICHTING" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -166285,7 +166101,7 @@ msgstr "MEDISCH" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "MATERIALEN" @@ -176022,7 +175838,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -176101,6 +175917,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -177819,6 +177642,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -177888,7 +177729,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Fiets" @@ -177956,6 +177797,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -178101,8 +177946,8 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Opvouwbare rolstoel" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -178444,7 +178289,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -185130,7 +184974,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -185138,8 +184982,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -186063,9 +185907,9 @@ msgstr[1] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -186078,7 +185922,7 @@ msgstr[1] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -203056,74 +202900,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -203133,177 +202909,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -204516,115 +204121,134 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -204632,157 +204256,213 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" msgstr[1] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" msgstr[1] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -204790,25 +204470,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -204816,25 +204496,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -204842,7 +204522,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -204850,7 +204530,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -204860,7 +204540,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -204870,7 +204550,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -204880,7 +204560,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -204890,7 +204570,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -204899,7 +204579,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -204908,7 +204588,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -204918,7 +204598,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -204927,18 +204607,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -204947,7 +204627,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -204955,18 +204635,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -204976,7 +204656,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -204985,18 +204665,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -205004,25 +204684,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -205030,59 +204710,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205091,7 +204803,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205100,25 +204812,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205130,7 +204842,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205141,25 +204853,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205169,7 +204881,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205179,588 +204891,640 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -205772,245 +205536,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -206018,808 +205755,872 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" msgstr[1] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -206827,20 +206628,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -206848,74 +206649,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -206923,21 +206724,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -206945,105 +206746,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -207051,16 +206876,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -207068,74 +206893,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -207143,357 +206968,357 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -207501,175 +207326,99 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -207677,113 +207426,84 @@ msgstr[1] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -207791,14 +207511,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -207806,39 +207526,39 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -207846,13 +207566,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -207860,13 +207580,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -207874,114 +207594,90 @@ msgstr[1] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -207989,12 +207685,12 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -208002,66 +207698,66 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -208069,19 +207765,19 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -208089,13 +207785,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -208103,13 +207799,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -208117,13 +207813,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -208131,70 +207827,70 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -208202,12 +207898,12 @@ msgstr[1] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -208215,313 +207911,278 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" msgstr[1] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -208530,4326 +208191,4913 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" msgstr[1] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -212858,7 +213106,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -212866,14 +213114,14 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -212881,40 +213129,40 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -212923,83 +213171,83 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" msgstr[1] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -213007,39 +213255,115 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -213050,31 +213374,31 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -213084,14 +213408,14 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -213100,62 +213424,63 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" msgstr[1] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" msgstr[1] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" msgstr[1] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -213164,25 +213489,25 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -213191,204 +213516,249 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" msgstr[1] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" msgstr[1] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" msgstr[1] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" msgstr[1] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" msgstr[1] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -213396,222 +213766,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -213619,48 +213989,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -213668,12 +214038,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -213681,12 +214051,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -213694,103 +214064,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -213799,276 +214169,296 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" msgstr[1] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" msgstr[1] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -220365,6 +220755,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -220557,10 +220951,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -226557,6 +226947,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -226625,6 +227016,10 @@ msgstr "AAN" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -227467,6 +227862,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -243057,7 +243456,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -249023,7 +249427,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -254166,10 +254576,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -258363,7 +258774,7 @@ msgstr "" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -265959,6 +266370,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -266100,6 +266516,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -266692,11 +267118,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/pl_PL.po b/lang/po/pl_PL.po index ff4328f981d4..ba3e6e236b54 100644 --- a/lang/po/pl_PL.po +++ b/lang/po/pl_PL.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Polish (Poland) (https://app.transifex.com/bn-team/teams/113585/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -7996,6 +7996,17 @@ msgstr "" msgid "You can see through everything!" msgstr "Możesz widzieć przez każdą przeszkodę!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "Zażyłeś Xanax" @@ -11419,7 +11430,7 @@ msgstr "Włącz" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "Wyłącz" @@ -11867,75 +11878,91 @@ msgstr "MAGAZYNKI" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "AMUNICJA" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "BRONIE" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "NARZĘDZIA" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "ELEKTRONIKA" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "UBRANIA" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "ŻYWNOŚĆ" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "NARKOTYKI" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "KSIĄŻKI" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "MAPY" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MODY" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "MUTAGENY" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "BIONIKA" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "CZĘŚCI POJAZDÓW" @@ -11949,51 +11976,89 @@ msgstr "CZĘŚCI POJAZDÓW" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "INNE" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "PALIWO" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "NASIONA" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "CHEMIA" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "BATERIE" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "CZĘŚCI ZAMIENNE" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "KAMIENIE" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "POJEMNIKI" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "ARTEFAKTY" +#: data/json/item_category.json +msgid "MAPS" +msgstr "MAPY" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "PRZEDMIOTY NOSZONE" @@ -12738,12 +12803,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12785,6 +12850,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "Bez Auto Podnoszenia" @@ -13258,7 +13494,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Eskrima" @@ -13296,7 +13532,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Szermierka" @@ -13333,7 +13569,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -13508,7 +13744,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Krav Maga" @@ -13630,7 +13866,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "Średniowieczna Sztuka Władania Mieczem" @@ -13705,7 +13941,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Ninjutsu" @@ -13887,7 +14123,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Silat" @@ -15077,7 +15313,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "zarysowany" @@ -15086,22 +15322,22 @@ msgid "gouged" msgstr "wyżłobiony" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "podrapany" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "pocięty" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "spękany" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "potłuczony" @@ -15114,7 +15350,7 @@ msgid "bent" msgstr "pogięty" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "rozbity" @@ -15126,7 +15362,7 @@ msgstr "zniszczony" msgid "Biosilicified Chitin" msgstr "Biosylifikowana Chityna" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "ukruszony" @@ -15139,7 +15375,7 @@ msgid "Brass" msgstr "Mosiądz" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "poznaczony" @@ -15157,7 +15393,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "podarty" @@ -15166,12 +15402,12 @@ msgid "torn" msgstr "rozdarty" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "postrzępiony" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "obszarpany" @@ -15231,7 +15467,7 @@ msgstr "Ciało" msgid "bruised" msgstr "stłuczony" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "pocięty" @@ -15656,7 +15892,7 @@ msgstr "automatyczny" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -20449,12 +20685,12 @@ msgstr "" "Teraz zamiast narzekać na paskarskie ceny, twoi klienci próbują wyjeść ci " "mózg. Nie możesz się zdecydować co jest gorsze." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Kapłan" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Kapłanka" @@ -20485,18 +20721,18 @@ msgstr "" " parafii, ale wygląda na to że modły nie wystarczyły. Teraz gdy wszyscy nie " "żyją, powinnaś prawdopodobnie znaleźć coś bardziej namacalnego do obrony." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Kannushi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Kannushi" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20508,7 +20744,7 @@ msgstr "" "gnijące ciała." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20519,12 +20755,12 @@ msgstr "" "czynności. Wolałaś jak tylko duchy zmarłych nawiedzały świątynie, a nie ich " "gnijące ciała." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "Imam" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "Morchidat" @@ -20557,18 +20793,18 @@ msgstr "" "przybywali zewsząd by słuchać twoich słów, teraz przybywają by wyżreć ci " "mózg." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "Rabbi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "Rabbi" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -20576,19 +20812,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "Guru" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "Guru" @@ -20617,12 +20853,12 @@ msgstr "" "Normalnie masz odpowiedź na każde pytanie, ale nawet ty nie jesteś pewna co " "zrobić z tymi krwiożerczymi zombie." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "Kaznodzieja" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "Kaznodziejka" @@ -21468,15 +21704,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "Skejt" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "Skejterka" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -21486,7 +21722,7 @@ msgstr "" "Uwielbiasz jeździć na desce! Przynajmniej teraz dorośli nie mówią ci gdzie " "nie wolno jeździć." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -21496,6 +21732,34 @@ msgstr "" "Uwielbiasz jeździć na desce! Przynajmniej teraz dorośli nie mówią ci gdzie " "nie wolno jeździć." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -28997,7 +29261,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "zakrzywiona igła" @@ -29116,7 +29379,6 @@ msgstr "wyciąganie pocisków" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "kowadło" @@ -29186,7 +29448,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "folia bąbelkowa" @@ -29209,7 +29470,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "łóżko polowe" @@ -29219,7 +29479,6 @@ msgstr[3] "łóżko polowe" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "lejek" @@ -29229,7 +29488,6 @@ msgstr[3] "lejek" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "improwizowany lejek" @@ -29250,8 +29508,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "pułapka na niedźwiedzia" @@ -29286,7 +29543,6 @@ msgid "tripwire" msgstr "potykacz" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -29295,7 +29551,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "pułapka z kuszą" @@ -29342,7 +29597,6 @@ msgid "Swinnng!" msgstr "Swinnng!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "mina lądowa" @@ -29362,7 +29616,6 @@ msgid "buried land mine" msgstr "zakopana mina lądowa" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "podest teleportacyjny" @@ -29409,7 +29662,6 @@ msgid "ledge" msgstr "krawędź" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "mina pułapka" @@ -29423,7 +29675,6 @@ msgstr "dół ze szkłem" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "skórzany lejek" @@ -29433,7 +29684,6 @@ msgstr[3] "skórzany lejek" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -29447,7 +29697,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "metalowy lejek" @@ -29814,7 +30063,8 @@ msgstr "" msgid "Thunder Storm" msgstr "Burza" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Burza z Piorunami" @@ -29858,6 +30108,21 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -29939,7 +30204,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "zgrzyt metalu!" @@ -29969,7 +30235,8 @@ msgstr "zgrzyt metalu!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "klang!" @@ -30319,7 +30586,6 @@ msgstr "Mógłbyś wyprać swoje rzeczy gdyby jeszcze w gniazdkach był prąd." #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -30434,8 +30700,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "whack!" @@ -30694,7 +30961,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "crunch!" @@ -30722,7 +30989,7 @@ msgstr "crunch!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "whump." @@ -30855,7 +31122,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -30917,7 +31183,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -31248,7 +31513,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "tłuczonego szkła!" @@ -31335,7 +31600,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -31362,7 +31627,7 @@ msgstr "smash!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "whump!" @@ -31533,7 +31798,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "thump." @@ -31872,7 +32137,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "krasz!" @@ -31891,7 +32156,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "koksownik" @@ -31906,7 +32170,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "kuchenka menela" @@ -31923,7 +32186,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -31947,7 +32209,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -32111,7 +32372,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "słonecznik" @@ -32990,7 +33250,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "oczyszczacz do wody" @@ -33412,7 +33671,6 @@ msgstr "taboret" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -33560,7 +33818,6 @@ msgstr "łup." #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -33589,7 +33846,6 @@ msgstr "rrrrip!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -34155,9 +34411,21 @@ msgstr "" "Solidny stół warsztatowy zbudowany z metalu. Jest idealny do tworzenia " "dużych i ciężkich przedmiotów." +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "skórzana płachta" @@ -34198,7 +34466,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "pleciona mata" @@ -34219,7 +34486,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "stół turystyczny" @@ -34731,7 +34997,6 @@ msgstr "Używany w metalurgii." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "destylarnia" @@ -34750,7 +35015,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "piec do węgla drzewnego" @@ -34770,7 +35034,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "wypełniony piec do węgla drzewnego" @@ -34844,7 +35107,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -34886,7 +35148,6 @@ msgstr "Piec opracowany do wypalania ceramiki i cegieł." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "składana drabinka" @@ -36514,7 +36775,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "thump" @@ -36934,7 +37195,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "piasek" @@ -37208,7 +37468,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "beton" @@ -38987,7 +39246,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -39632,7 +39890,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -40757,7 +41014,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "solidna skała" @@ -41739,7 +41995,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "pokrywa studzienki" @@ -41918,6 +42173,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -41993,7 +42284,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "JEŻELI TO WIDZISZ TO NAPOTKAŁEŚ BŁĄD." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "nić" @@ -42008,7 +42298,6 @@ msgstr "" "Nieduża ilość nici, której można użyć do uzupełnienia zestawu do szycia." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "ścięgno" @@ -42022,7 +42311,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Wytrzymałe ścięgna wycięte z ciała, mogą zastąpić nici." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "włókno roślinne" @@ -42038,7 +42326,6 @@ msgstr "" "nici." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "przędza" @@ -42066,7 +42353,6 @@ msgid "A cleansing agent made into bars." msgstr "Środek do czyszczenia w formie kostek." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "taśma klejąca" @@ -42081,7 +42367,6 @@ msgstr "" "Rolka niezwykle wytrzymałej taśmy klejącej. Jej zastosowania są niezliczone." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -42095,7 +42380,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Te cienkie kawałki papieru służą do zwijania papierosów." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -42154,7 +42438,6 @@ msgstr[2] "rozwodniona zawiesina plutonu" msgstr[3] "rozwodniona zawiesina plutonu" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -42462,7 +42745,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "Kawałek przydatnej gumy, można łatwo formować." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -42520,7 +42802,6 @@ msgstr "" " w filtrach by usunąć zanieczyszczenia z powietrza i wody." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "przedmieszka węglika wapnia" @@ -42793,7 +43074,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Mieszanka tlenu i azotu w proporcjach odpowiednich do nurkowania." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "rozpałka" @@ -42833,7 +43113,6 @@ msgid "A metal die used to play various role-playing games" msgstr "Metalowa kostka używana do grania w różne gry fabularne." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "brąz" @@ -43190,7 +43469,6 @@ msgstr "ferromagnetyczny pocisk szynowy" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "UPS" @@ -45535,7 +45813,6 @@ msgstr "" "ludzi, lub utlenić, aby uzyskać środki wybielające papier." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "kawałek siarki" @@ -45551,7 +45828,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "cement" @@ -45571,7 +45847,6 @@ msgstr "" "Wystarczy dodać wodę." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "wapień" @@ -45588,7 +45863,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "wapno palone" @@ -45619,7 +45893,6 @@ msgstr "" "przeciwnym wypadku nadaje się tylko do produkcji cementu." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "gleba" @@ -45654,7 +45927,6 @@ msgstr "" "alkaliczne właściwości mogą być użyteczne." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "sól kamienna" @@ -45668,7 +45940,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "Garść kryształów soli kamiennej. Można przetworzyć w sól kuchenną." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -45684,7 +45955,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -46181,7 +46451,6 @@ msgstr "" "podstawowym składnikiem prochu strzelniczego i prostych paliw rakietowych." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "saletra potasowa" @@ -46199,7 +46468,6 @@ msgstr "" " w azotan potasu." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -46675,7 +46943,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "stalowy grill" @@ -46736,7 +47003,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "Mały pellet rozszczepialnego materiału. Operuj nim ostrożnie." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -48691,7 +48957,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -48706,7 +48971,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -48878,7 +49142,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "futro" @@ -48892,7 +49155,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "Małe futro zwierzęce. Można z niego uszyć ciepły ubiór." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "sztuczne futro" @@ -48908,7 +49170,6 @@ msgstr "" "stworzenia odzieży." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "skórzana łata" @@ -48922,7 +49183,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "Mała łata skórzana. Można jej użyć do uszycia wytrzymałego ubioru." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "łata filcu" @@ -48936,7 +49196,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "Mała łata z filcu. Można ją rozłożyć na włókno wełny." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "łata Nomexu" @@ -48950,7 +49209,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "Mała łata ogniotrwałego Nomexu." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -48964,7 +49222,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Tubka silnego kleju. Używany w wielu recepturach rzemieślniczych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "klej z kości" @@ -49003,7 +49260,6 @@ msgid "A token, representing fertilization of a plant." msgstr "Znacznik, reprezentujący nawożenie rośliny." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "stalowy łańcuch" @@ -49021,7 +49277,6 @@ msgstr "" "Ma szansę owinąć się wokół celu, pozwalając na dodatkowy atak wręcz." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "kawałki chityny" @@ -49035,7 +49290,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "Kawałek egzoszkieletu owada. Lekki i bardzo wytrzymały." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -49070,7 +49324,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "kawałek biosylifikowanej chityny" @@ -49089,7 +49342,6 @@ msgstr "" "kwasoodporny i niezwykle solidny." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "zwitek szmat" @@ -49105,7 +49357,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "zwitek skór" @@ -49124,7 +49375,6 @@ msgstr "" "rozpakować." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "zwitek filcu" @@ -49222,7 +49472,6 @@ msgstr "" "jakaś skamielina." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "pendrive USB" @@ -49236,7 +49485,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "Pendrive USB. Przydatny do przechowywania oprogramowania." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -49252,7 +49500,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -49269,7 +49516,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "świecznik" @@ -49332,7 +49578,6 @@ msgstr "" "nią rzucać. Trzymanie jej bez mocnych rękawic nie jest najlepszym pomysłem." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "czop do drzew" @@ -49352,7 +49597,6 @@ msgstr "" " zimą a wczesną wiosną by uzyskać żywicę klonową." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "drut" @@ -49370,7 +49614,6 @@ msgstr "" "jest w siatkach drucianych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "drut kolczasty" @@ -49384,7 +49627,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "Kawałek sztywnego drutu pokrytego ostrymi kolcami." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -49401,7 +49643,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "pręt zbrojeniowy" @@ -49474,7 +49715,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "To wypalona, zużyta flara magnezowa. W zasadzie to śmieć." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "sprężyna" @@ -49542,7 +49782,6 @@ msgstr "" "rozstawiony." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "element grzewczy" @@ -49556,7 +49795,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "Element grzewczy stosowanych w kuchenkach turystycznych i czajnikach." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -49571,7 +49809,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "telewizor" @@ -49585,7 +49822,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "zapalnik do gazu" @@ -49633,7 +49869,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "toster" @@ -49649,7 +49884,6 @@ msgstr "" " na części." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "kuchenka mikrofalowa" @@ -49667,7 +49901,6 @@ msgstr "" "części zamienne." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "laptop" @@ -49680,9 +49913,7 @@ msgstr[3] "laptop" msgid "A broken laptop, basically a paperweight now." msgstr "Popsuty laptop, obecnie przycisk do papieru." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "zepsuty okobot" @@ -49700,9 +49931,7 @@ msgstr "" "Zepsuty okobot. O wiele mniej groźny teraz, gdy nie może już wezwać " "wsparcia. Można wypruć z niego części." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "zepsuty smyrgobot" @@ -49720,7 +49949,6 @@ msgstr "" "Można wypruć z niego części." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -49736,7 +49964,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "zepsuty bot policyjny" @@ -49754,7 +49981,6 @@ msgstr "" "ruchu. Można wypruć z niego części." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -49770,7 +49996,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -49793,7 +50018,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -49809,7 +50033,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "zepsuty bot kontroli tłumu" @@ -49827,7 +50050,6 @@ msgstr "" "gaz. Można wypruć z niego części." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -49842,9 +50064,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "zepsuty bot górniczy" @@ -49863,7 +50083,6 @@ msgstr "" "niczego przewiercić. Można wypruć z niego części." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -49879,7 +50098,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" @@ -49888,7 +50106,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" @@ -49897,7 +50114,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -49914,7 +50130,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -49931,9 +50146,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "zepsuty młynek" @@ -49952,9 +50165,7 @@ msgstr "" "Zepsuty młynek. O wiele mniej groźny teraz, gdy leży bez ruchu na ziemi. " "Można wypruć z niego części." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "zepsuty młynek-granat" @@ -49972,9 +50183,7 @@ msgstr "" "Zepsuty młynek-granat. O wiele mniej groźny teraz, gdy leży bez ruchu na " "ziemi. Można wypruć z niego części." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "zepsuty młynek miniatomówka" @@ -49992,9 +50201,7 @@ msgstr "" "Zepsuty młynek miniatomowówka. Sam widok wraku przyprawia cię o dreszcze. " "Można wypruć z niego części." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "zepsuty młynek gazem łzawiącym" @@ -50012,9 +50219,7 @@ msgstr "" "Zepsuty młynek z gazem łzawiącym. O wiele mniej groźny teraz, gdy leży bez " "ruchu na ziemi. Można wypruć z niego części." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "zepsuty młynek EMP" @@ -50032,9 +50237,7 @@ msgstr "" "Zepsuty młynek EMP. O wiele mniej groźny teraz, gdy leży bez ruchu na ziemi." " Można wypruć z niego części." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "zepsuty młynek ogłuszający" @@ -50052,9 +50255,7 @@ msgstr "" "Zepsuty młynek ogłuszający. O wiele mniej groźny teraz, gdy leży bez ruchu " "na ziemi. Można wypruć z niego części." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "zepsuty młynek C-4" @@ -50104,7 +50305,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "płyta procesora" @@ -50119,7 +50319,6 @@ msgstr "" "Jednostka centralnego procesora, użyteczna w zaawansowanej elektronice." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "RAM" @@ -50133,7 +50332,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "Płytka z pamięcią operacyjną, użyteczna w zaawansowanej elektronice." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "konwerter mocy" @@ -50149,7 +50347,6 @@ msgstr "" "elektronicznych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "obwody wzmacniacza" @@ -50167,7 +50364,6 @@ msgstr "" "elektronicznych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "obwody transpondera" @@ -50185,7 +50381,6 @@ msgstr "" "sprzętu komunikacyjnego." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "odbiornik sygnału" @@ -50203,7 +50398,6 @@ msgstr "" "projektach sprzętu komunikacyjnego." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -50219,7 +50413,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "mały ekran LCD" @@ -50237,7 +50430,6 @@ msgstr "" "niektórych projektach elektronicznych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "soczewki wysokiej jakości" @@ -50256,7 +50448,6 @@ msgstr "" "światła. Mogą się przydać do rozpalenia ognia." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "małe soczewki wysokiej jakości" @@ -50275,7 +50466,6 @@ msgstr "" " światła. Mogą się przydać w rzemieślnictwie." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "para przyciemnianych szkieł" @@ -50293,7 +50483,6 @@ msgstr "" "przeciwsłonecznych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "wypalona bionika" @@ -50350,7 +50539,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "antena" @@ -50365,7 +50553,6 @@ msgstr "" "Prosty cienki aluminiowy pręt. Użyteczny w wielu projektach elektronicznych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "mikro silnik" @@ -50383,7 +50570,6 @@ msgstr "" "samochodach. Użyteczny w wielu projektach elektronicznych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "płyta drukowana" @@ -50401,7 +50587,6 @@ msgstr "" "elektronicznych na nieprzewodzącym podkładzie." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "złom elektroniczny" @@ -50435,7 +50620,6 @@ msgstr "" "sygnału." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "wiatrak biurkowy" @@ -50449,7 +50633,6 @@ msgid "A small fan, used to propel air around a room." msgstr "Mały wiatrak, powodujący ruch powietrza w pomieszczeniu." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "ceramiczne płyty zbrojne" @@ -50481,7 +50664,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "szmata" @@ -50520,7 +50702,6 @@ msgid "" msgstr "Duża szmata, całą we krwi. Można ją oczyścić wrzącą wodą." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -50537,7 +50718,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "zegar" @@ -50565,7 +50745,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "Kolekcja trybików i innych bebechów zegarka." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "karta pamięci SD" @@ -50579,7 +50758,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "Karta pamięci, używana. Może warto rzucić na nią okiem." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "karta pamięci SD (czysta)" @@ -50598,7 +50776,6 @@ msgstr "" "zapisywać dane!" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "karta pamięci SD (zaszyfrowana)" @@ -50617,7 +50794,6 @@ msgstr "" " coś wartego zaszyfrowania." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "Naukowa karta pamięci SD" @@ -50655,7 +50831,6 @@ msgstr "" "do kanałów. Podniesienie go ze studzienki jest niemożliwe bez łomu." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "konar sosny" @@ -50673,7 +50848,6 @@ msgstr "" "połyskują kłujące igły." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "szyszka sosnowa" @@ -50716,7 +50890,6 @@ msgstr "" " zjedzone przez zwierzęta." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -50732,7 +50905,6 @@ msgstr "" "Białe kwiaty rumianku, stosowane jako środek ziołowy od czasów starożytnych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" @@ -50741,7 +50913,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -50757,7 +50928,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "bryła gliny" @@ -50771,7 +50941,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "Świeża bryła gliny. Przydatna w wytwarzaniu pewnych rzeczy." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "cegła" @@ -50785,7 +50954,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "Utwardzony w ogniu blok używany w konstrukcjach murarskich." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "zaprawa murarska" @@ -50799,7 +50967,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Zaprawa murarska, gotowa do użycia w projektach budowlanych." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "miękka cegła suszona na słońcu" @@ -50825,7 +50992,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "cegła suszona na słońcu" @@ -50843,7 +51009,6 @@ msgstr "" "utwardzić się w cegłę." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -50859,7 +51024,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -50873,7 +51037,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "kora brzozy" @@ -50887,7 +51050,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "Płat twardej wodoodpornej kory z drzewa brzozy." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -50903,7 +51065,6 @@ msgid "" msgstr "Płat kory z drzewa wierzby. Używana w produkcji aspiryny." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "diament" @@ -50917,7 +51078,6 @@ msgid "A sparkling diamond." msgstr "Błyszczący diament." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -50931,7 +51091,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -50945,7 +51104,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -50959,7 +51117,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -50973,7 +51130,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -50987,7 +51143,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -51001,7 +51156,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -51015,7 +51169,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -51029,7 +51182,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -51043,7 +51195,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -51057,7 +51208,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -51071,7 +51221,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -51085,7 +51234,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -51099,7 +51247,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "wędzona skóra" @@ -51116,7 +51263,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "wędzone futro" @@ -51163,7 +51309,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "Stara lalka z siana. Reprezentuje kobietę w sukni." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "poduszka" @@ -51177,7 +51322,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Poduszka pod głowę na czas snu." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "dakimakura" @@ -51195,7 +51339,6 @@ msgstr "" "skąpo ubranej wersji z tyłu." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "poduszka puchowa" @@ -51209,7 +51352,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "Puszysta poduszka pod głowę na czas snu." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "pluszowy miś" @@ -51233,7 +51375,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "zwitek banknotów" @@ -51294,7 +51435,7 @@ msgstr[3] "cygara" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "Zgaś" @@ -51436,7 +51577,6 @@ msgstr "" " palić." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "karta płatnicza" @@ -51471,7 +51611,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "srebrna karta lojalnościowa" @@ -51485,7 +51624,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Ta karta daje ci mały rabat przy kupowaniu benzyny." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "złota karta lojalnościowa" @@ -51499,7 +51637,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Ta karta daje ci dobry rabat przy kupowaniu benzyny." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "platynowa karta lojalnościowa" @@ -51513,7 +51650,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "Ta karta daje ci doskonały rabat przy kupowaniu benzyny." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "identyfikator naukowca" @@ -51533,7 +51669,6 @@ msgstr "" "znajdziesz." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "identyfikator wojskowy" @@ -51553,7 +51688,6 @@ msgstr "" "znajdziesz." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "przemysłowa karta ID" @@ -51573,7 +51707,6 @@ msgstr "" "kontrolnego, jeśli taki znajdziesz." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -51639,7 +51772,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "żarówka" @@ -51666,7 +51798,6 @@ msgid "A twisted shard of jagged metal." msgstr "Pogięty kawałek ostrego metalu." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "gliniana doniczka" @@ -51680,7 +51811,6 @@ msgid "A nice looking clay pot used for planting." msgstr "Ładnie wyglądająca gliniana doniczka używana do sadzenia." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "plastikowa doniczka" @@ -51844,7 +51974,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -51859,9 +51988,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "zepsuta wieżyczka" @@ -51876,9 +52003,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "zepsuta wieżyczka kontroli tłumu" @@ -51893,9 +52018,8 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "zepsuta wieżyczka laserowa" @@ -51904,7 +52028,6 @@ msgstr[2] "zepsuta wieżyczka laserowa" msgstr[3] "zepsuta wieżyczka laserowa" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -51920,7 +52043,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -51938,7 +52060,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -52004,7 +52125,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -52013,7 +52133,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -52022,7 +52141,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -52243,7 +52361,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "stroik świąteczny" @@ -52423,7 +52540,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -52439,7 +52555,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -52455,7 +52570,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -52471,7 +52585,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -52485,7 +52598,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -52501,7 +52613,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -52517,7 +52628,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "rdzeń SI" @@ -52533,7 +52643,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -52547,7 +52656,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -52561,7 +52669,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -53112,7 +53219,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "różne oprogramowanie" @@ -53127,7 +53233,6 @@ msgstr "" "Przeróżne komputerowe programy hobbystyczne. Prawdopodobnie bezużyteczne." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "hackPRO" @@ -53141,7 +53246,6 @@ msgid "A piece of hacking software." msgstr "Program hakerski." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "MediSoft" @@ -53155,7 +53259,6 @@ msgid "A piece of medical software." msgstr "Oprogramowanie medyczne." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MatheMAX" @@ -53169,7 +53272,6 @@ msgid "A piece of mathematical software." msgstr "Oprogramowanie matematyczne." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "dane o infekcji" @@ -53183,7 +53285,6 @@ msgid "Medical data on zombie blood." msgstr "Dane medyczne o krwi zombie." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "dane laboratoryjne" @@ -53197,7 +53298,6 @@ msgid "Research archives from a government laboratory." msgstr "Archiwa naukowe z laboratorium rządowego." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "dane pociągów" @@ -53211,7 +53311,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "Dane logistyczne o podziemnych liniach kolejowych i rozkładach jazdy." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -53228,7 +53327,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -53974,7 +54072,7 @@ msgstr[3] "atomowych czołówek" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Zamknij pokrywę" @@ -54009,7 +54107,7 @@ msgstr[3] "atomowych czołówek (zakryte)" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Otwórz pokrywę" @@ -58483,7 +58581,6 @@ msgstr "" "podobnej broni. Można jej też użyć w wytwarzaniu amunicji." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -59207,7 +59304,8 @@ msgstr "" "zwiększonej wagi i nieznacznego zmniejszenia elastyczności. Ma cztery " "ładownice do noszenia magazynków." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "kołczan" @@ -59224,7 +59322,8 @@ msgstr "" "Skórzany kołczan noszony na pasie, w którym zmieści się 20 strzał. Aktywuj " "by schować w nim strzały." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "kołczan z brzozy" @@ -59241,7 +59340,8 @@ msgstr "" "Duży kołczan ze zszytych ze sobą płatów kory brzozowej, noszony na biodrze, " "który pomieści 20 strzał. Aktywuj by schować w nim strzały." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "duży kołczan" @@ -59261,7 +59361,8 @@ msgstr "" "rzadziej piechotę, ale oni nie walczyli z zombie. Aktywuj by schować w nim " "strzały." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "duży kołczan z brzozy" @@ -59862,7 +59963,7 @@ msgstr[3] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Chowasz swój %s do pochwy" @@ -60157,7 +60258,7 @@ msgstr[3] "skórzany pas" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "Wkładasz swój %s w swój %s" @@ -60167,14 +60268,14 @@ msgstr "Wkładasz swój %s w swój %s" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "Włożyć co za pas?" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "Skórzany pas. Użyteczny by dopasować parę spodni." @@ -63335,7 +63436,7 @@ msgstr[3] "rękawice ocalonych" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -72669,7 +72770,7 @@ msgstr[3] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "Schowaj ostrze" @@ -82212,8 +82313,8 @@ msgstr[3] "bazowa wyrzutnia" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "pojedynczy" @@ -82380,7 +82481,7 @@ msgstr[3] "bazowa strzelba" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -82403,7 +82504,7 @@ msgstr[2] "strzelb typu pump action" msgstr[3] "strzelby typu pump action" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "czuk czuk." @@ -84611,8 +84712,7 @@ msgstr "" " prawidłowo." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "krew" @@ -84622,7 +84722,6 @@ msgstr[3] "krew" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Krew, prawdopodobnie ludzka. Obrzydliwe." @@ -84860,8 +84959,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -98176,6 +98274,22 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -103168,7 +103282,6 @@ msgid "generic item template" msgstr "ogólny szablon produktu" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -103184,7 +103297,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -103234,7 +103346,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -103271,7 +103382,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -103287,7 +103397,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -104007,7 +104116,6 @@ msgstr[2] "ogólnych garnków do gotowania" msgstr[3] "ogólnych garnków do gotowania" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "ceramiczny talerz" @@ -104021,7 +104129,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "Ceramiczny talerz obiadowy, nijaki pod każdym względem." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "ceramiczna miska" @@ -104035,7 +104142,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "Doskonale zwykła ceramiczna miska do zupy." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "ceramiczna filiżanka" @@ -104049,7 +104155,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "Lekka ceramiczna filiżanka. Całkiem elegancka." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "kubek do kawy" @@ -104132,7 +104237,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "talerz z cyny" @@ -104146,7 +104250,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -104162,7 +104265,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "cynowa misa" @@ -104176,7 +104278,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "szklanka" @@ -104190,7 +104291,6 @@ msgid "A tall drinking glass." msgstr "Wysoka szklanka do picia." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "kieliszek do wina" @@ -104208,7 +104308,6 @@ msgstr "" "z niego." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "szklana miska" @@ -104250,7 +104349,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -104295,7 +104393,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -104339,7 +104436,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "garnek" @@ -104353,7 +104449,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "Dobry do gotowania wody, spaghetti i innych rzeczy." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "żeliwny garnek" @@ -104368,7 +104463,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "miedziany garnek" @@ -104386,7 +104480,6 @@ msgstr "" "pokrytej cyną, zapobiegającej uwalnianiu miedzi do kwaśnych potraw." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -104402,7 +104495,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -104418,7 +104510,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "garnek do weków" @@ -104442,7 +104533,6 @@ msgstr "" " wieczka." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "żeliwna patelnia" @@ -104459,7 +104549,6 @@ msgstr "" "gotować." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "stalowa patelnia" @@ -104474,7 +104563,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "miedziana patelnia" @@ -104490,7 +104578,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "improwizowany garnek" @@ -104509,7 +104596,6 @@ msgstr "" " właściwy sprzęt kuchenny." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "improwizowany miedziany garnek" @@ -104528,7 +104614,6 @@ msgstr "" " właściwy sprzęt kuchenny." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -104915,7 +105000,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -104929,7 +105013,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "długi sznurek" @@ -106490,7 +106573,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "podwójny" @@ -110122,7 +110205,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "podlufowe" @@ -110501,7 +110584,7 @@ msgstr "" "lufy. Poprawia odrzut kosztem głośności i lekko zmniejszonej celności." #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "wylot lufy" @@ -110711,7 +110794,7 @@ msgstr "" "broni palnej. Pozwala na strzelanie bełtami." #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "szyna akcesoryjna" @@ -110860,7 +110943,7 @@ msgstr "" "zajmuje trochę dłużej." #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "celowniki" @@ -115841,7 +115924,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -115850,7 +115932,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "nóż rzeźniczy" @@ -115868,7 +115949,6 @@ msgstr "" "cięcia ciał." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "nóż do steków" @@ -115885,7 +115965,6 @@ msgstr "" "Ostry nóż do cięcia mięsa. Słaby jako broń, ale przyzwoity do cięcia ciał." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -115901,7 +115980,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "nóż szefa kuchni" @@ -115924,7 +116002,6 @@ msgstr "" "jest zbyt poręczne w pracy rzeźniczej." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "nóż do krojenia mięsa" @@ -115945,7 +116022,6 @@ msgstr "" "rzeźniczej." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "nóż do chleba" @@ -115965,7 +116041,6 @@ msgstr "" "mogłyby wywołać u przeciwnika dosyć nieprzyjemne i długo gojące się rany." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -115982,7 +116057,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -120256,7 +120330,6 @@ msgstr "" "barwienia wielu tkanin, jeśli połączy się go z wodą i zaprawą." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "odłamki szkła" @@ -120272,7 +120345,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "tafla szkła" @@ -120295,7 +120367,6 @@ msgid "" msgstr "Duża tafla szkła. Łatwo ją potłuc. Użyteczna w naprawach okien." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "tafla zbrojonego szkła" @@ -120310,7 +120381,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "Duża tafla szkła wzmocnionego stalowym odrutowaniem." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "szyba zbrojonego szkła" @@ -120325,7 +120395,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "Mała szyba ze szkła zbrojonego stalowym oplotem." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -120441,7 +120510,6 @@ msgid "A roll of purple carpet." msgstr "Zwój fioletowego dywanu." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "wizjer" @@ -120457,7 +120525,6 @@ msgid "" msgstr "Metalowy cylinder z małą soczewką wewnątrz, instalowany w drzwiach." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -120471,7 +120538,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "rura" @@ -120486,7 +120552,6 @@ msgid "" msgstr "Stalowa rurka, dobra jako broń wręcz. Przydatna do produkcji rzeczy." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -120505,7 +120570,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "kolec" @@ -120523,7 +120587,6 @@ msgstr "" "zamontować na pojeździe." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "miedziana rurka" @@ -120541,7 +120604,6 @@ msgstr "" "jeżeli nie ma niczego innego pod ręką. Użyteczna w produkcji kilku rzeczy." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "sztaba aluminium" @@ -120558,7 +120620,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "bizmut" @@ -120572,7 +120633,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "Gęsty, ale kruchy metal często używany jako alternatywa ołowiu." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "złoto" @@ -120591,7 +120651,6 @@ msgstr "" "obecnie jego wartość drastycznie zmalała." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "platyna" @@ -120600,7 +120659,6 @@ msgstr[2] "platyna" msgstr[3] "platyna" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -120618,7 +120676,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "ołów" @@ -120636,7 +120693,6 @@ msgstr "" "zastosowań, w tym służy do wyrobu amunicji." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "sproszkowany magnez" @@ -120654,7 +120710,6 @@ msgstr "" "w konstruowaniu flar i podobnych przedmiotów." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "srebro" @@ -120670,7 +120725,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -120684,7 +120738,6 @@ msgid "A small sheet of metal." msgstr "Mały kawałek blachy." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -120702,7 +120755,6 @@ msgstr "" "potrzeby lub jako materiał w wytwarzaniu przedmiotów." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -120716,7 +120768,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "Ciężki, uformowany kawał stali. Używany w wytwarzaniu przedmiotów." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -120732,7 +120783,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "złom miedziany" @@ -120746,7 +120796,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "Kawałek miedzi, do wykorzystania w wytwarzaniu lub naprawach." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -120762,7 +120811,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -120809,7 +120857,6 @@ msgstr "" "Miotła na długim stylisku. Słaba z niej broń, chyba że do poganiania kotów." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "ceramiczne odłamki" @@ -120883,7 +120930,6 @@ msgstr "" "od większości eksplozji." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "ostry kamień" @@ -120965,7 +121011,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "kawałek plastiku" @@ -120999,7 +121044,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -121016,8 +121060,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -121033,7 +121075,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -121049,7 +121090,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -121065,7 +121105,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "kłoda" @@ -121083,7 +121122,6 @@ msgstr "" "by zrobić z niej deski." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "drewniane drzazgi" @@ -121098,7 +121136,6 @@ msgstr "" "Kawałek rozszczepionego drewna, może być użyty jako rożen lub na podpałkę." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "gruby konar" @@ -121112,7 +121149,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "Twardy, ciężki kij. Przyzwoita broń biała." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "długi kij" @@ -121130,7 +121166,6 @@ msgstr "" " czegoś." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "długa tyczka" @@ -121145,8 +121180,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "Tęga, trzymetrowa tyczka. W obsłudze podobna do włóczni." -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "deska" @@ -121165,7 +121199,6 @@ msgstr "" "ponadto bardzo użyteczna we wszelkiego rodzaju konstrukcjach." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "ciężka drewniana belka" @@ -121185,7 +121218,6 @@ msgstr "" "konstrukcji albo do zrobienia z niej desek albo paneli." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "drewniany panel" @@ -121207,7 +121239,6 @@ msgstr "" "jej cały, duży arkusz." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "duży drewniany panel" @@ -121228,7 +121259,6 @@ msgstr "" "lepiej nadawałaby się docięta do mniejszego rozmiaru." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -121272,7 +121302,6 @@ msgstr "" "płynu." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "atomowy ekspres do kawy" @@ -121291,7 +121320,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -121321,7 +121349,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "zamykacz do puszek" @@ -121339,7 +121366,6 @@ msgstr "" "zamykania i szczelnego lakowania puszek." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "elektryczna wyżynarka (wył.)" @@ -121383,7 +121409,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "Ta wyżynarka jest włączona a ostrza brzęczą. Użyj by wyłączyć." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "oczyszczacz wody z węgla drzewnego" @@ -121406,7 +121431,6 @@ msgstr "" "zanieczyszczona." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "wędzarnia węglowa" @@ -121424,7 +121448,6 @@ msgstr "" "wędzenia mięsa dla zapewnienia mu trwałości." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "kuchenka węglowa" @@ -121442,7 +121465,6 @@ msgstr "" "używać go do gotowania żywności." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "gliniany garnek" @@ -121456,7 +121478,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "Prosty gliniany garnek z przykrywką do gotowania potraw." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "gliniane żarna" @@ -121470,7 +121491,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "Proste ręczne żarna gliniane do mielenia ziaren." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "gliniany czajniczek" @@ -121484,7 +121504,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "Gliniany czajniczek. Teraz potrzeba tylko herbaty i wody." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "ekspres do kawy" @@ -121504,7 +121523,6 @@ msgstr "" "do zaparzania kawy, a także innych napojów jeśli zechcesz." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "suszarka do żywności" @@ -121522,7 +121540,6 @@ msgstr "" "bezcenna do konserwowania żywności." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "fermentujący słój z jajami" @@ -121554,7 +121571,6 @@ msgstr "" "gdy proces się zakończy." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "kuchenka urotropinowa" @@ -121572,7 +121588,6 @@ msgstr "" "urotropiny, znana też jako kuchenka typu Esbit." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -121668,7 +121683,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "robot kuchenny" @@ -121686,7 +121700,6 @@ msgstr "" "blendowania i miksowania." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "kuchenka na benzynę" @@ -121720,7 +121733,6 @@ msgstr "" "kontuzji i podgrzewania żywności. Jednorazowego użytku." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "kuchenka turystyczna" @@ -121811,7 +121823,6 @@ msgstr "" "ze smakiem." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "improwizowana paczkownica próżniowa" @@ -121829,7 +121840,6 @@ msgstr "" "pakowania żywności." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "zestaw z menażką" @@ -121849,7 +121859,6 @@ msgstr "" "zamiast na częściej spotykanym palniku chemicznym." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "menażka" @@ -121870,7 +121879,6 @@ msgstr "" "elementów grzejnych znanych ze współczesnych menażek." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "wojskowy zestaw z menażką" @@ -121894,7 +121902,6 @@ msgstr "" "wytrzymały." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -121915,7 +121922,6 @@ msgstr "" "niż bardziej złożone metody." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "wielofunkcyjne urządzenie do gotowania" @@ -121953,7 +121959,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "kuchenka olejowa" @@ -121971,7 +121976,6 @@ msgstr "" "gotowania żywności." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "wyciskarka do makaronu" @@ -121989,7 +121993,6 @@ msgstr "" "wymienne głowice pozwalają na wybór produkowanego rodzaju." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "fermentujący słój z korniszonami" @@ -122020,7 +122023,6 @@ msgstr "" " gdy proces się zakończy." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "kuchenka z puszek po napojach" @@ -122036,7 +122038,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "garnek ciśnieniowy" @@ -122057,7 +122058,6 @@ msgstr "" "reakcji chemicznych." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "żarna" @@ -122072,7 +122072,6 @@ msgstr "" "To proste kamienne żarna napędzane ręcznie, służące do mielenia ziaren." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "fermentujący słój kiszonej kapusty" @@ -122134,7 +122133,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "zestaw z menażką ocalonych" @@ -122155,7 +122153,6 @@ msgstr "" "materiałów." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "czajniczek herbaciany" @@ -122170,7 +122167,6 @@ msgstr "" "Mały metalowy czajniczek. Chwila na herbatę nie była by taka sama bez niego." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "paczkownica próżniowa" @@ -122188,7 +122184,6 @@ msgstr "" "żywności w celu jej konserwacji." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "gofrownica" @@ -122284,7 +122279,6 @@ msgstr "" "ale lepsze od spania na gołej ziemi." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "składany rower" @@ -122302,6 +122296,24 @@ msgstr "Z wysiłkiem rozkładasz rower i przygotowujesz go do jazdy." msgid "This is a bicycle folded into a relatively portable package." msgstr "Ten rower jest złożony w relatywnie przenośną paczkę." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -122310,7 +122322,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "nadmuchiwana łódka" @@ -122371,7 +122382,6 @@ msgstr "" "przenoszenia." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -122406,7 +122416,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "zaawansowany UPS" @@ -122424,7 +122433,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "aparat fotograficzny" @@ -122444,7 +122452,6 @@ msgstr "" "zapisać je na karcie pamięci. Korzysta ze zwykłych baterii." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -122464,7 +122471,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "telefon komórkowy" @@ -122498,7 +122504,6 @@ msgstr "" " Ma też zegar z budzikiem." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -122515,7 +122520,6 @@ msgid "You stop lighting up the screen." msgstr "Przestajesz podświetlać ekran." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "laptop kontroli" @@ -122532,7 +122536,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "antena kierunkowa" @@ -122565,7 +122568,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "tablet w technologii e-papieru" @@ -122581,9 +122583,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "elektrowytrych" @@ -122606,7 +122606,6 @@ msgstr "" "baterii na użycie." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "licznik Geigera (wył.)" @@ -122627,7 +122626,6 @@ msgstr "" "promieniowania otoczenia. Obecnie wyłączony." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "licznik Geigera (wł.)" @@ -122650,7 +122648,6 @@ msgstr "" "okolicy. Obecnie włączony." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -122686,7 +122683,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "odtwarzacz mp3 (wył.)" @@ -122724,7 +122720,6 @@ msgstr "" " by wyłączyć. Ponadto utrudnia słuchanie otoczenia." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "emiter dźwięku (wył.)" @@ -122759,7 +122754,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "ręczna konsola do gier" @@ -122777,7 +122771,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "smartfony" @@ -122865,7 +122858,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "vibrator" @@ -122884,7 +122876,6 @@ msgstr "" "i odprężyć się." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -122910,7 +122901,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -122927,7 +122917,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "łom" @@ -122947,7 +122936,6 @@ msgstr "" "Możesz też użyć go do rozbicia paru łbów." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -122966,7 +122954,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "improwizowany wytrych" @@ -122985,7 +122972,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "czekan" @@ -123006,7 +122992,6 @@ msgstr "" "kanalizacyjnych." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "improwizowany łom" @@ -123024,7 +123009,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "zestaw wytrychów" @@ -124181,7 +124165,6 @@ msgstr "" "wydzielając dużą ilość dymu." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "elektryczna zapalarka" @@ -124199,7 +124182,6 @@ msgstr "" "nieefektywna zapalniczka." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "patyki do rozpalania ognia" @@ -124220,7 +124202,6 @@ msgstr "" "ognia jest długie i trudne." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "patyki do rozpalania ognisk" @@ -124241,7 +124222,6 @@ msgstr "" "jego pomocą ognia jest długie i trudne." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "zestaw hubka i krzesiwo" @@ -124258,7 +124238,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "zapalniczka" @@ -124278,7 +124257,6 @@ msgstr "" "zapalniczki do podpalania pobliskich przedmiotów." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "szkło powiększające" @@ -124297,7 +124275,6 @@ msgstr "" "dni." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "pudełko zapałek" @@ -124319,7 +124296,6 @@ msgstr "" "przedmiotów." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "uzupełnialna zapalniczka" @@ -124366,7 +124342,6 @@ msgstr "" " Jest zapalona." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "nośnik żaru" @@ -124401,7 +124376,6 @@ msgstr "" "czas, pozwalając rozpalić ogień bez współczesnych narzędzi." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "nośnik żaru (zapalony)" @@ -124445,7 +124419,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -124477,7 +124450,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "topór strażacki" @@ -124495,7 +124467,6 @@ msgstr "" "Potężna broń ręczna, ale nieco wolna do wyważenia pomiędzy zamachnięciami." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "strażackie narzędzie ratownicze" @@ -124569,7 +124540,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -124585,7 +124555,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "plastikowa pułapka na ryby" @@ -124624,7 +124593,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "haczyk wędkarski" @@ -124638,7 +124606,6 @@ msgid "A simple fishing hook." msgstr "Prosty haczyk wędkarski." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "improwizowany haczyk wędkarski" @@ -124652,7 +124619,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "Improwizowany haczyk wędkarski wycięty z drewna lub kości." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "prosta wędka" @@ -124670,7 +124636,6 @@ msgstr "" "haczykiem." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "profesjonalna wędka" @@ -124688,7 +124653,6 @@ msgstr "" " stanie złapać je wszystkie." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -124706,7 +124670,6 @@ msgstr "" " potrzeba do rozpoczęcia produkcji własnej amunicji." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -124726,7 +124689,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "kinetyczny wyciągacz kul" @@ -124757,7 +124719,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "miedziany nóż" @@ -124794,7 +124755,6 @@ msgstr "" " i niemal nie zajmuje miejsca w kieszeni." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "nóż pszczelarski" @@ -124813,7 +124773,6 @@ msgstr "" " wręcz." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "nóż kieszonkowy" @@ -124866,7 +124825,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "kij do kopania" @@ -124884,7 +124842,6 @@ msgstr "" "płytki dół, ale głęboki już nie." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "rydel" @@ -124900,7 +124857,6 @@ msgstr "" "Mały ostry szpadelek ogrodniczy, doskonały do wykopywania robaków i czerwi." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "motyka" @@ -124918,7 +124874,6 @@ msgstr "" " gleby, które nada się też do wykopania płytkiego dołu." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -124954,7 +124909,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "kosa" @@ -124974,7 +124928,6 @@ msgstr "" "poza pierwotnym przeznaczeniem." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "szpadel" @@ -125004,7 +124957,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "sierp" @@ -125024,7 +124976,6 @@ msgstr "" " poza pierwotnym przeznaczeniem." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "przycinacz żywopłotów (wył.)" @@ -125077,7 +125028,6 @@ msgstr "" "włączony, gotowy by ozdobnie przystrzyc paru zombiaków. Użyj by wyłączyć." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "atomowa lampa" @@ -125101,7 +125051,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "atomowa lampa (zakryta)" @@ -125127,7 +125076,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -125138,7 +125086,7 @@ msgstr[3] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "Zamykasz pokrywę lampki nocnej." @@ -125153,7 +125101,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -125166,7 +125113,7 @@ msgstr[3] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "Otwierasz pokrywę lampki nocnej." @@ -125226,7 +125173,6 @@ msgstr "" "długi czas. Jest zapalona." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "elektryczna latarnia (wył.)" @@ -125275,7 +125221,6 @@ msgid "You turn the lamp off." msgstr "Wyłączasz latarnię." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "latarka (wył.)" @@ -125470,7 +125415,6 @@ msgstr "" " zanim się wypali." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "latarka przemysłowa (wył.)" @@ -125635,7 +125579,6 @@ msgid "The %s is extinguished" msgstr "%s jest wygaszona." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "lampka do czytania" @@ -125685,7 +125628,6 @@ msgstr "" "ciemności. To jest włączone." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "sprytna lampa (wył.)" @@ -125744,7 +125686,7 @@ msgstr[3] "pochodnia" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "Zapal pochodnię" @@ -125752,7 +125694,7 @@ msgstr "Zapal pochodnię" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Zapalasz pochodnię." @@ -125770,7 +125712,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "Pochodnia zostaje wygaszona." @@ -125784,7 +125726,6 @@ msgstr "" "zapewniając sporo światła." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -125866,7 +125807,6 @@ msgstr "" "zaaplikowany." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -125921,7 +125861,6 @@ msgstr "" "Opis na naklejce zakazuje stosować więcej niż dwie dawki na godzinę." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "skalpel" @@ -125960,7 +125899,6 @@ msgstr "" "energii." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "strzykawka" @@ -125974,7 +125912,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "Medyczna strzykawka. Używana do dożylnego podawania leków." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "termometr" @@ -126008,7 +125945,6 @@ msgstr "" "dopływ energii." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "zestaw do pobierania krwi" @@ -126027,7 +125963,6 @@ msgstr "" "swoją lub z ciała nad którym stoisz." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "zaklejona plakietka radiacyjna" @@ -126067,7 +126002,6 @@ msgstr "" "rogu. Używane w większości prac metalurgicznych." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "brązowe kowadło" @@ -126085,7 +126019,6 @@ msgstr "" "rogu. Używane w większości prac metalurgicznych." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "szczypce przegubowe" @@ -126104,7 +126037,6 @@ msgstr "" "drutu." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "kuźnia węglowa" @@ -126130,7 +126062,6 @@ msgstr "" "niepełnego spalenia materiału organicznego w absencji tlenu." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "dłuto do metalu" @@ -126148,7 +126079,6 @@ msgstr "" "metalurgicznych." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "tygiel" @@ -126166,7 +126096,6 @@ msgstr "" " przedmiotów." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "gliniany tygiel" @@ -126184,7 +126113,6 @@ msgstr "" "do produkcji przedmiotów." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "elektryczna kuźnia" @@ -126203,7 +126131,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "wygasły piec do węgla drzewnego" @@ -126245,7 +126172,6 @@ msgstr "" " wypalania." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "rozpalony piec do węgla drzewnego" @@ -126289,7 +126215,6 @@ msgstr "" "arkuszy można połączyć w efektywną zbroję." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "foremnik kowalski i matryce" @@ -126307,7 +126232,6 @@ msgstr "" "niektórym pracom metalurgicznym." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "metalowe obcęgi" @@ -126354,7 +126278,6 @@ msgstr "" "dźwięku." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "budzik" @@ -126509,7 +126432,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "saperka" @@ -126555,7 +126477,6 @@ msgstr "" "wystrzeleniem." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "futrzana mata" @@ -126579,7 +126500,6 @@ msgstr "" "podłoża, ułatwiając sen. Użyj, by rozwinąć i umieścić na ziemi." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "kotwiczka na linie" @@ -126609,7 +126529,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "ręczna pompka" @@ -126674,7 +126593,6 @@ msgstr "" "Klakson samochodowy który montuje się do systemu elektrycznego pojazdu." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "duży piecyk" @@ -126716,7 +126634,6 @@ msgid "You turn off the heater." msgstr "Wyłączasz piecyk." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -126826,7 +126743,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "karimata" @@ -126885,7 +126801,6 @@ msgstr "" " niebezpiecznych materiałów." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "mały piecyk" @@ -127082,7 +126997,6 @@ msgstr "" "tyle co nic. Powietrze zdaje się gromadzić wokół niego." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "multinarzędzie z gwizdkiem" @@ -127239,7 +127153,6 @@ msgstr "" "kiedyś do najlepszego z najlepszych." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "klatka na kurczaki" @@ -127259,7 +127172,6 @@ msgstr "" " na pustym miejscu by wypuścić." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "gwizdek na psy" @@ -127279,7 +127191,6 @@ msgstr "" "uległe." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -127293,7 +127204,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -127307,7 +127217,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -127323,7 +127232,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "klatka do transportu zwierząt" @@ -127341,7 +127249,6 @@ msgstr "" "zwierzęciu by je schwytać, następnie użyj na pustym miejscu by wypuścić." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -127357,7 +127264,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -127402,7 +127308,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "kontroler zdalnego sterowania" @@ -127422,7 +127327,6 @@ msgstr "" "luksusowego modelu?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "zdalnie sterowany samochód" @@ -127471,7 +127375,6 @@ msgstr "" "aktywować je sygnałem radiowym." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "radio (wył.)" @@ -127506,7 +127409,6 @@ msgstr "" "transmisję nadawaną z pobliskich wież radiowych." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "radio dwukierunkowe" @@ -127522,7 +127424,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "zdalne sterowanie pojazdu" @@ -127611,7 +127512,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -127631,7 +127531,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "barometr" @@ -127664,7 +127563,6 @@ msgstr "" "ci się że coś się w środku porusza." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "zestaw chemiczny" @@ -127684,7 +127582,6 @@ msgstr "" "wykorzystywany przy produkcji chemikaliów jeśli zechcesz." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "podstawowy zestaw chemiczny" @@ -127704,7 +127601,6 @@ msgstr "" "źródła ciepła." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "zestaw do elektrolizy" @@ -127739,7 +127635,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -127755,7 +127650,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "higrometr" @@ -127770,7 +127664,6 @@ msgstr "" "Plastikowy higrometr do odczytywania relatywnej wilgotności powietrza." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -127786,7 +127679,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -127802,7 +127694,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "platynowy grill" @@ -127868,7 +127759,6 @@ msgstr "" " jest aktywowane." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "Doppler Radar Turbo 2000" @@ -127888,7 +127778,6 @@ msgstr "" "meteorologicznych. Ani śladu deszczu klopsików." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "podstawowy laboratoryjny zestaw analityczny" @@ -127913,7 +127802,6 @@ msgstr "" "stworzyłeś." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "waga małych skali" @@ -127931,7 +127819,6 @@ msgstr "" "dość dokładnego pomiaru masy próbek." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "spektrofotometr" @@ -127949,7 +127836,6 @@ msgstr "" "płynnej próbki w specjalnej tubie zwanej kuwetą." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "miernik pH" @@ -127969,7 +127855,6 @@ msgstr "" "mierzonej, można obliczyć kwasowość." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -127987,7 +127872,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "aparat pomiaru punktu topnienia" @@ -128012,7 +127896,6 @@ msgstr "" "jakiej czystości." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -128031,7 +127914,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "detektor światła" @@ -128049,7 +127931,6 @@ msgstr "" "światła w elektryczność celem pomiaru." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "szklany pryzmat" @@ -128083,7 +127964,6 @@ msgstr "" "To mała szklana próbówka. Czego więcej chciałbyś się o niej dowiedzieć?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -128101,7 +127981,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -128120,7 +127999,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -128140,7 +128018,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -128160,7 +128037,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -128182,7 +128058,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -128201,7 +128076,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -128268,7 +128142,6 @@ msgstr "" "uszkodzony i wymaga napraw." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "duży namiot" @@ -128286,7 +128159,6 @@ msgstr "" "nieporęczny." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "zestaw schronienia" @@ -128300,7 +128172,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "To małe schronienie z kijów i skór. Użyj by rozmieścić." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "namiot" @@ -128386,7 +128257,6 @@ msgstr "" " liści tytoniu." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "zszywacz" @@ -128402,7 +128272,6 @@ msgstr "" "biurowym w czasach kataklizmu." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "długopis" @@ -128416,7 +128285,6 @@ msgid "A plastic ball point pen." msgstr "Plastikowy długopis kulkowy." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "nożyce" @@ -128433,7 +128301,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -128447,7 +128314,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Kartka papieru. Może się nadać do rozniecenia ognia." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -128464,7 +128330,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -128480,7 +128345,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "para szydełek" @@ -128499,7 +128363,6 @@ msgstr "" "przędzy w materiał." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "kościana igła" @@ -128530,7 +128393,6 @@ msgstr "" "większości prac krawieckich to naprawdę niezbędna jest do szycia neoprenu." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "drewniana igła" @@ -128548,8 +128410,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "zestaw do szycia" @@ -128586,8 +128447,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "zestaw krawiecki" @@ -128605,7 +128465,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -128619,7 +128478,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -128633,7 +128491,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "elektryczna strzyżarka" @@ -128684,7 +128541,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "żyletka" @@ -128716,7 +128572,6 @@ msgstr "" "jeśli jest zaopatrzony w mydło. Wymaja 1 jednostki mydła na użycie." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -128762,7 +128617,6 @@ msgstr "" " w mydło. Wymaja 1 jednostki mydła na użycie." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "tara do prania" @@ -128780,7 +128634,6 @@ msgstr "" "jeżeli ją zaopatrzysz w środek czystości." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -128823,7 +128676,6 @@ msgstr "" "szpadel to możesz ją też zakopać." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "pułapka z ostrzem" @@ -128848,7 +128700,6 @@ msgstr "" "rozciąga się w obszarze 3x3." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "pułapka z deską z gwoździem" @@ -128900,7 +128751,6 @@ msgstr "" "na ziemi, tworząc pułapkę-alarm która ostrzeże cię gdy ktoś na nią wejdzie." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "luźna kolczatka" @@ -128923,7 +128773,6 @@ msgstr "" " się niczego ofiara nastąpi na nią, przebije sobie stopę cierniami." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -128981,7 +128830,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -129011,7 +128859,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "potykacz" @@ -129051,7 +128898,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -129074,7 +128920,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "siekiera do drewna" @@ -129107,7 +128952,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "piła łańcuchowa (wył.)" @@ -129151,7 +128995,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "Ta piła łańcuchowa mocno hałasuje. Użyj by ją wyłączyć." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "piła tarczowa (wył.)" @@ -129203,7 +129046,6 @@ msgstr "" "włączona. Użyj by wyłączyć." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "miedziana siekiera" @@ -129238,7 +129080,6 @@ msgstr "" "narzędzie do rąbania, jak i jako młotek." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "elektryczna piła łańcuchowa (wył.)" @@ -129356,7 +129197,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "piła do drewna" @@ -129370,7 +129210,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "Cienka piła używana do cięcia drewnianych obiektów." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -129380,7 +129219,6 @@ msgstr[3] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -129535,7 +129373,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -129551,7 +129388,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -129567,7 +129403,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "ceglany piec" @@ -129585,7 +129420,6 @@ msgstr "" "cegieł, ale możesz w nim wypalić też inne rzeczy zrobione z gliny." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "para ręcznych gręplarek" @@ -129604,7 +129438,6 @@ msgstr "" "przemyśle tekstylnym." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "skrobarka do farby" @@ -129618,7 +129451,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "Narzędzie podobne do dłuta, zaprojektowane do usuwania farby." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -129634,7 +129466,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -129651,7 +129482,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "betoniarka" @@ -129669,7 +129499,6 @@ msgstr "" "zasilana bateryjnie. Ma wbudowany grzejnik." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "bezprzewodowa wiertarka" @@ -129684,7 +129513,6 @@ msgid "" msgstr "Bezprzewodowa zasilana bateriami wiertarka z zestawem wierteł." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "wrzeciono i kądziel" @@ -129702,7 +129530,6 @@ msgstr "" " nici i przędzę." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "elektryczny młot pneumatyczny" @@ -129719,7 +129546,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "piła do metalu" @@ -129749,7 +129575,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "młotek" @@ -129785,7 +129610,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "ręczne wiertło" @@ -129803,7 +129627,6 @@ msgstr "" "Wolne i prędko cię zmęczy." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "gumowy wąż" @@ -129821,7 +129644,6 @@ msgstr "" "spuszczenia paliwa z baku pojazdu." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "podnośnik hydrauliczny" @@ -129835,7 +129657,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "Przenośny podnośnik hydrauliczny używany do podnoszenia pojazdów." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "prowizoryczny podnośnik" @@ -129853,7 +129674,6 @@ msgstr "" " wystarczająco odważny by takiego użyć." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "podnośnik nożycowy" @@ -129867,7 +129687,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "Kompaktowy podnośnik nożycowy do podnoszenia pojazdów." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "młot pneumatyczny" @@ -129887,7 +129706,6 @@ msgstr "" "terenie." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -129903,7 +129721,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "elektryczny piec" @@ -129925,7 +129742,6 @@ msgstr "" "przerobić go tak by działał na zasilaniu pojazdów." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "zestaw rusznikarski" @@ -129945,7 +129761,6 @@ msgstr "" " konserwacji broni palnej. Wymaga 25 ładunków z baterii na każde użycie." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "improwizowany młotek" @@ -129961,7 +129776,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -129977,7 +129791,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "kielnia" @@ -129995,7 +129808,6 @@ msgstr "" "murarskiej w pracach budowlanych i konstrukcyjnych." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -130030,7 +129842,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "forma do plastiku" @@ -130048,7 +129859,6 @@ msgstr "" "plastikowych przedmiotów." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "narzędzie uniwersalne" @@ -130066,7 +129876,6 @@ msgstr "" "mniejszych narzędzi w rączce kombinerek." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "palnik acetylenowy" @@ -130090,7 +129899,6 @@ msgstr "" "metalowe bariery i przeszkody." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "pędzel malarski" @@ -130104,7 +129912,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "Szeroki pędzel do malowania ścian farbą." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "kilof" @@ -130122,7 +129929,6 @@ msgstr "" "odrobiną umiejętności także twardych celów. Kop ziemię!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -130138,7 +129944,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "szczypce" @@ -130155,7 +129960,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "elektryczna szlifierka" @@ -130190,7 +129994,6 @@ msgstr "" "adekwatnie, ale nie da się go porównać do właściwego." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "śrubokręt" @@ -130209,7 +130012,6 @@ msgstr "" "zastosowań." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "zestaw śrubokrętów" @@ -130227,7 +130029,6 @@ msgstr "" " właściwe narzędzia do bardziej precyzyjnych prac." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "zestaw do naprawy broni palnej" @@ -130247,7 +130048,6 @@ msgstr "" " konserwacji broni palnej. Wymaga 100 ładunków z baterii na każde użycie." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -130284,7 +130084,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "skrzynka narzędziowa" @@ -130302,7 +130101,6 @@ msgstr "" "w utrzymaniu domu i robotach konstrukcyjnych." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -130337,7 +130135,6 @@ msgstr "" " wszystko ładnym." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -130353,7 +130150,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "drewniana kielnia" @@ -130372,7 +130168,6 @@ msgstr "" " rozłupywacz głów." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "wełna" @@ -130390,7 +130185,6 @@ msgstr "" "przędzę." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "nóż precyzyjny" @@ -130412,7 +130206,6 @@ msgstr "" "uzdolnionych dłoniach. Jest zbyt mały by ciąć nim ciała." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "klucz francuski" @@ -130430,7 +130223,6 @@ msgstr "" "walki wręcz, i jest używany w wielu pracach mechanicznych." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -130447,7 +130239,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -131966,6 +131757,19 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -132372,7 +132176,6 @@ msgstr "" "dzieci w czasach gdy dzieci wolały bardziej lody niż mózgi." #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -132902,6 +132705,15 @@ msgstr[3] "drewniany stół" msgid "A crude wooden table." msgstr "Prosty drewniany stół." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -133283,6 +133095,34 @@ msgstr[3] "zestaw kółek" msgid "A set of casters, like on a shopping cart." msgstr "Zestaw kółek, takich od wózka sklepowego." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -134158,13 +133998,6 @@ msgstr "CEMENT" msgid "FERTILIZER" msgstr "NAWÓZ" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "KAMIENIE" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -134497,13 +134330,6 @@ msgstr "PAPIER" msgid "PLASTIC" msgstr "TWORZYWA SZTUCZNE" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "ELEKTRONIKA" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -135061,7 +134887,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "Rosnący ból" @@ -135085,7 +134911,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Obolały" @@ -139797,7 +139623,7 @@ msgstr[3] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "Ten robot kuchenny ma swój własny umysł! Uważaj!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -139807,7 +139633,7 @@ msgstr[3] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "Obraz utworzony ze światła, niemal identyczny jak autentyk." @@ -150905,9 +150731,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "Pohandlujmy." @@ -151660,9 +151486,9 @@ msgstr "Co tu robisz?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -151678,9 +151504,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "Co mogę dla ciebie zrobić?" @@ -151708,25 +151534,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "Czemu nie pójdziesz gdzie indziej?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "Pohandlujmy zatem." #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "Wybacz, muszę iść." @@ -151746,9 +151572,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "Co możesz mi sprzedać?" @@ -158410,7 +158236,7 @@ msgstr "załamka" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "Hej ." @@ -168729,17 +168555,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -170034,7 +169860,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -176014,9 +175840,9 @@ msgstr "Masz dla mnie poradę jak przetrwać?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "Do widzenia." @@ -186239,7 +186065,6 @@ msgstr "" "wykorzystywane do wypasu zwierząt i do uprawy traw na siano." #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Las" @@ -186638,7 +186463,7 @@ msgid "island" msgstr "wyspa" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "chata" @@ -186660,7 +186485,6 @@ msgstr "piwnica chaty" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "las" @@ -189413,7 +189237,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "brzeg jeziora" @@ -189460,7 +189283,7 @@ msgstr "BROŃ" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "WSZYSTKO" @@ -189585,6 +189408,13 @@ msgstr "ELEKTRONIKA" msgid "CBMS" msgstr "BIONIKA" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "NARZĘDZIA" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -189598,7 +189428,7 @@ msgstr "OŚWIETLENIE" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "ZBROJE" @@ -189639,7 +189469,7 @@ msgstr "MEDYCZNE" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "MATERIAŁY" @@ -200314,7 +200144,7 @@ msgstr "składana lekka rama" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -200413,6 +200243,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "światła przejścia" @@ -202303,6 +202140,24 @@ msgstr "" "Zestaw małych kółek, montowanych na obrotowych osiach, taki jak w krześle " "biurowym lub koszyku z supermarketu." +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -202376,7 +202231,7 @@ msgstr "" "Szyba która pozwala ci widzieć otoczenie pojazdu. Wzmocniona drutem by " "trudniej ją stłuc niż zwykłe szkło." -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Rower" @@ -202444,6 +202299,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "kanadyjka" @@ -202589,8 +202448,8 @@ msgid "Wheelbarrow" msgstr "Taczka" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Składany Wózek Inwalidzki" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -202932,7 +202791,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "Furgonetka Ochrony" @@ -210181,7 +210039,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -210189,8 +210047,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -211222,9 +211080,9 @@ msgstr[3] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -211239,7 +211097,7 @@ msgstr[3] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -230304,74 +230162,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -230381,177 +230171,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -231789,117 +231408,136 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -231907,38 +231545,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -231947,95 +231586,105 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -232044,24 +231693,75 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -232069,25 +231769,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -232095,25 +231795,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -232121,7 +231821,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -232129,7 +231829,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -232139,7 +231839,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -232149,7 +231849,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -232159,7 +231859,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -232169,7 +231869,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -232178,7 +231878,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -232187,7 +231887,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -232197,7 +231897,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -232206,18 +231906,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -232226,7 +231926,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -232234,18 +231934,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -232255,7 +231955,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -232264,18 +231964,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -232283,25 +231983,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -232309,59 +232009,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -232370,7 +232102,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -232379,25 +232111,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "kościół" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -232409,7 +232141,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -232420,25 +232152,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -232448,7 +232180,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -232458,12 +232190,12 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" @@ -232471,7 +232203,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" @@ -232479,7 +232211,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" @@ -232487,7 +232219,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" @@ -232495,559 +232227,613 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -233059,245 +232845,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -233305,487 +233064,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -233794,321 +233573,365 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -234116,20 +233939,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -234137,74 +233960,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -234212,21 +234035,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -234234,105 +234057,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -234340,16 +234187,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -234357,74 +234204,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -234432,350 +234279,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "Poparzenie kwasem" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "Poparzony kwasem" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "Przerażony" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -234784,7 +234631,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -234792,7 +234639,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -234801,52 +234648,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" @@ -234855,13 +234663,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" @@ -234870,13 +234678,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" @@ -234885,13 +234693,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -234900,62 +234708,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -234964,14 +234723,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" @@ -234980,13 +234739,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -234996,45 +234755,13 @@ msgstr[3] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -235043,14 +234770,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" @@ -235059,15 +234786,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -235076,13 +234802,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" @@ -235090,8 +234816,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" @@ -235099,8 +234825,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" @@ -235108,11 +234834,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "Ichaival" @@ -235120,7 +234846,7 @@ msgstr[1] "Ichaival" msgstr[2] "Ichaival" msgstr[3] "Ichaival" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -235128,14 +234854,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -235145,13 +234871,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" @@ -235160,13 +234886,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" @@ -235175,13 +234901,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -235191,13 +234917,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -235207,13 +234933,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -235223,13 +234949,13 @@ msgstr[3] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -235238,39 +234964,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -235279,13 +234979,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" @@ -235294,14 +234994,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -235310,24 +235010,24 @@ msgstr[2] "" msgstr[3] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -235336,13 +235036,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -235352,12 +235052,12 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -235367,12 +235067,12 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" @@ -235381,13 +235081,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" @@ -235396,13 +235096,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" @@ -235411,14 +235111,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" @@ -235427,14 +235127,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -235444,13 +235144,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" @@ -235458,7 +235158,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -235468,13 +235168,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -235484,13 +235184,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -235500,13 +235200,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -235516,14 +235216,14 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" @@ -235532,14 +235232,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" @@ -235548,14 +235248,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" @@ -235564,14 +235264,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" @@ -235580,14 +235280,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -235597,12 +235297,12 @@ msgstr[3] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -235610,7 +235310,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -235619,13 +235319,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -235634,328 +235334,287 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer rune" +msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Biomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." +"This magical pebble has an insignia of rended flesh and bones on it. It is " +"necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer rune" +msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Technomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." +"This magical pebble has an insignia of clockwork and gears on it. It is " +"necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus rune" +msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." +"This magical pebble has an insignia of crystal and mana orbs on it. It is " +"necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper rune" +msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Earthshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." +"This magical pebble has an insignia of steel and rocks on it. It is " +"necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist rune" +msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Kelvinist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of ice and flames on it. It is " +"necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper rune" +msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Stormshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." +"This magical pebble has an insignia of lightning and storm clouds on it. It" +" is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid rune" +msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Druid rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of nature and trees on it. It is " +"necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist rune" +msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Animist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." +"This magical pebble has an insignia of summoners on it. It is necessary for" +" Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" +#: data/mods/Magical_Nights/items/class_items.json +msgid "alchemist rune" +msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'alchemist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." +"This magical pebble has an insignia of alchemy and potions on it. While " +"versatile in use, the lack of attunement to any school prevents creation of " +"more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Biomancer rune" -msgid_plural "Biomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of rended flesh and bones on it. It is " -"necessary for Biomancers to channel magic into their crafts." +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Technomancer rune" -msgid_plural "Technomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of clockwork and gears on it. It is " -"necessary for Technomancers to channel magic into their crafts." +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Magus rune" -msgid_plural "Magi runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of crystal and mana orbs on it. It is " -"necessary for Magi to channel magic into their crafts." +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Earthshaper rune" -msgid_plural "Earthshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of steel and rocks on it. It is " -"necessary for Earthshapers to channel magic into their crafts." +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Kelvinist rune" -msgid_plural "Kelvinist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of ice and flames on it. It is " -"necessary for Kelvinists to channel magic into their crafts." +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Stormshaper rune" -msgid_plural "Stormshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of lightning and storm clouds on it. It" -" is necessary for Stormshapers to channel magic into their crafts." +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Druid rune" -msgid_plural "Druid runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of nature and trees on it. It is " -"necessary for Druids to channel magic into their crafts." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Animist rune" -msgid_plural "Animist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of summoners on it. It is necessary for" -" Animists to channel magic into their crafts." +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "alchemist rune" -msgid_plural "alchemist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of alchemy and potions on it. While " -"versatile in use, the lack of attunement to any school prevents creation of " -"more advanced recipes." +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" @@ -235964,7 +235623,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -235973,7 +235632,7 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" @@ -235982,11 +235641,11 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" @@ -235995,12 +235654,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" @@ -236009,14 +235668,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" @@ -236025,12 +235684,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" @@ -236039,13 +235698,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" @@ -236054,14 +235713,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -236070,13 +235729,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -236085,13 +235744,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -236100,13 +235759,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -236115,5009 +235774,5678 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json -msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" + +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" -msgstr[0] "awaryjne buty ratunkowe" -msgstr[1] "awaryjne buty ratunkowe" -msgstr[2] "awaryjne buty ratunkowe" -msgstr[3] "awaryjne buty ratunkowe" - -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -"Surowo wyglądające, jednak zaskakująco wygodne i dopasowane buty. Wyglądają " -"jakby były stworzone ze stali i znoszonej skóry. Te buty można aktywować raz" -" w ciągu dnia aby teleportować się dosyć spory dystans w losowym kierunku. " -"Lepiej zmów pacierz przed aktywacją." -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "" + +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"You squeeze the seed in your palm, and it begins to turn to a fine dust." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" -msgstr[0] "para stalowych naramienników" -msgstr[1] "pary stalowych naramienników" -msgstr[2] "pary stalowych naramienników" -msgstr[3] "pary stalowych naramienników" +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." -msgstr "Zestaw średniowiecznych ochraniaczy ramion." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "stalowy naramiennik" -msgstr[1] "stalowe naramienniki" -msgstr[2] "stalowe naramienniki" -msgstr[3] "stalowe naramienniki" +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" -msgstr[0] "magiczna maska" -msgstr[1] "magiczne maski" -msgstr[2] "magiczne maski" -msgstr[3] "magiczne maski" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." msgstr "" -"Najzwyklejsza maska magiczna. Środowisko ekspertów nie do końca zgadza się z" -" poprawnością użycia słowa \"najzwyklejsza\" w tym przypadku." -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" -msgstr[0] "maska znikania" -msgstr[1] "maski znikania" -msgstr[2] "maski znikania" -msgstr[3] "maski znikania" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "skrystalizowana moc" +msgstr[1] "skrystalizowane moce" +msgstr[2] "skrystalizowanych mocy" +msgstr[3] "skrystalizowanych mocy" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." msgstr "" -"Bardzo zwyczajnie wyglądająca maska, stworzona z gładkiego tworzywa. Wycięte" -" są w niej tylko otwory na oczy i usta. Po aktywacji sprawia, że inne byty " -"przez chwilę cię nie widzą." -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Mjölnir" +msgstr[1] "Mjölnir" +msgstr[2] "Mjölnir" +msgstr[3] "Mjölnir" + +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "Gungnir" +msgstr[1] "Gungnir" +msgstr[2] "Gungnir" +msgstr[3] "Gungnir" + +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "Laevateinn" +msgstr[1] "Laevateinn" +msgstr[2] "Laevateinn" +msgstr[3] "Laevateinn" + +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" +msgstr[0] "kopia Czarnych Smoków: Bagienne Ruiny" +msgstr[1] "kopie Czarnych Smoków: Bagienne Ruiny" +msgstr[2] "kopii Czarnych Smoków: Bagienne Ruiny" +msgstr[3] "kopii Czarnych Smoków: Bagienne Ruiny" + +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" +"Ta książka szczegółowo opisuje czarne smoki: Najbardziej złe ze smoków, " +"które żyją w ruinach na bagnach. Odporne na kwasy i oddychające kwasem. " +"Książka szczegółowo opisuje, jak przygotować swoją kryjówkę i stworzyć różne" +" zbroje, które wykorzystują część swojej odporności na kwas." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "kopia Przewodnika dla początkujących do Alchemii" +msgstr[1] "kopie Przewodnika dla początkujących do Alchemii" +msgstr[2] "kopii Przewodnika dla początkujących do Alchemii" +msgstr[3] "kopii Przewodnika dla początkujących do Alchemii" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "Książka w miękkiej oprawie dla sztuki płynnej magii, bez alkoholu." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgstr[0] "kopia Przewodnika Zaklinacza Dusz w Nekromancji" +msgstr[1] "kopie Przewodnika Zaklinacza Dusz w Nekromancji" +msgstr[2] "kopii Przewodnika Zaklinacza Dusz w Nekromancji" +msgstr[3] "kopii Przewodnika Zaklinacza Dusz w Nekromancji" + +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" +"Książka w miękkiej oprawie dla sztuki wiązania dusz nieumarłych stworzeń z " +"lalkami, wraz z naśladowaniem ich czynnika leczniczego." + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." msgstr "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" - -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." msgstr "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" + +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "awaryjne buty ratunkowe" +msgstr[1] "awaryjne buty ratunkowe" +msgstr[2] "awaryjne buty ratunkowe" +msgstr[3] "awaryjne buty ratunkowe" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" +"Surowo wyglądające, jednak zaskakująco wygodne i dopasowane buty. Wyglądają " +"jakby były stworzone ze stali i znoszonej skóry. Te buty można aktywować raz" +" w ciągu dnia aby teleportować się dosyć spory dystans w losowym kierunku. " +"Lepiej zmów pacierz przed aktywacją." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" +msgstr[0] "para stalowych naramienników" +msgstr[1] "pary stalowych naramienników" +msgstr[2] "pary stalowych naramienników" +msgstr[3] "pary stalowych naramienników" + +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "Zestaw średniowiecznych ochraniaczy ramion." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" +msgstr[0] "stalowy naramiennik" +msgstr[1] "stalowe naramienniki" +msgstr[2] "stalowe naramienniki" +msgstr[3] "stalowe naramienniki" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" +msgstr[0] "magiczna maska" +msgstr[1] "magiczne maski" +msgstr[2] "magiczne maski" +msgstr[3] "magiczne maski" + +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" +"Najzwyklejsza maska magiczna. Środowisko ekspertów nie do końca zgadza się z" +" poprawnością użycia słowa \"najzwyklejsza\" w tym przypadku." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" +msgstr[0] "maska znikania" +msgstr[1] "maski znikania" +msgstr[2] "maski znikania" +msgstr[3] "maski znikania" + +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." +msgstr "" +"Bardzo zwyczajnie wyglądająca maska, stworzona z gładkiego tworzywa. Wycięte" +" są w niej tylko otwory na oczy i usta. Po aktywacji sprawia, że inne byty " +"przez chwilę cię nie widzą." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" - -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "skrystalizowana moc" -msgstr[1] "skrystalizowane moce" -msgstr[2] "skrystalizowanych mocy" -msgstr[3] "skrystalizowanych mocy" - -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Mjölnir" -msgstr[1] "Mjölnir" -msgstr[2] "Mjölnir" -msgstr[3] "Mjölnir" - -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "Gungnir" -msgstr[1] "Gungnir" -msgstr[2] "Gungnir" -msgstr[3] "Gungnir" - -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "Laevateinn" -msgstr[1] "Laevateinn" -msgstr[2] "Laevateinn" -msgstr[3] "Laevateinn" - -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" - -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" -msgstr[0] "kopia Czarnych Smoków: Bagienne Ruiny" -msgstr[1] "kopie Czarnych Smoków: Bagienne Ruiny" -msgstr[2] "kopii Czarnych Smoków: Bagienne Ruiny" -msgstr[3] "kopii Czarnych Smoków: Bagienne Ruiny" - -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" -"Ta książka szczegółowo opisuje czarne smoki: Najbardziej złe ze smoków, " -"które żyją w ruinach na bagnach. Odporne na kwasy i oddychające kwasem. " -"Książka szczegółowo opisuje, jak przygotować swoją kryjówkę i stworzyć różne" -" zbroje, które wykorzystują część swojej odporności na kwas." - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" -msgstr[0] "kopia Przewodnika dla początkujących do Alchemii" -msgstr[1] "kopie Przewodnika dla początkujących do Alchemii" -msgstr[2] "kopii Przewodnika dla początkujących do Alchemii" -msgstr[3] "kopii Przewodnika dla początkujących do Alchemii" - -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "Książka w miękkiej oprawie dla sztuki płynnej magii, bez alkoholu." - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" -msgstr[0] "kopia Przewodnika Zaklinacza Dusz w Nekromancji" -msgstr[1] "kopie Przewodnika Zaklinacza Dusz w Nekromancji" -msgstr[2] "kopii Przewodnika Zaklinacza Dusz w Nekromancji" -msgstr[3] "kopii Przewodnika Zaklinacza Dusz w Nekromancji" - -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" -"Książka w miękkiej oprawie dla sztuki wiązania dusz nieumarłych stworzeń z " -"lalkami, wraz z naśladowaniem ich czynnika leczniczego." - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -241126,14 +241454,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -241142,13 +241470,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" @@ -241156,7 +241488,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -241165,7 +241497,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -241174,7 +241506,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -241182,7 +241514,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -241191,7 +241523,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -241199,19 +241531,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -241220,14 +241552,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -241236,7 +241568,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -241245,7 +241577,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -241254,14 +241586,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -241270,14 +241602,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -241286,14 +241618,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -241302,14 +241634,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -241318,13 +241650,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -241333,7 +241665,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -241341,7 +241673,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -241350,12 +241682,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -241364,13 +241696,99 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -241379,7 +241797,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -241390,7 +241808,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -241399,17 +241817,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -241418,7 +241836,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -241428,7 +241846,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -241437,7 +241855,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -241446,7 +241864,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -241455,13 +241873,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -241470,16 +241888,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -241488,19 +241907,19 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -241509,7 +241928,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -241518,12 +241937,12 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" @@ -241531,7 +241950,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -241540,7 +241959,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -241549,7 +241968,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -241558,14 +241977,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -241574,13 +241993,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -241589,13 +242008,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -241604,13 +242023,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -241619,144 +242038,195 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -241764,222 +242234,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "mag" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "technolog" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "uzdrowiciel" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -241987,48 +242457,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -242036,12 +242506,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -242049,12 +242519,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -242062,103 +242532,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -242167,204 +242637,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -242373,24 +242843,24 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" @@ -242399,48 +242869,68 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "Jeśli to widzisz, jest to błąd." -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "sklep magiczny" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "dach sklepu magicznego" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "antykwariat" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "bagno" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Ręczna Instalacja Implantów Bionicznych" @@ -249504,6 +249994,10 @@ msgstr "Przełącz aktywuj/badaj" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -249696,10 +250190,6 @@ msgstr "Upuść Przedmiot na Przyległe Pole" msgid "View/Activate Bionics" msgstr "Obejrzyj/Aktywuj Bioniki" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Obejrzyj/Aktywuj Mutacje" @@ -255849,6 +256339,7 @@ msgstr "BIONIKA" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -255917,6 +256408,10 @@ msgstr "WŁĄCZONE" msgid "(incapacitated)" msgstr "(unieruchomiony)" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "(oszczędzanie paliwa WŁ)" @@ -256789,6 +257284,10 @@ msgstr "%s nie ma wolnej ręki, żeby to ubrać." msgid "Can't wear more than one %s!" msgstr "Nie możesz nosić więcej niż jeden %s!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -272767,7 +273266,12 @@ msgid "Test which group?" msgstr "Testuj którą grupę?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -278843,7 +279347,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -284050,10 +284560,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "%1$s rzuca %2$s na glebę!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -288316,7 +288827,7 @@ msgstr "Domyślne świata" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -296195,6 +296706,11 @@ msgstr "Sadzarka w %s wyłącza się z uwagi na niską temperaturę." msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -296336,6 +296852,16 @@ msgstr "Silnik %s wydaje dźwięki kichnięcia." msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -296931,11 +297457,6 @@ msgstr "Skrupulatnie składasz %s w przenośną konfigurację." msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "złożony %s" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/pt_BR.po b/lang/po/pt_BR.po index 74b3aaa906e9..1a2a612b14d5 100644 --- a/lang/po/pt_BR.po +++ b/lang/po/pt_BR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Portuguese (Brazil) (https://app.transifex.com/bn-team/teams/113585/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -8395,6 +8395,17 @@ msgstr "" msgid "You can see through everything!" msgstr "Você pode ver através de tudo!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "Tomou Xanax" @@ -11883,7 +11894,7 @@ msgstr "Ligar" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "capacete de mineração (ligado) Desligue" @@ -12331,75 +12342,91 @@ msgstr "CARREGADORES" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "MUNIÇÃO" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "ARMAS BRANCAS" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "FERRAMENTAS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "ELETRÔNICOS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "ROUPAS" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "COMIDA" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "DROGAS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "LIVROS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "MAPAS" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "MODS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "MUTÁGENOS" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "BIÔNICOS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "PEÇAS PARA VEÍCULOS" @@ -12413,51 +12440,89 @@ msgstr "PEÇAS PARA VEÍCULOS" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "OUTROS" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "COMBUSTÍVEL" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "SEMENTES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "MATERIAL QUÍMICO" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "BATERIAS" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "PEÇAS SOBRESSALENTES" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "PEDRAS" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "RECIPIENTES" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "ARTEFATOS" +#: data/json/item_category.json +msgid "MAPS" +msgstr "MAPAS" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "ITENS VESTIDOS" @@ -13213,12 +13278,12 @@ msgstr "Saque: Cadáveres" msgid "Destination for corpses" msgstr "Destino para cadáveres" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -13262,6 +13327,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "Nenhum recolhimento automático" @@ -13721,7 +13957,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Esgrima" @@ -13759,7 +13995,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Esgrima" @@ -13796,7 +14032,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -13970,7 +14206,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Requisitos Maga" @@ -14092,7 +14328,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "Esgrima medieval" @@ -14167,7 +14403,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Ninjutsu" @@ -14349,7 +14585,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Silat" @@ -15540,7 +15776,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "dentado" @@ -15549,22 +15785,22 @@ msgid "gouged" msgstr "cinzelado" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "arranhado" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "cortado" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "rachado" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "destruído" @@ -15577,7 +15813,7 @@ msgid "bent" msgstr "torcido" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "amassado" @@ -15589,7 +15825,7 @@ msgstr "destruído(a)" msgid "Biosilicified Chitin" msgstr "Quitina Biosilicificada" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "lascado" @@ -15602,7 +15838,7 @@ msgid "Brass" msgstr "Latão" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "marcado" @@ -15620,7 +15856,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "rasgado" @@ -15629,12 +15865,12 @@ msgid "torn" msgstr "despedaçado" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "picado" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "esfarrapado" @@ -15694,7 +15930,7 @@ msgstr "Carne" msgid "bruised" msgstr "moído" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "fatiado" @@ -16118,7 +16354,7 @@ msgstr "auto" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -20874,12 +21110,12 @@ msgstr "" " Agora, em vez de reclamar sobre suas taxas, seus clientes tentam comer seu " "cérebro. Você não pode dizer qual é o pior ainda." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Sacerdote" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Sacerdote" @@ -20912,18 +21148,18 @@ msgstr "" "que eles estão todos mortos, provavelmente você deve encontrar algo mais " "tangível para protegê-lo." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Kannushi" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Kannushi" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20935,7 +21171,7 @@ msgstr "" "habitavam seu santuário, e não seus cadáveres apodrecendo." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -20946,12 +21182,12 @@ msgstr "" "e tarefas sagradas. Você preferia quando apenas os espíritos dos mortos " "habitavam seu santuário, e não seus cadáveres apodrecendo." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "Eu tenho" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "Mourchida" @@ -20984,18 +21220,18 @@ msgstr "" " oração. Naquela época, eles vieram de longe para ouvi-lo, agora eles vêm " "para comer seus cérebros." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "Rabino" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "Rabino" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -21003,19 +21239,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "Professor" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "Professor" @@ -21044,12 +21280,12 @@ msgstr "" " Normalmente, você pode responder a qualquer pergunta, mas mesmo assim você " "não tem certeza do que fazer com os mortos-vivos vorazes." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "Pregador" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "Pregador" @@ -21916,15 +22152,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "Skatista" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "Skatista" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -21934,7 +22170,7 @@ msgstr "" " Você ama patinar! Pelo menos agora os adultos não estão dizendo onde você " "não pode rolar." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -21944,6 +22180,34 @@ msgstr "" " Você ama patinar! Pelo menos agora os adultos não estão dizendo onde você " "não pode rolar." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -29481,7 +29745,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -29599,7 +29862,6 @@ msgstr "bala puxando" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "bigorna" @@ -29667,7 +29929,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "plástico-bolha" @@ -29689,7 +29950,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -29698,7 +29958,6 @@ msgstr[2] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -29707,7 +29966,6 @@ msgstr[2] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -29727,8 +29985,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "armadilha de urso" @@ -29762,7 +30019,6 @@ msgid "tripwire" msgstr "tripwire" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -29770,7 +30026,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -29815,7 +30070,6 @@ msgid "Swinnng!" msgstr "Swinnng!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -29834,7 +30088,6 @@ msgid "buried land mine" msgstr "mina de terra enterrada" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -29880,7 +30133,6 @@ msgid "ledge" msgstr "borda" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -29893,7 +30145,6 @@ msgstr "poço de vidro" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -29902,7 +30153,6 @@ msgstr[2] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -29915,7 +30165,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -30281,7 +30530,8 @@ msgstr "" msgid "Thunder Storm" msgstr "Tempestade" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Tempestade" @@ -30324,6 +30574,20 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -30403,7 +30667,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "metal rangendo!" @@ -30433,7 +30698,8 @@ msgstr "metal rangendo!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "clang" @@ -30790,7 +31056,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -30903,8 +31168,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "pancada!" @@ -31158,7 +31424,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "crunch!" @@ -31186,7 +31452,7 @@ msgstr "crunch!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "pio." @@ -31314,7 +31580,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -31375,7 +31640,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -31702,7 +31966,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "quebra de vidro!" @@ -31789,7 +32053,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -31816,7 +32080,7 @@ msgstr "esmagar!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "pio!" @@ -31989,7 +32253,7 @@ msgstr "Uma estátua esculpida em pedra." #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "baque." @@ -32328,7 +32592,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "batida!" @@ -32345,7 +32609,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -32360,7 +32623,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -32376,7 +32638,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -32399,7 +32660,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -32554,7 +32814,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "girassol" @@ -33424,7 +33683,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -33845,7 +34103,6 @@ msgstr "banquinho" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -33989,7 +34246,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "colchão" @@ -34015,7 +34271,6 @@ msgstr "rrrrip!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "colchão de penas" @@ -34565,9 +34820,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "lona de couro" @@ -34605,7 +34872,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "esteira de fibra" @@ -34625,7 +34891,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "mesa de turista" @@ -35131,7 +35396,6 @@ msgstr "Usado em metalurgia." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -35149,7 +35413,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -35168,7 +35431,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -35240,7 +35502,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -35281,7 +35542,6 @@ msgstr "Um forno projetado para assar cerâmica e tijolos de barro." #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -36915,7 +37175,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "baque" @@ -37333,7 +37593,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "areia" @@ -37604,7 +37863,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "concreto" @@ -39389,7 +39647,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -40034,7 +40291,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "trilho de ferrovia pequeno" @@ -41161,7 +41417,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "rocha sólida" @@ -42146,7 +42401,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "tampa de bueiro" @@ -42324,6 +42578,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -42395,7 +42685,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SE VOCÊ ESTIVER VENDO ISSO, É UM BUG." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "fios" @@ -42410,7 +42699,6 @@ msgstr "" " costura." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "nervo" @@ -42424,7 +42712,6 @@ msgstr "" "Um tendão resistente cortado de um corpo, usável como linha de costura." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "fibra vegetal" @@ -42439,7 +42726,6 @@ msgstr "" "costura." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "filamento" @@ -42464,7 +42750,6 @@ msgid "A cleansing agent made into bars." msgstr "Um agente de limpeza pessoal feito em barras." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "silver tape" @@ -42477,7 +42762,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Um rolo de uma fita incrivelmente forte. Seus usos são inúmeros." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "papel para cigarro" @@ -42490,7 +42774,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Estas são tiras finas de papel usadas para enrolar cigarros." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "fio de cobre" @@ -42543,7 +42826,6 @@ msgstr[1] "lamas de plutônio aguadas" msgstr[2] "lamas de plutônio aguadas" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "pedra" @@ -42822,7 +43104,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "Um naco de borracha útil, pode ser moldado facilmente." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "cobre" @@ -42876,7 +43157,6 @@ msgstr "" "também ser utilizado para remover contaminantes do ar e da água." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "pré-mistura de carbeto de cálcio" @@ -43137,7 +43417,6 @@ msgstr "" "Mistura de oxigênio e nitrogênio em proporções próprias para mergulho." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "acendalha" @@ -43175,7 +43454,6 @@ msgid "A metal die used to play various role-playing games" msgstr "Um dado de metal utilizado para jogar vários jogos de RPG." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "bronze" @@ -43520,7 +43798,6 @@ msgstr "projétil ferroviário ferroso" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -45708,7 +45985,6 @@ msgstr "" " oxidado para fazer agentes de branqueamento de papel." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "pedaço de enxofre" @@ -45723,7 +45999,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "cimento" @@ -45742,7 +46017,6 @@ msgstr "" " só adicionar água." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "calcário" @@ -45758,7 +46032,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "cal viva" @@ -45789,7 +46062,6 @@ msgstr "" "cimento." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "terra" @@ -45823,7 +46095,6 @@ msgstr "" "encontraralgumuso." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "sal de rocha" @@ -45837,7 +46108,6 @@ msgstr "" " Um punhado de cristais de sal-gema. Poderia ser refinado em sal de mesa." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "rodonita" @@ -45852,7 +46122,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -46326,7 +46595,6 @@ msgstr "" " foguetes simples, como foguetes doces." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "nitro" @@ -46343,7 +46611,6 @@ msgstr "" " processado para se obter salitre." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -46801,7 +47068,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -46862,7 +47128,6 @@ msgstr "" "Manuseiecom cuidado." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "miçangas de madeira" @@ -48742,7 +49007,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -48756,7 +49020,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -48915,7 +49178,6 @@ msgstr "" "dormir." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -48930,7 +49192,6 @@ msgstr "" "quentes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -48945,7 +49206,6 @@ msgstr "" "fazer roupas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -48959,7 +49219,6 @@ msgstr "" "Um pedaço pequeno de couro, pode ser usado para fazer roupas resistentes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -48974,7 +49233,6 @@ msgstr "" "lã." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -48987,7 +49245,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "Um pequeno pedaço de tecido resistente ao fogo Nomex." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -49000,7 +49257,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Um tubo de cola forte. Usado em muitas receitas de artesanato." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "cola de osso" @@ -49037,7 +49293,6 @@ msgid "A token, representing fertilization of a plant." msgstr "Ficha de fertilizante, representando a fertilização de uma planta." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "corrente de daço" @@ -49054,7 +49309,6 @@ msgstr "" "uma chance de envolver seu alvo, permitindo um ataque desarmado bônus." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "pedaço de quitina" @@ -49067,7 +49321,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "Uma parte do exoesqueleto de um inseto. É leve e muito durável." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -49100,7 +49353,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -49118,7 +49370,6 @@ msgstr "" "e notavelmente resistente." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -49133,7 +49384,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -49151,7 +49401,6 @@ msgstr "" "Desmonte para desembalar." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -49245,7 +49494,6 @@ msgstr "" "tipo de fóssil." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -49258,7 +49506,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "Um pen drive USB. Útil para manter software." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -49275,7 +49522,6 @@ msgstr "" "armazenar quantidades muito grandes de informações." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -49291,7 +49537,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "candelabro" @@ -49352,7 +49597,6 @@ msgstr "" " arremessá-la. Empunhar a mesma sem luvas resistentes é uma má ideia." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -49371,7 +49615,6 @@ msgstr "" "final do inverno e o início da primavera para colher seiva de bordo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "arame" @@ -49388,7 +49631,6 @@ msgstr "" "você encontra em cercas de arame." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "arame farpado" @@ -49401,7 +49643,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "Um pedaço de fio rígido, coberto de farpas afiadas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -49417,7 +49658,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "vergalhão" @@ -49486,7 +49726,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "Este é um sinalizador de magnésio gasto. É essencialmente lixo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "mola" @@ -49550,7 +49789,6 @@ msgstr "" "barraca está quebrada e não pode ser montada." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "elemento de aquecimento" @@ -49565,7 +49803,6 @@ msgstr "" "chaleiras elétricas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "termostato bimetálico" @@ -49581,7 +49818,6 @@ msgstr "" "bimetálica." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "televisão" @@ -49594,7 +49830,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "Uma televisão de LCD grande, cheia de eletrônicos deliciosos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "luz piloto" @@ -49639,7 +49874,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "torradeira" @@ -49654,7 +49888,6 @@ msgstr "" "fonte de peças sobressalentes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "microondas" @@ -49671,7 +49904,6 @@ msgstr "" "para peças de sucata." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -49683,9 +49915,7 @@ msgstr[2] "" msgid "A broken laptop, basically a paperweight now." msgstr "Um laptop quebrado, basicamente um peso de papel agora." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "olhobô quebrado" @@ -49702,9 +49932,7 @@ msgstr "" "Um olhobô quebrado. Muito menos ameaçador agora que não pedirá reforços. " "Poderia ser desmontado por partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -49721,7 +49949,6 @@ msgstr "" "agoraquefica mole em terra firme. Poderia ser estripado por partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -49736,7 +49963,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -49753,7 +49979,6 @@ msgstr "" "parado. Poderia ser desmontado por partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -49768,7 +49993,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -49790,7 +50014,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -49805,7 +50028,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -49822,7 +50044,6 @@ msgstr "" "está sem gasolina. Poderia ser desmontado por peças." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -49836,9 +50057,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -49856,7 +50075,6 @@ msgstr "" " de perfurar nada. Poderia ser desmontado por partes." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -49871,7 +50089,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" @@ -49879,7 +50096,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" @@ -49887,7 +50103,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -49903,7 +50118,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -49919,9 +50133,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -49939,9 +50151,7 @@ msgstr "" " manhack quebrado Um manhack quebrado. Muito menos ameaçador agora " "queficamole em terra firme. Poderia ser estripado por partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -49959,9 +50169,7 @@ msgstr "" "ameaçadoragoraque fica quieto em terra firme. Poderia ser estripado por " "partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -49978,9 +50186,7 @@ msgstr "" " hack quebrado mininuke hackA magenta quebrado. Só de olhar para " "onaufrágiofaz você tremer. Poderia ser estripado por partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -49998,9 +50204,7 @@ msgstr "" "Muitomenosameaçador agora que fica quieto em terra firme. Poderia ser " "estripadoporpartes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -50017,9 +50221,7 @@ msgstr "" " quebrado EMP hackA quebrado EMP hack. Muito menos ameaçador agora " "queficaquieto em terra firme. Poderia ser estripado por partes." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -50034,9 +50236,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -50083,7 +50283,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -50098,7 +50297,6 @@ msgstr "" " eletrônicos avançados." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -50111,7 +50309,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "Uma unidade de memória. Útil na elaboração de eletrônicos avançados." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -50124,7 +50321,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "Uma fonte de alimentação. Útil em muitas receitas de eletrônica." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -50141,7 +50337,6 @@ msgstr "" "receitas de eletrônica." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -50158,7 +50353,6 @@ msgstr "" "equipamentos de comunicação." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -50175,7 +50369,6 @@ msgstr "" "elaboração de equipamentos de comunicação." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -50190,7 +50383,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "tela pequena LCD" @@ -50207,7 +50399,6 @@ msgstr "" "receitas de eletrônica." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "lente de alta qualidade" @@ -50225,7 +50416,6 @@ msgstr "" " útil para iniciar um incêndio." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "lente de alta qualidade pequena" @@ -50243,7 +50433,6 @@ msgstr "" "Pode ser útil para criar coisas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "par de vidros escurecidos" @@ -50260,7 +50449,6 @@ msgstr "" "são feitos." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -50314,7 +50502,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "antena" @@ -50328,7 +50515,6 @@ msgstr "" "Uma simples vara de alumínio fino. Útil em muitas receitas de eletrônica." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "micro motor" @@ -50345,7 +50531,6 @@ msgstr "" "remoto. Útil em muitas receitas de eletrônica." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "placa de circuitos" @@ -50362,7 +50547,6 @@ msgstr "" "eletricamenteoscomponentes eletrônicos em um substrato não condutor." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "sucata eletrônica" @@ -50394,7 +50578,6 @@ msgstr "" "estaçãoderádio em um repetidor autônomo." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -50408,7 +50591,6 @@ msgstr "" " desk fanA pequeno ventilador, usado para propulsar o ar ao redor deumasala." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "placa de armadura de cerâmica" @@ -50439,7 +50621,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -50478,7 +50659,6 @@ msgstr "" " água a ferver." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "limpador de canos" @@ -50496,7 +50676,6 @@ msgstr "" "semelhantes. Esta é pequena o bastante para poder limpar canos de armas." #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "relógio" @@ -50523,7 +50702,6 @@ msgstr "" " clockworksUma pequena variedade de engrenagens e outros gubbins relógio." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -50536,7 +50714,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "Um cartão de memória usado. Pode valer a pena dar uma olhada." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -50554,7 +50731,6 @@ msgstr "" " para armazenar seus dados!" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -50572,7 +50748,6 @@ msgstr "" "Espero que contenha algo que valha a pena criptografar." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -50608,7 +50783,6 @@ msgstr "" "Levantá-lo do bueiro é impossível sem um pé de cabra." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -50625,7 +50799,6 @@ msgstr "" "espinhentas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "pinha" @@ -50667,7 +50840,6 @@ msgstr "" "não foram comidas pelos animais." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -50681,7 +50853,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" @@ -50689,7 +50860,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -50704,7 +50874,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "pedaço de argila" @@ -50717,7 +50886,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "Um pedaço de barro fresco. Útil para algumas receitas de artesanato." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "tijolo" @@ -50731,7 +50899,6 @@ msgstr "" "Um bloco de construção endurecido por fogo usado na construção de alvenaria." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "argamassa" @@ -50744,7 +50911,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Argamassa, pronta para ser usada em projetos de construção." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -50769,7 +50935,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -50784,7 +50949,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -50799,7 +50963,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -50812,7 +50975,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -50827,7 +50989,6 @@ msgstr "" "vidoeiro." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -50843,7 +51004,6 @@ msgstr "" "Uma folha de casca retirada de um salgueiro. Usada na produção de aspirina." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "diamante" @@ -50856,7 +51016,6 @@ msgid "A sparkling diamond." msgstr "Um diamante cintilante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "rubi-do-cabo" @@ -50869,7 +51028,6 @@ msgid "A sparkling garnet." msgstr "Um rubi-do-cabo muito brilhante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "ametista" @@ -50882,7 +51040,6 @@ msgid "A sparkling amethyst." msgstr "Uma ametista brilhante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "água-marinha" @@ -50895,7 +51052,6 @@ msgid "A sparkling aquamarine." msgstr "Uma água-marinha muito brilhante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "esmeralda" @@ -50908,7 +51064,6 @@ msgid "A sparkling emerald." msgstr "Uma esmeralda brilhante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "alexandrita" @@ -50921,7 +51076,6 @@ msgid "A sparkling alexandrite." msgstr "Uma alexandrita brilhante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "pérola" @@ -50934,7 +51088,6 @@ msgid "A lustrous pearl." msgstr "Uma pérola lustrosa." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -50947,7 +51100,6 @@ msgid "A sparkling ruby." msgstr "Um rubi brilhante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "peridoto" @@ -50960,7 +51112,6 @@ msgid "A sparkling peridot." msgstr "Um peridoto brilhante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "safira" @@ -50973,7 +51124,6 @@ msgid "A sparkling sapphire." msgstr "Uma safira cintilante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "opala" @@ -50986,7 +51136,6 @@ msgid "A lustrous opal." msgstr "Uma opala lustrosa." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "turmalina" @@ -50999,7 +51148,6 @@ msgid "A sparkling tourmaline." msgstr "Uma turmalina cintilante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "citrina" @@ -51012,7 +51160,6 @@ msgid "A sparkling citrine." msgstr "Uma citrina cintilante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "topázio" @@ -51025,7 +51172,6 @@ msgid "A sparkling blue topaz." msgstr "Um topázio azul cintilante." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -51041,7 +51187,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -51085,7 +51230,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "Representa uma mulher em um vestido." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "travesseiro" @@ -51098,7 +51242,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Um travesseiro para descansar a cabeça ao dormir." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -51115,7 +51258,6 @@ msgstr "" "personagem de anime na frente e sua versão seminua nas costas." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "travesseiro de penas" @@ -51128,7 +51270,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "Um travesseiro fofo para descansar a cabeça ao dormir." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "ursinho de pelúcia" @@ -51151,7 +51292,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -51208,7 +51348,7 @@ msgstr[2] "charutos" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "Extinguir" @@ -51344,7 +51484,6 @@ msgstr "" "Elesprecisam ser secos para se tornarem fumaráveis." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -51378,7 +51517,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -51393,7 +51531,6 @@ msgstr "" "descontonacompra de gasolina." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -51408,7 +51545,6 @@ msgstr "" " de gasolina." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -51423,7 +51559,6 @@ msgstr "" " na compra de gasolina." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -51442,7 +51577,6 @@ msgstr "" "podeconcederacesso a um painel de controle, se você puder encontrar um." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -51461,7 +51595,6 @@ msgstr "" "conceder acesso a um painel de controle, se você puder encontrar um." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -51477,7 +51610,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -51540,7 +51672,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "lâmpada" @@ -51567,7 +51698,6 @@ msgid "A twisted shard of jagged metal." msgstr "Um pedaço de metal irregular." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "vaso de planta de cerâmica" @@ -51581,7 +51711,6 @@ msgstr "" "vaso de flores de argila Pote de barro bom olhar usado para o plantio." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "vaso de planta de plástico" @@ -51743,7 +51872,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -51757,9 +51885,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -51773,9 +51899,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -51789,9 +51913,8 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" @@ -51799,7 +51922,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -51814,7 +51936,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -51831,7 +51952,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "tijolo antifogo" @@ -51895,7 +52015,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -51903,7 +52022,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -51911,7 +52029,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -52119,7 +52236,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -52288,7 +52404,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -52303,7 +52418,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -52318,7 +52432,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -52333,7 +52446,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -52346,7 +52458,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -52361,7 +52472,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -52376,7 +52486,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -52391,7 +52500,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -52404,7 +52512,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -52417,7 +52524,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -52934,7 +53040,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "software sortido" @@ -52949,7 +53054,6 @@ msgstr "" "Provavelmenteinútil." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "hackPRO" @@ -52962,7 +53066,6 @@ msgid "A piece of hacking software." msgstr "hackPROA pedaço de software de hackers." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "MediSoft" @@ -52975,7 +53078,6 @@ msgid "A piece of medical software." msgstr "MediSoftUma peça de software médico." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MateMAX" @@ -52988,7 +53090,6 @@ msgid "A piece of mathematical software." msgstr "MatheMAXA peça de software matemático." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "dados sobre infecção" @@ -53001,7 +53102,6 @@ msgid "Medical data on zombie blood." msgstr "Dados médicos sobre sangue zumbi." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "dados de laboratório" @@ -53014,7 +53114,6 @@ msgid "Research archives from a government laboratory." msgstr " Arquivos de pesquisa de um laboratório do governo." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "dados ferroviários" @@ -53027,7 +53126,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "Dados logísticos sobre rotas e horários dos trens subterrâneos." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "dados neurais" @@ -53043,7 +53141,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "arquivos de bancos de dados de circuitos integrados" @@ -53767,7 +53864,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Fechar tampa" @@ -53801,7 +53898,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Abrir tampa" @@ -58050,7 +58147,6 @@ msgstr "" " similar ou usado na fabricação de munição" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -58745,7 +58841,8 @@ msgstr "" "proteçãoextracom perda de flexibilidade marginal e peso adicional. Tem " "quatrobolsascapazes de carregar revistas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "aljava" @@ -58761,7 +58858,8 @@ msgstr "" " Quiver Um quiver de couro usado na cintura que pode conter 20 flechas. " "Ativepara armazenar flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -58777,7 +58875,8 @@ msgstr "" " Quiver Quiver Um quiver tecido a partir de tiras de casca de bétula, " "usadona cintura, que pode conter 20 flechas. Ative para armazenar flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "aljava grande" @@ -58796,7 +58895,8 @@ msgstr "" "invés de arqueiros de pé, mas nenhum deles teve que lutarcontrazumbis. Ative" " para armazenar flechas." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -59370,7 +59470,7 @@ msgstr[2] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Você embainha sua %s" @@ -59653,7 +59753,7 @@ msgstr[2] "cintos de couro" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "Você coloca seu %sno seu %s." @@ -59663,14 +59763,14 @@ msgstr "Você coloca seu %sno seu %s." #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "Cole o que em seu cinto" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "Um cinto de couro. Útil para fazer o seu par de calças servir." @@ -62711,7 +62811,7 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -71515,7 +71615,7 @@ msgstr[2] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "Lâmina de sobrevivente" @@ -80639,8 +80739,8 @@ msgstr[2] "lançadores base" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "único" @@ -80788,7 +80888,7 @@ msgstr[2] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -80809,7 +80909,7 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "chuc chuc." @@ -82898,8 +82998,7 @@ msgstr "" "sepreparadas adequadamente." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "sangue" @@ -82908,7 +83007,6 @@ msgstr[2] "sangue" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Sangue, possivelmente de um humano. Repugnante!" @@ -83131,8 +83229,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "sangue contaminado" @@ -95639,6 +95736,21 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -100317,7 +100429,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -100332,7 +100443,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "escova de cabelo" @@ -100380,7 +100490,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "pente" @@ -100416,7 +100525,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "secador de cabelo" @@ -100431,7 +100539,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "chapinha" @@ -101110,7 +101217,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "prato de cerâmica" @@ -101123,7 +101229,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "Um prato de jantar de cerâmica, sem características únicas." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "tigela de cerâmica" @@ -101136,7 +101241,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "Uma tigela de cerâmica comum para sopa." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "xícara de cerâmica" @@ -101149,7 +101253,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "Uma xícara de chá leve, feita de cerâmica. Bem estilosa." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "caneca de café" @@ -101231,7 +101334,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "prato de estanho" @@ -101244,7 +101346,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "Um prato de jantar feito de estanho, leve e barulhento." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "copo de estanho" @@ -101259,7 +101360,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -101272,7 +101372,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -101285,7 +101384,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -101300,7 +101398,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -101339,7 +101436,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -101383,7 +101479,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -101426,7 +101521,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "panela" @@ -101439,7 +101533,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "potUseful para ferver a água ao cozinhar o espaguete e mais." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "panela de ferro" @@ -101453,7 +101546,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "panela de cobre" @@ -101471,7 +101563,6 @@ msgstr "" "impediralixiviação do metal em alimentos ácidos." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "caçarola" @@ -101486,7 +101577,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "panela de sopa" @@ -101501,7 +101591,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -101525,7 +101614,6 @@ msgstr "" "tampas." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -101541,7 +101629,6 @@ msgstr "" "usadaparacozinhar." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "frigideira de aço" @@ -101555,7 +101642,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -101570,7 +101656,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -101588,7 +101673,6 @@ msgstr "" "útilquantoutensílios de cozinha adequados." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -101606,7 +101690,6 @@ msgstr "" "mas nãotãoútil quanto utensílios de cozinha adequados." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "chaleira" @@ -101974,7 +102057,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -101987,7 +102069,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "barbante grande" @@ -103454,7 +103535,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "em dobro" @@ -106917,7 +106998,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "underbarrel" @@ -107283,7 +107364,7 @@ msgstr "" "reduzligeiramente a precisão." #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "focinho" @@ -107484,7 +107565,7 @@ msgstr "" "osparafusos de besta sejam disparados." #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "mira telescópica" @@ -107626,7 +107707,7 @@ msgstr "" "aprecisão substancialmente, mas demora um pouco mais para se alinhar." #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "mira" @@ -112353,7 +112434,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -112361,7 +112441,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -112378,7 +112457,6 @@ msgstr "" " corpo e é um item ideal para cadáveres massacradores." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -112395,7 +112473,6 @@ msgstr "" " pobre, mas é decente em cadáveres." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -112410,7 +112487,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -112427,7 +112503,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -112443,7 +112518,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -112459,7 +112533,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -112475,7 +112548,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -116571,7 +116643,6 @@ msgstr "" "tipos de tecido se combinada com água e algum mordente." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -116586,7 +116657,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "folha de vidro" @@ -116612,7 +116682,6 @@ msgstr "" "Útilparareparar janelas." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "folha de vidro reforçado" @@ -116627,7 +116696,6 @@ msgstr "" " folha de vidro reforçado Uma grande folha de vidro reforçada com fiosdeaço." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "painel de vidro reforçado" @@ -116643,7 +116711,6 @@ msgstr "" "fiosdeaço." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -116752,7 +116819,6 @@ msgid "A roll of purple carpet." msgstr "Um rolo de tapete roxo." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -116769,7 +116835,6 @@ msgstr "" "destinadoaser instalado em uma porta." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -116782,7 +116847,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "cano" @@ -116798,7 +116862,6 @@ msgstr "" "receitasdeartesanato." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -116814,7 +116877,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "espeto" @@ -116831,7 +116893,6 @@ msgstr "" " em um veículo." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "tubo de cobre" @@ -116849,7 +116910,6 @@ msgstr "" "algumasreceitasde artesanato." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "lingote de alumínio" @@ -116865,7 +116925,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "bismuto" @@ -116880,7 +116939,6 @@ msgstr "" "comoumaalternativa ao chumbo." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "ouro" @@ -116898,7 +116956,6 @@ msgstr "" "umapequenafortuna, mas agora seu valor é muito diminuído." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "platina" @@ -116906,7 +116963,6 @@ msgstr[1] "platina" msgstr[2] "platina" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "zinco" @@ -116923,7 +116979,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "chumbo" @@ -116941,7 +116996,6 @@ msgstr "" " munição." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "pó de magnésio" @@ -116958,7 +117012,6 @@ msgstr "" " para construir sinalizadores e itens semelhantes." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "prata" @@ -116973,7 +117026,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -116986,7 +117038,6 @@ msgid "A small sheet of metal." msgstr "Uma pequena folha de metal." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -117003,7 +117054,6 @@ msgstr "" "útil para algumas receitas de artesanato." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -117017,7 +117067,6 @@ msgstr "" "Um pedaço pesado de aço fundido. Útil para algumas receitas de artesanato." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -117034,7 +117083,6 @@ msgstr "" " portas." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "sucata de cobre" @@ -117049,7 +117097,6 @@ msgstr "" "fazerouconsertar." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -117064,7 +117111,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -117108,7 +117154,6 @@ msgstr "" "vocêestejaperseguindo gatos." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "caco de cerâmica" @@ -117179,7 +117224,6 @@ msgstr "" " afastar da maioria das explosões." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "pedra afiada" @@ -117258,7 +117302,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -117290,7 +117333,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -117306,8 +117348,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "folha de plástico" @@ -117324,7 +117364,6 @@ msgstr "" "usado para embalagens comerciais ou selagem de janelas domiciliares." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -117339,7 +117378,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -117354,7 +117392,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -117369,7 +117406,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -117384,7 +117420,6 @@ msgstr "" "espetooupara um fogão." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -117397,7 +117432,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -117414,7 +117448,6 @@ msgstr "" "quebradaembastões pesados para ser trabalhada." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -117428,8 +117461,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "tábua" @@ -117445,7 +117477,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -117461,7 +117492,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -117478,7 +117508,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -117494,7 +117523,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -117536,7 +117564,6 @@ msgstr "" "parafácilarmazenamento, comporta 500 ml de líquido." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "cafeteira atômica" @@ -117554,7 +117581,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -117582,7 +117608,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "selador de latas" @@ -117599,7 +117624,6 @@ msgstr "" "automaticamente latas de estanho." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -117643,7 +117667,6 @@ msgstr "" " Use-o para desligá-lo." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -117665,7 +117688,6 @@ msgstr "" "pode estar suja." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -117682,7 +117704,6 @@ msgstr "" "Bomparachurrasco de fim de semana e preservar carne com fumaça." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -117699,7 +117720,6 @@ msgstr "" "comumaluz piloto acoplada. Você poderia usá-lo para cozinhar alimentos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "panela de barro" @@ -117712,7 +117732,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "Uma panela de barro cru com tampa usada para cozinhar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "moenda de barro" @@ -117725,7 +117744,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "Esta é uma simples moenda de argila movida à mão para moer grãos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "bule de barro" @@ -117738,7 +117756,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "Um bule de barro. Agora tudo que você precisa é de chá e água." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "Cafeteira elétrica" @@ -117758,7 +117775,6 @@ msgstr "" "bebidas, seassim preferir." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -117776,7 +117792,6 @@ msgstr "" "napreservaçãode alimentos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "jarro de ovos em fermentação" @@ -117807,7 +117822,6 @@ msgstr "" "Vocêpodeselar o frasco quando o processo estiver concluído." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -117825,7 +117839,6 @@ msgstr "" "paracozinhar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -117917,7 +117930,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -117934,7 +117946,6 @@ msgstr "" "picar, triturar, moer, fazer purê e misturar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -117967,7 +117978,6 @@ msgstr "" "aquecer alimentos. É utilizável apenas uma vez." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -118056,7 +118066,6 @@ msgstr "" "para desfrutar." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -118074,7 +118083,6 @@ msgstr "" "preservá-lo." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -118094,7 +118102,6 @@ msgstr "" "abastecido com produtos químicos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -118114,7 +118121,6 @@ msgstr "" "aquecimentointegradosque os modernos kits de bagunça têm." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -118138,7 +118144,6 @@ msgstr "" "alimentadocomprodutos químicos que produz fumaça. Compacto, durável e leve." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -118158,7 +118163,6 @@ msgstr "" "tempoemcomparação com métodos mais complexos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -118194,7 +118198,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -118211,7 +118214,6 @@ msgstr "" "óleodelâmpada. Ele é projetado para cozinhar comida." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -118228,7 +118230,6 @@ msgstr "" "Vem com várias cabeças para fazer vários tipos de massa." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "jarra de picles fermentando" @@ -118259,7 +118260,6 @@ msgstr "" "frasco quando o processo estiver concluído." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -118274,7 +118274,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "panela de pressão" @@ -118293,7 +118292,6 @@ msgstr "" "Também pode ser usado para reações químicas sensíveis à pressão." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -118306,7 +118304,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "quernEste é um simples quern de pedra movido a mão para moer grãos." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "jarra de chucrute fermentando" @@ -118365,7 +118362,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -118385,7 +118381,6 @@ msgstr "" "emateriaissimples, mas duráveis." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "bule de chá" @@ -118398,7 +118393,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "Um pequeno bule de metal. A hora do chá não estaria completa sem um." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -118415,7 +118409,6 @@ msgstr "" " de ar. É usado para embalar alimentos a vácuo para preservá-lo." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "ferro para waffle" @@ -118511,7 +118504,6 @@ msgstr "" "sertãoconfortável quanto uma cama, é melhor do que batê-lo no chão." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -118528,6 +118520,23 @@ msgstr "Você desdobra a bicicleta cuidadosamente e a prepara para andar." msgid "This is a bicycle folded into a relatively portable package." msgstr "Esta é uma bicicleta dobrada em um pacote relativamente portátil." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -118536,7 +118545,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -118596,7 +118604,6 @@ msgstr "" " para transportar." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -118630,7 +118637,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -118647,7 +118653,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "câmera" @@ -118667,7 +118672,6 @@ msgstr "" "convencionais." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -118686,7 +118690,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "celular" @@ -118720,7 +118723,6 @@ msgstr "" "relógio que inclui um alarme." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -118736,7 +118738,6 @@ msgid "You stop lighting up the screen." msgstr "celular - FlashlightVocê para de iluminar a tela." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "laptop de controle" @@ -118752,7 +118753,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -118784,7 +118784,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -118799,9 +118798,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -118824,7 +118821,6 @@ msgstr "" "poruso." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -118845,7 +118841,6 @@ msgstr "" "Estáatualmente desligado." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -118867,7 +118862,6 @@ msgstr "" "desligueouescaneie a si mesmo ou no chão. Está atualmente em." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -118901,7 +118895,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -118938,7 +118931,6 @@ msgstr "" "Isso também obscurece sua audição." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -118971,7 +118963,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -118988,7 +118979,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "smartphone" @@ -119075,7 +119065,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -119093,7 +119082,6 @@ msgstr "" "edescontrair." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -119118,7 +119106,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -119134,7 +119121,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "pé-de-cabra" @@ -119153,7 +119139,6 @@ msgstr "" "também pode usá-lo para bater em algumas cabeças." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -119171,7 +119156,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -119189,7 +119173,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -119209,7 +119192,6 @@ msgstr "" "fechadas ouolevantamento de tampas de inspeção." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -119226,7 +119208,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -120346,7 +120327,6 @@ msgstr "" "umassobio alto, vomitando grandes quantidades de fumaça." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -120363,7 +120343,6 @@ msgstr "" "que pode funcionar como um isqueiro ineficiente." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -120384,7 +120363,6 @@ msgstr "" "bastantedifícilcomeçar um incêndio usando esta ferramenta." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -120405,7 +120383,6 @@ msgstr "" " ebastante difícil começar um incêndio usando esta ferramenta." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -120421,7 +120398,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -120441,7 +120417,6 @@ msgstr "" "paraacenderitens próximos em chamas." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -120459,7 +120434,6 @@ msgstr "" "océuensolarado." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -120481,7 +120455,6 @@ msgstr "" "próximos emchamas." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -120526,7 +120499,6 @@ msgstr "" " Este é um isqueiro com tampa flip top e tanque reabastecido. Está aceso." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -120560,7 +120532,6 @@ msgstr "" "umlongo tempo, para iniciar incêndios sem ferramentas modernas." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -120603,7 +120574,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -120633,7 +120603,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -120651,7 +120620,6 @@ msgstr "" "paraserecuperar entre balanços." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -120722,7 +120690,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -120737,7 +120704,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -120774,7 +120740,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "anzol" @@ -120787,7 +120752,6 @@ msgid "A simple fishing hook." msgstr "Um gancho de pesca simples." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "anzol improvisado" @@ -120800,7 +120764,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "Um gancho de pesca improvisado esculpido em madeira ou osso." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -120818,7 +120781,6 @@ msgstr "" "umgancho." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -120836,7 +120798,6 @@ msgstr "" "todos." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -120854,7 +120815,6 @@ msgstr "" "munições." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -120873,7 +120833,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "extrator de balas cinético" @@ -120904,7 +120863,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "faca de cobre" @@ -120940,7 +120898,6 @@ msgstr "" "virtualmentenenhumespaço em seus bolsos." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -120957,7 +120914,6 @@ msgstr "" "colméias. Dá uma arma corpo a corpo passável." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -121006,7 +120962,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "vara de escavação" @@ -121023,7 +120978,6 @@ msgstr "" "cavar. Pode ser usado para cavar poços rasos, mas não profundos." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -121039,7 +120993,6 @@ msgstr "" "larvasevermes." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -121056,7 +121009,6 @@ msgstr "" "cultivável em uma pilha de terra, ou cavar um buraco raso." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -121089,7 +121041,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -121108,7 +121059,6 @@ msgstr "" "éincrivelmentedifícil de usar para qualquer coisa, mas a sua finalidade." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -121137,7 +121087,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -121156,7 +121105,6 @@ msgstr "" "éincrivelmentedifícil de usar para qualquer coisa, mas sua finalidade." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -121208,7 +121156,6 @@ msgstr "" "item para desativá-lo." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "lâmpada atômica" @@ -121231,7 +121178,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "lâmpada atômica (coberta)" @@ -121256,7 +121202,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "luz de leitura atômica" @@ -121266,7 +121211,7 @@ msgstr[2] "luzes de leitura atômicas" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "Você fecha a tampa da luz noturna." @@ -121281,7 +121226,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "luz noturna atômica (coberta) " @@ -121293,7 +121237,7 @@ msgstr[2] "luzes noturnas atômicas (cobertas)" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "Você abre a tampa da luz noturna." @@ -121353,7 +121297,6 @@ msgstr "" "acende-lo. Essa vela está acessa." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -121400,7 +121343,6 @@ msgid "You turn the lamp off." msgstr "lanterna elétrica (on) Você desliga a lâmpada." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -121587,7 +121529,6 @@ msgstr "" "durarcerca de meia hora antes de queimar." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -121749,7 +121690,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -121794,7 +121734,6 @@ msgstr "" " Um pequeno LED de luz, destinado a ler livros no escuro. Este está ligado." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -121852,7 +121791,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "Tocha de luz da tocha" @@ -121860,7 +121799,7 @@ msgstr "Tocha de luz da tocha" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Você acende a tocha." @@ -121879,7 +121818,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "A tocha está extinta." @@ -121893,7 +121832,6 @@ msgstr "" "materialinflamável. Está queimando, produzindo muita luz." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -121970,7 +121908,6 @@ msgstr "" "especializado, e não pode ser administrado manualmente." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -122023,7 +121960,6 @@ msgstr "" "aoladoadverte contra o uso de mais de duas doses por hora." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -122061,7 +121997,6 @@ msgstr "" "deasmaou inalação de fumaça, e pode fornecer uma breve explosão de energia." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -122074,7 +122009,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "syringeA seringa médica. Usado para administrar drogas intravenosas." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "termômetro" @@ -122106,7 +122040,6 @@ msgstr "" "pode fornecer uma breve explosão de energia." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -122125,7 +122058,6 @@ msgstr "" "seja de você ou de um cadáver em que você está." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -122164,7 +122096,6 @@ msgstr "" "dasreceitasde fabricação de metais." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -122182,7 +122113,6 @@ msgstr "" "defabricação de metais." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -122200,7 +122130,6 @@ msgstr "" "Vocêpodeusá-los para cortar cadeados ou cabos de bitola pesada." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -122226,7 +122155,6 @@ msgstr "" "oxigênio." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -122244,7 +122172,6 @@ msgstr "" "demetais." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -122261,7 +122188,6 @@ msgstr "" "algumasreceitasde fabricação de metais." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -122278,7 +122204,6 @@ msgstr "" "Você poderia usá-lo para trabalhar metais." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -122296,7 +122221,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -122337,7 +122261,6 @@ msgstr "" "lentodequeima." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "forno de carvão vegetal aceso" @@ -122381,7 +122304,6 @@ msgstr "" "umaarmadura efetiva." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -122399,7 +122321,6 @@ msgstr "" "metais." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -122444,7 +122365,6 @@ msgstr "" "debuzina." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "despertador" @@ -122591,7 +122511,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -122636,7 +122555,6 @@ msgstr "" " volta do eixo perto da cabeça. Você precisa acendê-lo antesdefotografar." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -122660,7 +122578,6 @@ msgstr "" "oparadesenrolar e colocar no chão." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "gancho de escalada" @@ -122688,7 +122605,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -122752,7 +122668,6 @@ msgstr "" "aosistemaelétrico de um carro." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -122790,7 +122705,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -122895,7 +122809,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -122953,7 +122866,6 @@ msgstr "" "númerosparaacessar o elevador no sarcófago de resíduos perigosos." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -123140,7 +123052,6 @@ msgstr "" "arparece se reunir em torno dele." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -123292,7 +123203,6 @@ msgstr "" " dele. Você sente que uma vez pertenceu ao melhor que já existiu." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -123311,7 +123221,6 @@ msgstr "" "umanimal adequado para capturar, use-o em uma peça vazia paraliberar." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -123330,7 +123239,6 @@ msgstr "" "deatacar, ou comecem a atacar inimigos se eles forem dóceis no momento." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -123343,7 +123251,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -123356,7 +123263,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -123371,7 +123277,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -123389,7 +123294,6 @@ msgstr "" "adequadoparacapturar, use-o em uma peça vazia para liberar." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -123404,7 +123308,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -123446,7 +123349,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "controle remoto de carrinho" @@ -123465,7 +123367,6 @@ msgstr "" "fossem para o modelo de luxo?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "carrinho de controle remoto" @@ -123510,7 +123411,6 @@ msgstr "" "anexadoa certos itens e ativá-los depois de receber um sinal de rádio." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "rádio (desligado)" @@ -123545,7 +123445,6 @@ msgstr "" "próximas." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -123560,7 +123459,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "controle remoto de veículo" @@ -123655,7 +123553,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -123674,7 +123571,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "barômetro" @@ -123706,7 +123602,6 @@ msgstr "" "dela." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "conjunto de química" @@ -123726,7 +123621,6 @@ msgstr "" "se você quiser." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "conjunto básico de química" @@ -123746,7 +123640,6 @@ msgstr "" "de calor." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -123779,7 +123672,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -123794,7 +123686,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -123808,7 +123699,6 @@ msgstr "" " higrômetroUm higrômetro de plástico que pode ler a umidade relativa do ar." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -123823,7 +123713,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -123838,7 +123727,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -123902,7 +123790,6 @@ msgstr "" "distância quando ativado." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -123921,7 +123808,6 @@ msgstr "" "dadosmeteorológicos. Nenhum sinal do FLDSMDFR, no entanto." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "conjunto básico de análise de laboratório" @@ -123945,7 +123831,6 @@ msgstr "" " você criou é o que você acha que fez." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "balança de pesos pequenos" @@ -123962,7 +123847,6 @@ msgstr "" "deslizantes para medir a massa de uma amostra com bastante precisão." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "espectrofotômetro" @@ -123979,7 +123863,6 @@ msgstr "" "uma amostra líquida em um tubo especial chamado de cubeta ou cuvete." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "medidor de pH" @@ -123998,7 +123881,6 @@ msgstr "" " uma substância, você pode calcular a acidez." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -124015,7 +123897,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -124040,7 +123921,6 @@ msgstr "" "ecomo é puro." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -124058,7 +123938,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "detector de luz" @@ -124075,7 +123954,6 @@ msgstr "" " de entrada em energia elétrica para quantificação." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "prisma de vidro" @@ -124108,7 +123986,6 @@ msgstr "" "vocêpoderia querer saber sobre isso?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -124125,7 +124002,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -124143,7 +124019,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -124162,7 +124037,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -124181,7 +124055,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -124202,7 +124075,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -124220,7 +124092,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -124283,7 +124154,6 @@ msgstr "" "Usepara colocar. Este abrigo foi danificado e precisa de reparos." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -124300,7 +124170,6 @@ msgstr "" "umagrandequantidade de espaço, mas é muito volumoso." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -124315,7 +124184,6 @@ msgstr "" "Useparacolocar." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -124399,7 +124267,6 @@ msgstr "" "fogo." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -124412,7 +124279,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -124425,7 +124291,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -124441,7 +124306,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -124454,7 +124318,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Um pedaço de papel. Pode ser usado para incêndios." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -124470,7 +124333,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -124485,7 +124347,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "par de agulhas de tricô" @@ -124503,7 +124364,6 @@ msgstr "" "transformar linha e fio em pano." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -124534,7 +124394,6 @@ msgstr "" "neoprene." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -124551,8 +124410,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -124588,8 +124446,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -124606,7 +124463,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -124619,7 +124475,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -124632,7 +124487,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -124681,7 +124535,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "lâmina de navalha" @@ -124712,7 +124565,6 @@ msgstr "" "comsabão. Requer 1 unidade de sabão por uso." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -124758,7 +124610,6 @@ msgstr "" "unidadedesabão por uso." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -124775,7 +124626,6 @@ msgstr "" "lavarroupa imunda se for fornecido com agente de limpeza." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -124818,7 +124668,6 @@ msgstr "" "vocêestivercarregando uma pá, você terá a opção de enterrá-lo." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -124842,7 +124691,6 @@ msgstr "" "grandeforça. A armadilha forma uma área de efeito 3x3." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "armadilha de tábua com pregos" @@ -124896,7 +124744,6 @@ msgstr "" "ruídoquandoalgo pisar nele." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -124918,7 +124765,6 @@ msgstr "" "Seuma vítima desavisada pisar em uma delas, ela terá uma espinha no pé." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -124975,7 +124821,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -125004,7 +124849,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -125043,7 +124887,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -125065,7 +124908,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "machado de lenha" @@ -125097,7 +124939,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -125142,7 +124983,6 @@ msgstr "" "Use-o para desligá-lo." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -125193,7 +125033,6 @@ msgstr "" "lo." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "machado de cobre" @@ -125226,7 +125065,6 @@ msgstr "" "éútiltanto para cortar coisas quanto para usar como um martelo." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -125339,7 +125177,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -125353,7 +125190,6 @@ msgstr "" " serrote de madeiraEsta é uma serra fina, útil para cortar objetosdemadeira." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "formão de pedra" @@ -125362,7 +125198,6 @@ msgstr[2] "formões de pedra" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -125510,7 +125345,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -125525,7 +125359,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -125540,7 +125373,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "forno de tijolo" @@ -125558,7 +125390,6 @@ msgstr "" "coisafeitade argila." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -125576,7 +125407,6 @@ msgstr "" "limparfibraspara uso na produção de têxteis." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -125591,7 +125421,6 @@ msgstr "" " tinta." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -125606,7 +125435,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -125622,7 +125450,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "betoneira" @@ -125640,7 +125467,6 @@ msgstr "" "aquecedorembutido." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -125656,7 +125482,6 @@ msgstr "" "umaseleçãode brocas." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "roca e fuso" @@ -125673,7 +125498,6 @@ msgstr "" "fios e novelos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -125689,7 +125513,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -125717,7 +125540,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -125751,7 +125573,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -125768,7 +125589,6 @@ msgstr "" "você rapidamente." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -125785,7 +125605,6 @@ msgstr "" "Podeserusado para criar ou extrair combustível de um veículo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -125800,7 +125619,6 @@ msgstr "" "deelevação." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -125817,7 +125635,6 @@ msgstr "" "içarveículos se você for corajoso o suficiente para usá-lo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -125831,7 +125648,6 @@ msgstr "" " jack scissor Um jack de tesoura compacto usado para veículos de elevação." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -125850,7 +125666,6 @@ msgstr "" "parafazerum buraco no terreno sólido adjacente." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -125865,7 +125680,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -125887,7 +125701,6 @@ msgstr "" "sistema deenergiade um veículo." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -125907,7 +125720,6 @@ msgstr "" "Requer25 cargas de bateria por uso." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -125922,7 +125734,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -125937,7 +125748,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -125954,7 +125764,6 @@ msgstr "" "usadaparasuavizar concreto, ou argamassa, em projetos de construção." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -125987,7 +125796,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -126004,7 +125812,6 @@ msgstr "" "moldadoeusado para fabricar itens feitos de plástico." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -126021,7 +125828,6 @@ msgstr "" "projetadaquecombina várias ferramentas menores nas alças de um alicate." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -126045,7 +125851,6 @@ msgstr "" "barreiras de metal." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -126058,7 +125863,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "escova de pinturaUm pincel largo, adequado para pintar paredes." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -126076,7 +125880,6 @@ msgstr "" "terra!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -126091,7 +125894,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -126107,7 +125909,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -126141,7 +125942,6 @@ msgstr "" " ser comparado a um bom." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -126159,7 +125959,6 @@ msgstr "" "temmuitomais usos." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -126177,7 +125976,6 @@ msgstr "" "certaspara umtrabalho mais preciso." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -126197,7 +125995,6 @@ msgstr "" "longoprazo. Requer 100 cargas de bateria por uso." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -126232,7 +126029,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -126250,7 +126046,6 @@ msgstr "" "econstrução doméstica." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -126281,7 +126076,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -126296,7 +126090,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -126314,7 +126107,6 @@ msgstr "" " como um maníaco improvisado." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -126331,7 +126123,6 @@ msgstr "" "paraos patches ou fios de feltro." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -126353,7 +126144,6 @@ msgstr "" "paraaçougueiro com cadáveres." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -126370,7 +126160,6 @@ msgstr "" " a corpo decente, e é usado em muitas receitas de artesanato demecânica." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -126386,7 +126175,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -127837,6 +127625,18 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -128223,7 +128023,6 @@ msgstr "" "nos diasem que ascrianças queriam sorvete mais do que cérebros." #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -128735,6 +128534,14 @@ msgstr[2] "" msgid "A crude wooden table." msgstr "Uma mesa de madeira crua." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -129101,6 +128908,32 @@ msgstr "" " conjunto de rodízios Um conjunto de rodízios, como em um carrinho " "decompras." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -129958,13 +129791,6 @@ msgstr "CIMENTO" msgid "FERTILIZER" msgstr "FERTILIZANTE" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "PEDRAS" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -130293,13 +130119,6 @@ msgstr "PAPEL" msgid "PLASTIC" msgstr "PLÁSTICO" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "ELETRÔNICOS" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -130859,7 +130678,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -130883,7 +130702,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Dor" @@ -135297,7 +135116,7 @@ msgstr[2] "multi-fogões do mal" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "O multi-fogão tem uma mente própria! Tenha cuidado!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "holograma" @@ -135306,7 +135125,7 @@ msgstr[2] "hologramas" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "Uma imagem feita da luz, quase idêntica ao real." @@ -146230,9 +146049,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "Vamos trocar itens." @@ -146965,9 +146784,9 @@ msgstr "O que você está fazendo aqui?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -146983,9 +146802,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "Posso fazer alguma coisa para você?" @@ -147013,25 +146832,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "Por que você não vai a outro lugar?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "Vamos negociar então." #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -147051,9 +146870,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -153727,7 +153546,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "Ei ." @@ -164088,17 +163907,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -165401,7 +165220,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -171310,9 +171129,9 @@ msgstr "Tem algum conselho de sobrevivência?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "Adeus." @@ -181271,7 +181090,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Floresta" @@ -181651,7 +181469,7 @@ msgid "island" msgstr "ilha" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "cabine" @@ -181673,7 +181491,6 @@ msgstr "porão da cabine" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "floresta" @@ -184426,7 +184243,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "praia de lago" @@ -184473,7 +184289,7 @@ msgstr "ARMA" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "TUDO" @@ -184598,6 +184414,13 @@ msgstr "ELETRÔNICO" msgid "CBMS" msgstr "MBCS" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "FERRAMENTAS" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -184611,7 +184434,7 @@ msgstr "ILUMINAÇÃO" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "ARMADURAS" @@ -184652,7 +184475,7 @@ msgstr "MEDICAMENTO" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "MATERIAIS" @@ -195356,7 +195179,7 @@ msgstr "quadro de luz dobrável" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -195459,6 +195282,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "luzes do corredor" @@ -197367,6 +197197,24 @@ msgstr "" " Um conjunto de pequenas rodas, montadas em pivôs, como as de uma cadeira de" " escritório ou carrinho de supermercado." +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -197440,7 +197288,7 @@ msgstr "" " Uma folha de vidro que permite ver fora do veículo. Reforçado com arame " "para dificultar a ruptura do que o vidro normal." -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "Bicicleta" @@ -197508,6 +197356,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "canoa" @@ -197653,8 +197505,8 @@ msgid "Wheelbarrow" msgstr "Carrinho de mão" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "Cadeira de rodas dobrável" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -197996,7 +197848,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "Van de segurança" @@ -204986,7 +204837,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -204994,8 +204845,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -205975,9 +205826,9 @@ msgstr[2] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -205991,7 +205842,7 @@ msgstr[2] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -224067,74 +223918,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -224144,177 +223927,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -225540,116 +225152,135 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -225657,38 +225288,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -225696,95 +225328,105 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "Pele Arcana" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "Quitina Demoníaca" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "Oricalco" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -225792,24 +225434,72 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -225817,25 +225507,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -225843,25 +225533,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "Druída" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "Druída" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -225869,7 +225559,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -225877,7 +225567,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -225887,7 +225577,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -225897,7 +225587,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -225907,7 +225597,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -225917,7 +225607,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -225926,7 +225616,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -225935,7 +225625,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -225945,7 +225635,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -225954,18 +225644,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -225974,7 +225664,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -225982,18 +225672,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -226003,7 +225693,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -226012,18 +225702,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -226031,25 +225721,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -226057,59 +225747,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "POÇÕES" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "RUNAS" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -226118,7 +225840,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -226127,25 +225849,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "Igreja" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -226157,7 +225879,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -226168,25 +225890,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -226196,7 +225918,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -226206,592 +225928,645 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -226803,245 +226578,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -227049,487 +226797,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -227537,321 +227305,365 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -227859,20 +227671,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -227880,74 +227692,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -227955,21 +227767,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -227977,105 +227789,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -228083,16 +227919,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -228100,74 +227936,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -228175,350 +228011,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "Benção" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "Sua energia se dispersa." #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "Queimadura ácida" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "Queimado com ácido" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "Você se sente forte!" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "Sua força diminui." #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "Você nota pequenos detalhes!" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "Sua visão retorna ao normal." #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "Aterrorizado" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -228526,7 +228362,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -228534,7 +228370,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -228542,49 +228378,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" @@ -228592,13 +228392,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" @@ -228606,13 +228406,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" @@ -228620,13 +228420,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -228634,59 +228434,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -228694,14 +228448,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" @@ -228709,13 +228463,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -228724,43 +228478,13 @@ msgstr[2] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -228768,14 +228492,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" @@ -228783,15 +228507,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -228799,47 +228522,47 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "sangue de dragão" msgstr[1] "sangue de dragão" msgstr[2] "sangue de dragão" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -228847,7 +228570,7 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" @@ -228857,7 +228580,7 @@ msgstr "" "Tem uma chance muito alta de permanecer intacta após o disparo, mas só pode " "ser disparada com Ichaival." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -228866,13 +228589,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" @@ -228880,13 +228603,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" @@ -228894,13 +228617,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -228909,13 +228632,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -228924,13 +228647,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -228939,13 +228662,13 @@ msgstr[2] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -228953,38 +228676,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -228992,13 +228690,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" @@ -229006,14 +228704,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -229021,24 +228719,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -229046,13 +228744,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -229061,12 +228759,12 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "par de botas de couro de dragão negro" @@ -229075,14 +228773,14 @@ msgstr[2] "pares de botas de couro de dragão negro" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" "Botas feitas de couro de dragão negro. Protegem muito bem, e são " "surpreendentemente leves." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" @@ -229090,13 +228788,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" @@ -229104,13 +228802,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" @@ -229118,14 +228816,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" @@ -229133,14 +228831,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -229149,20 +228847,20 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "par de luvas de couro de dragão negro" msgstr[1] "pares de luvas de couro de dragão negro" msgstr[2] "pares de luvas de couro de dragão negro" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -229171,13 +228869,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -229186,13 +228884,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -229201,13 +228899,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -229216,14 +228914,14 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" @@ -229231,14 +228929,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" @@ -229246,14 +228944,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" @@ -229261,14 +228959,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" @@ -229276,14 +228974,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -229292,12 +228990,12 @@ msgstr[2] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -229305,7 +229003,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -229313,13 +229011,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -229327,180 +229025,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" @@ -229508,13 +229039,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" @@ -229522,13 +229053,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" @@ -229536,13 +229067,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" @@ -229550,13 +229081,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" @@ -229564,13 +229095,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" @@ -229578,13 +229109,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" @@ -229592,13 +229123,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" @@ -229606,13 +229137,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" @@ -229620,14 +229151,146 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "cinto de ferramentas do Tecnomante" +msgstr[1] "cintos de ferramentas do Tecnomante" +msgstr[2] "cintos de ferramentas do Tecnomante" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" +"Um cinto de utilidades customizado, feito de couro, que instantaneamente " +"cria qualquer ferramenta que você requisite. Ative para sacar ou guardar uma" +" arma." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" @@ -229635,7 +229298,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -229644,7 +229307,7 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" @@ -229652,11 +229315,11 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" @@ -229664,12 +229327,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "carne de dragão" @@ -229677,14 +229340,14 @@ msgstr[1] "carnes de dragão" msgstr[2] "carnes de dragão" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" @@ -229692,12 +229355,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" @@ -229705,13 +229368,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" @@ -229719,14 +229382,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -229734,13 +229397,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -229748,13 +229411,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -229762,13 +229425,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -229776,4589 +229439,5212 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "cinto da força +2" -msgstr[1] "cintos da força +2" -msgstr[2] "cintos da força +2" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "" + +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" + +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "lâmpada mágica" +msgstr[1] "lâmpadas mágicas" +msgstr[2] "lâmpadas mágicas" + +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "Uma fonte de luz mágica que ilumina uma pequena área." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "luz mágica" +msgstr[1] "luzes mágicas" +msgstr[2] "luzes mágicas" + +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "cinto de ferramentas do Tecnomante" -msgstr[1] "cintos de ferramentas do Tecnomante" -msgstr[2] "cintos de ferramentas do Tecnomante" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -"Um cinto de utilidades customizado, feito de couro, que instantaneamente " -"cria qualquer ferramenta que você requisite. Ative para sacar ou guardar uma" -" arma." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" -msgstr[0] "botas de sete léguas" -msgstr[1] "pares de botas de sete léguas" -msgstr[2] "pares de botas de sete léguas" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "" + +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" + +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" + +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "mana cristalizada" +msgstr[1] "mana cristalizada" +msgstr[2] "mana cristalizada" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." msgstr "" +"Um pouco de mana cristalizado. Isso pode ser usado para abastecer cristais " +"de mana recarregáveis, mas não poderá ser retirado novamente." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" +msgstr[0] "cristal de mana pequeno" +msgstr[1] "cristais de mana pequenos" +msgstr[2] "cristais de mana pequenos" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" +"Isto é um pequeno cristal de mana, projetado especificamente para ser preso " +"a pontas de varinha." -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Mjölnir" +msgstr[1] "Mjölnirs" +msgstr[2] "Mjölnirs" + +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" -msgstr[0] "cubo de calor" -msgstr[1] "cubos de calor" -msgstr[2] "cubos de calor" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "Ativar modo de tocha" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" -msgstr[0] "cubo de calor (tocha acesa)" -msgstr[1] "cubos de calor (tocha acesa)" -msgstr[2] "cubos de calor (tocha acesa)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "A chama da tocha é extinguida." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" -msgstr[0] "caixa de aranha" -msgstr[1] "caixas de aranha" -msgstr[2] "caixas de aranha" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" -"Isto é uma pequena caixa de vidro que contém uma aranha, trabalhando " -"diligentemente dia e noite para produzir fios de seda, que são então " -"armazenados em um recipiente que você pode abrir para coletar." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" - -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" - -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" - -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" - -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" - -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" - -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" - -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" - -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" - -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" + +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "Varinha Mágica" -msgstr[1] "Varinhas Mágicas" -msgstr[2] "Varinhas Mágicas" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" -msgstr[0] "Varinha Descartável" -msgstr[1] "Varinhas Descartáveis" -msgstr[2] "Varinhas Descartáveis" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "cinto da força +2" +msgstr[1] "cintos da força +2" +msgstr[2] "cintos da força +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "botas de sete léguas" +msgstr[1] "pares de botas de sete léguas" +msgstr[2] "pares de botas de sete léguas" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "lâmpada mágica" -msgstr[1] "lâmpadas mágicas" -msgstr[2] "lâmpadas mágicas" - -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "Uma fonte de luz mágica que ilumina uma pequena área." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "luz mágica" -msgstr[1] "luzes mágicas" -msgstr[2] "luzes mágicas" - -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" - -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "mana cristalizada" -msgstr[1] "mana cristalizada" -msgstr[2] "mana cristalizada" - -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" -"Um pouco de mana cristalizado. Isso pode ser usado para abastecer cristais " -"de mana recarregáveis, mas não poderá ser retirado novamente." - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" -msgstr[0] "cristal de mana pequeno" -msgstr[1] "cristais de mana pequenos" -msgstr[2] "cristais de mana pequenos" - -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" -"Isto é um pequeno cristal de mana, projetado especificamente para ser preso " -"a pontas de varinha." - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Mjölnir" -msgstr[1] "Mjölnirs" -msgstr[2] "Mjölnirs" - -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" - -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" +msgstr[0] "cubo de calor" +msgstr[1] "cubos de calor" +msgstr[2] "cubos de calor" + +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "Ativar modo de tocha" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" +msgstr[0] "cubo de calor (tocha acesa)" +msgstr[1] "cubos de calor (tocha acesa)" +msgstr[2] "cubos de calor (tocha acesa)" + +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "A chama da tocha é extinguida." + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" +msgstr[0] "caixa de aranha" +msgstr[1] "caixas de aranha" +msgstr[2] "caixas de aranha" + +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" +"Isto é uma pequena caixa de vidro que contém uma aranha, trabalhando " +"diligentemente dia e noite para produzir fios de seda, que são então " +"armazenados em um recipiente que você pode abrir para coletar." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" +msgstr[0] "Varinha Mágica" +msgstr[1] "Varinhas Mágicas" +msgstr[2] "Varinhas Mágicas" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" +msgstr[0] "Varinha Descartável" +msgstr[1] "Varinhas Descartáveis" +msgstr[2] "Varinhas Descartáveis" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -234366,14 +234652,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -234381,20 +234667,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -234402,7 +234692,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -234411,7 +234701,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -234419,7 +234709,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -234427,7 +234717,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -234435,19 +234725,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "presença aterrorizante" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "presença assustadora" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "presença horripilante" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -234455,14 +234745,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -234470,7 +234760,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -234479,7 +234769,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -234487,14 +234777,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -234502,14 +234792,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -234517,14 +234807,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -234532,14 +234822,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -234547,13 +234837,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -234561,7 +234851,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -234569,7 +234859,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -234577,12 +234867,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -234590,13 +234880,94 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -234604,7 +234975,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -234615,7 +234986,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -234623,17 +234994,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -234641,7 +235012,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -234651,7 +235022,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -234659,7 +235030,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -234668,7 +235039,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -234676,13 +235047,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -234690,16 +235061,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -234707,19 +235079,19 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -234727,7 +235099,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -234736,19 +235108,19 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -234756,7 +235128,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -234765,7 +235137,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -234773,14 +235145,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -234788,13 +235160,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -234802,13 +235174,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -234816,13 +235188,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -234830,144 +235202,192 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -234975,222 +235395,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -235198,48 +235618,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "Tecnomante" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -235247,12 +235667,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -235260,12 +235680,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "Druída" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -235273,103 +235693,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -235378,204 +235798,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -235583,24 +236003,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" @@ -235608,48 +236028,68 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "Isso parece um bug" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "loja de mágica" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "telhado de loja de mágica" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "loja de livros usados" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "Pântano" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Instalação Biônica Manual" @@ -242540,6 +242980,10 @@ msgstr "Alternar ativar/examinar" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -242732,10 +243176,6 @@ msgstr "Largar Item no Espaço Adjacente" msgid "View/Activate Bionics" msgstr "Ver/Ativar Biônicos" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Ver/Ativar Mutações" @@ -248834,6 +249274,7 @@ msgstr "BIÔNICA" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -248902,6 +249343,10 @@ msgstr "EM" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -249763,6 +250208,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -265587,7 +266036,12 @@ msgid "Test which group?" msgstr "Teste qual grupo?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -271627,7 +272081,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -276821,10 +277281,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -281064,7 +281525,7 @@ msgstr "Padrões do Mundo" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -288908,6 +289369,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -289049,6 +289515,16 @@ msgstr "O motor de %s emitiu um som estranho." msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -289647,11 +290123,6 @@ msgstr "Você meticulosamente encaixa o (a) %s numa configuração portátil." msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "%s dobrado(a)" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/ru_RU.po b/lang/po/ru_RU.po index 190332fe6145..2dad434496d6 100644 --- a/lang/po/ru_RU.po +++ b/lang/po/ru_RU.po @@ -31,7 +31,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Russian (Russia) (https://app.transifex.com/bn-team/teams/113585/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -8906,6 +8906,17 @@ msgstr "Отладочное ясновидение" msgid "You can see through everything!" msgstr "Вы можете видеть сквозь всё!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "Принят ксанакс" @@ -12452,7 +12463,7 @@ msgstr "Включить" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "Выключить" @@ -12900,75 +12911,91 @@ msgstr "МАГАЗИНЫ" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "БОЕПРИПАСЫ" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "ОРУЖИЕ" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "ИНСТРУМЕНТЫ" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "ЭЛЕКТРОНИКА" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "ОДЕЖДА" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "ЕДА" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "ПРЕПАРАТЫ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "КНИГИ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "ЗАКЛИНАНИЯ" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "КАРТЫ" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "МОДИФИКАЦИИ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "МУТАГЕНЫ" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "БИОНИКА" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "ДЕТАЛИ МАШИН" @@ -12982,51 +13009,89 @@ msgstr "ДЕТАЛИ МАШИН" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "ПРОЧЕЕ" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "ТОПЛИВО" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "СЕМЕНА" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "ХИМИКАТЫ" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "БАТАРЕИ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "ЗАПЧАСТИ" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "КАМНИ" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "КОНТЕЙНЕРЫ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "АРТЕФАКТЫ" +#: data/json/item_category.json +msgid "MAPS" +msgstr "КАРТЫ" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "НАДЕТЫЕ ВЕЩИ" @@ -13785,12 +13850,12 @@ msgstr "Предметы: трупы" msgid "Destination for corpses" msgstr "Место для трупов" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "Предметы: карты" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "Место для навигационных карт." @@ -13837,6 +13902,177 @@ msgstr "" "Избранные вещи внутри этой зоны игнорируются при использовании «сортировки " "предметов» в зоне." +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "Без автоподбора" @@ -14381,7 +14617,7 @@ msgstr "" "\n" "Точность возрастает на 25% Интеллекта, но снижается на 25% Ловкости." -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "Эскрима" @@ -14422,7 +14658,7 @@ msgstr "" "\n" "+2 Точность." -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "Фехтование" @@ -14466,7 +14702,7 @@ msgstr "" "Блокируемый урон снижается на 50% Ловкости." #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "«Цветок Битвы»" @@ -14671,7 +14907,7 @@ msgstr "" "Урон по блоку снижен на 25% от Силы.\n" "+1.0 к навыку Уворота" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "Крав-мага" @@ -14816,7 +15052,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "Средневековый бой на мечах" @@ -14906,7 +15142,7 @@ msgstr "" "\n" "Блокируемый урон снижается на 50% Силы." -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "Ниндзюцу" @@ -15133,7 +15369,7 @@ msgstr "" "Длится 1 ход." #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "Силат" @@ -16490,7 +16726,7 @@ msgid "Resin" msgstr "смола" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "испорчено" @@ -16499,22 +16735,22 @@ msgid "gouged" msgstr "поцарапано" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "поцарапанный" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "порезано" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "треснуло" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "раскуроченное" @@ -16527,7 +16763,7 @@ msgid "bent" msgstr "погнуто" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "разбитый" @@ -16539,7 +16775,7 @@ msgstr "уничтожено" msgid "Biosilicified Chitin" msgstr "биосилицированный хитин" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "щербатое" @@ -16552,7 +16788,7 @@ msgid "Brass" msgstr "латунь" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "помятый" @@ -16570,7 +16806,7 @@ msgstr "картон" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "порвано" @@ -16579,12 +16815,12 @@ msgid "torn" msgstr "дырявый" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "изодранный" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "лохмотья" @@ -16644,7 +16880,7 @@ msgstr "плоть" msgid "bruised" msgstr "помятый" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "разорвано" @@ -17071,7 +17307,7 @@ msgstr "авто" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -22095,12 +22331,12 @@ msgstr "" "Теперь вместо того, чтобы жаловаться на стоимость твоих услуг, клиенты " "пытаются съесть твой мозг. Ты даже не знаешь, что хуже." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "Священник" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "Священница" @@ -22133,18 +22369,18 @@ msgstr "" "мертвы, и тебе бы не помешало найти что-нибудь более существенное для своей " "защиты." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "Каннуси" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "Каннуси" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -22156,7 +22392,7 @@ msgstr "" "умерших, а не их гниющие трупы." #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -22167,12 +22403,12 @@ msgstr "" "и священнодействия. Тебе он нравился больше, когда в нём обитали только духи" " умерших, а не их гниющие трупы." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "Имам" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "Имам" @@ -22205,18 +22441,18 @@ msgstr "" "приходили издалека, чтобы послушать тебя, теперь же они приходят съесть твои" " мозги." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "Раввин" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "Рабанит" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -22226,7 +22462,7 @@ msgstr "" "сейчас мессия вам бы не помешал!" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -22235,12 +22471,12 @@ msgstr "" "Ты была вместе со своей паствой в храме, когда разразился Катаклизм. Прямо " "сейчас мессия вам бы не помешал!" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "Гуру" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "Гуру" @@ -22269,12 +22505,12 @@ msgstr "" "можете ответить на любой вопрос, но даже вы не совсем уверены, что делать с " "голодной нежитью." -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "Проповедник" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "Проповедница" @@ -23163,15 +23399,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "Роллер" +msgid "Skater Boy (Rollerblades)" +msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "Роллерша" +msgid "Skater Girl (Rollerblades)" +msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -23181,7 +23417,7 @@ msgstr "" "Ты любишь кататься на коньках! По крайней мере, теперь взрослые не запретят " "тебе кататься, где хочется." -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -23191,6 +23427,34 @@ msgstr "" "Ты любишь кататься на коньках! По крайней мере, теперь взрослые не запретят " "тебе кататься, где хочется." +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -31057,7 +31321,6 @@ msgid "awl" msgstr "шило" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "изогнутая игла" @@ -31176,7 +31439,6 @@ msgstr "извлечения пуль" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "наковальня" @@ -31246,7 +31508,6 @@ msgstr[2] "нет" msgstr[3] "нет" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "пузырчатая плёнка" @@ -31269,7 +31530,6 @@ msgid "Crunch!" msgstr "Треск!" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "раскладушка" @@ -31279,7 +31539,6 @@ msgstr[3] "раскладушка" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "воронка" @@ -31289,7 +31548,6 @@ msgstr[3] "воронка" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "самодельная воронка" @@ -31310,8 +31568,7 @@ msgid "microlab shifting hall" msgstr "сдвигающийся коридор микролаборатории" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "медвежий капкан" @@ -31346,7 +31603,6 @@ msgid "tripwire" msgstr "растяжка" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "самодельная сигнализация" @@ -31355,7 +31611,6 @@ msgstr[2] "самодельных сигнализаций" msgstr[3] "самодельные сигнализации" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "растяжка с арбалетом" @@ -31402,7 +31657,6 @@ msgid "Swinnng!" msgstr "«Вжииих!»" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "фугас" @@ -31422,7 +31676,6 @@ msgid "buried land mine" msgstr "зарытый фугас" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "площадка телепорта" @@ -31469,7 +31722,6 @@ msgid "ledge" msgstr "уступ" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "мина-ловушка" @@ -31483,7 +31735,6 @@ msgstr "яма со стеклом" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "кожаная воронка" @@ -31493,7 +31744,6 @@ msgstr[3] "кожаная воронка" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "берестяная воронка" @@ -31507,7 +31757,6 @@ msgstr "воронка водосточной трубы" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "металлическая воронка" @@ -31874,7 +32123,8 @@ msgstr "Ливень" msgid "Thunder Storm" msgstr "Грозовой ливень" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "Ливень с грозой" @@ -31922,6 +32172,21 @@ msgstr "" "начинает казаться, что вы падаете в небо, глядя сверху вниз на себя и " "окрестности, что были сокрыты от ваших глаз ранее." +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -32003,7 +32268,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "скрежет металла!" @@ -32033,7 +32299,8 @@ msgstr "скрежет металла!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "лязг!" @@ -32413,7 +32680,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "духовка" @@ -32539,8 +32805,9 @@ msgstr "Ветряная турбина, подключённая к элект #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "«хрясь!»" @@ -32823,7 +33090,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "треск!" @@ -32851,7 +33118,7 @@ msgstr "треск!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "«бум»." @@ -33000,7 +33267,6 @@ msgstr "Вы включаете холодильник." #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "холодильник" @@ -33067,7 +33333,6 @@ msgstr "Вы включаете морозильник." #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "морозильник" @@ -33417,7 +33682,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "звон разбитого стекла!" @@ -33504,7 +33769,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -33531,7 +33796,7 @@ msgstr "грохот!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "«бум!»" @@ -33717,7 +33982,7 @@ msgstr "Скульптура, вырезанная из камня." #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "стук." @@ -34079,7 +34344,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "«хрясь!»" @@ -34098,7 +34363,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "жаровня" @@ -34113,7 +34377,6 @@ msgstr "Металлическая тарелка на ножках для бе #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "печь бродяги" @@ -34132,7 +34395,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "бочка для разведения огня (200 литров)" @@ -34159,7 +34421,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "бочка для разведения огня (100 литров)" @@ -34332,7 +34593,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "подсолнечник" @@ -35339,7 +35599,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "водоочиститель" @@ -35785,7 +36044,6 @@ msgstr "табуретка" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "складной стул" @@ -35943,7 +36201,6 @@ msgstr "хрясь." #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "матрас" @@ -35972,7 +36229,6 @@ msgstr "«хррррр!»" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "пуховой матрас" @@ -36556,9 +36812,21 @@ msgstr "" "Крепкий верстак, изготовленный из металла. Идеален для изготовления больших " "и тяжёлых предметов." +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "кожаная подстилка" @@ -36600,7 +36868,6 @@ msgstr "треск." #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "циновка" @@ -36621,7 +36888,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "туристический столик" @@ -37162,7 +37428,6 @@ msgstr "Обычно используется в металлообработк #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "самогонный аппарат" @@ -37181,7 +37446,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "углевыжигательная печь" @@ -37201,7 +37465,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "углевыжигательная печь (полна)" @@ -37280,7 +37543,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "металлическая коптильня" @@ -37324,7 +37586,6 @@ msgstr "Печь для обжига глиняной керамики и кир #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "стремянка" @@ -39056,7 +39317,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "стук" @@ -39493,7 +39754,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "песок" @@ -39777,7 +40037,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "бетон" @@ -41763,7 +42022,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "плутониевый генератор" @@ -42499,7 +42757,6 @@ msgstr "Знак, обозначающий пересечение путей. Е #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "маленький ж/д путь" @@ -43675,7 +43932,6 @@ msgstr "Стена, полностью состоящая из воска." #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "сплошной камень" @@ -44747,7 +45003,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "крышка люка" @@ -44926,6 +45181,42 @@ msgstr "железная дорога вверх (нижний участок)" msgid "The lower end of rail track leading up." msgstr "Нижний участок железной дороги, ведущей вверх." +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -45008,7 +45299,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ЕСЛИ ВЫ ВИДИТЕ ЭТО, ЗНАЧИТ ЭТО БАГ." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "нитки" @@ -45022,7 +45312,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "Несколько катушек ниток. Подойдут, чтобы пополнить швейный набор." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "сухожилия" @@ -45037,7 +45326,6 @@ msgstr "" "Прочные сухожилия, вырезанные из трупа. Можно использовать в качестве нити." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "растительное волокно" @@ -45053,7 +45341,6 @@ msgstr "" "качестве нити." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "пряжа" @@ -45080,7 +45367,6 @@ msgid "A cleansing agent made into bars." msgstr "Средство для мытья в форме бруска." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "монтажный скотч" @@ -45096,7 +45382,6 @@ msgstr "" "применений." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "сигаретная бумага" @@ -45110,7 +45395,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Полоски тонкой бумаги для скрутки сигарет." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "медный провод" @@ -45173,7 +45457,6 @@ msgstr[2] "разбавленная плутониевая суспензия" msgstr[3] "разбавленная плутониевая суспензия" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "камень" @@ -45478,7 +45761,6 @@ msgstr "" "Кусок пригодной к использованию резины, ему можно легко придать форму." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "медь" @@ -45537,7 +45819,6 @@ msgstr "" "воздуха и воды." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "премикс карбида кальция" @@ -45814,7 +46095,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Смесь кислорода и азота в подходящих для дайвинга пропорциях." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "трут" @@ -45854,7 +46134,6 @@ msgid "A metal die used to play various role-playing games" msgstr "Металлический кубик, используемый для различных ролевых игр." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "бронза" @@ -46215,7 +46494,6 @@ msgstr "ферромагнитный снаряд" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "УБП" @@ -48884,7 +49162,6 @@ msgstr "" "бактерий и людей, или окислить для получения отбеливателя бумаги." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "кусок серы" @@ -48900,7 +49177,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "цемент" @@ -48920,7 +49196,6 @@ msgstr "" "использовать для всех видов сложного строительства. Просто добавь воды." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "известняк" @@ -48937,7 +49212,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "негашёная известь" @@ -48969,7 +49243,6 @@ msgstr "" "цемента." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "грунт" @@ -49004,7 +49277,6 @@ msgstr "" "оружия, но его щелочные свойства могут пригодиться." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "каменная соль" @@ -49019,7 +49291,6 @@ msgstr "" "Пригоршня кристаллов каменной соли. Можно очистить до поваренной соли." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "родонит" @@ -49037,7 +49308,6 @@ msgstr "" "множеством жилок. Их можно извлечь при помощи долота." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "цинкит" @@ -49539,7 +49809,6 @@ msgstr "" "такого как карамельное ракетное топливо." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "кристалл селитры" @@ -49557,7 +49826,6 @@ msgstr "" "переработать в молотую селитру." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "кусок железной руды" @@ -50056,7 +50324,6 @@ msgstr "" "же замечательный мухлёжный ингредиент, чтобы желе лучше застывало." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "стальная решётка" @@ -50118,7 +50385,6 @@ msgstr "" "Маленькая дробинка расщепляемого материала. Использовать с осторожностью." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "деревянная бусина" @@ -52124,7 +52390,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "стеклянный холодильник" @@ -52141,7 +52406,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "стеклянный морозильник" @@ -52320,7 +52584,6 @@ msgstr "" "спать." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "шкура" @@ -52334,7 +52597,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "Маленький комок меха животных. Используется для пошива тёплой одежды." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "кусок искусственного меха" @@ -52350,7 +52612,6 @@ msgstr "" "пошива одежды." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "кожаный лоскут" @@ -52366,7 +52627,6 @@ msgstr "" "одежды." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "лоскут войлока" @@ -52380,7 +52640,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "Небольшой лоскут войлока, можно разобрать на шерстяные нити." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "лоскут номекса" @@ -52394,7 +52653,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "Маленьких кусок огнеупорной ткани из номекса." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "суперклей" @@ -52408,7 +52666,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Тюбик сильного клея. Используется во многих рецептах." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "костный клей" @@ -52450,7 +52707,6 @@ msgid "A token, representing fertilization of a plant." msgstr "Используется для удобрения растений." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "стальная цепь" @@ -52469,7 +52725,6 @@ msgstr "" "противника, и вы сможете нанести дополнительный удар рукой." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "кусок хитина" @@ -52483,7 +52738,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "Кусок панциря насекомого. Лёгкий и очень прочный." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "связка газовых мешочков" @@ -52524,7 +52778,6 @@ msgstr "" "керамики. Они напоминают чешуйки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "кусок биосилицированного хитина" @@ -52543,7 +52796,6 @@ msgstr "" "необыкновенно прочный." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "связка тряпок" @@ -52561,7 +52813,6 @@ msgstr "" "разберите для распаковки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "связка кож" @@ -52580,7 +52831,6 @@ msgstr "" "распаковки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "связка войлока" @@ -52682,7 +52932,6 @@ msgstr "" "ископаемое." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "USB накопитель" @@ -52696,7 +52945,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "USB флеш-накопитель. Полезен для хранения программного обеспечения." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "карта памяти" @@ -52714,7 +52962,6 @@ msgstr "" "объёмы информации." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "данные МЧС" @@ -52734,7 +52981,6 @@ msgstr "" "изъято с серверов МЧС и сохранено на внешнем жёстком диске." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "подсвечник" @@ -52799,7 +53045,6 @@ msgstr "" "Брать его в руки без надетых прочных перчаток будет плохой идеей." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "бурав для дерева" @@ -52819,7 +53064,6 @@ msgstr "" "кленового сока." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "проволока" @@ -52837,7 +53081,6 @@ msgstr "" "проволочных оградах." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "колючая проволока" @@ -52851,7 +53094,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "Моток жёсткой проволоки, покрытой острыми зубцами." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "стальная сетка" @@ -52871,7 +53113,6 @@ msgstr "" "но нынче лучше вешать сетку-рабицу." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "арматура" @@ -52943,7 +53184,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "Это использованный магниевый осветительный снаряд. По сути — хлам." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "пружина" @@ -53009,7 +53249,6 @@ msgstr "" " Эта палатка повреждена и не может быть развёрнута." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "нагревательный элемент" @@ -53025,7 +53264,6 @@ msgstr "" " чайниках." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "биметаллический термостат" @@ -53042,7 +53280,6 @@ msgstr "" "пластинки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "телевизор" @@ -53056,7 +53293,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "Большой ЖК-телевизор, полный вкусной электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "запальник" @@ -53107,7 +53343,6 @@ msgstr "" "стабильной взрывчатки при сильном ударном воздействии." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "тостер" @@ -53122,7 +53357,6 @@ msgstr "" "Небольшой тостер. Не особо полезен в качестве чего-либо кроме как запчастей." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "микроволновка" @@ -53140,7 +53374,6 @@ msgstr "" "Годится на металлолом." #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "ноутбук" @@ -53153,9 +53386,7 @@ msgstr[3] "ноутбук" msgid "A broken laptop, basically a paperweight now." msgstr "Сломанный ноутбук. Годится, разве что, для пресс-папье." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "сломанный глазобот" @@ -53173,9 +53404,7 @@ msgstr "" "Сломанный глазобот. Сейчас он не станет требовать подкрепления и не " "представляет угрозы. Можно разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "сломанный робот-жук" @@ -53193,7 +53422,6 @@ msgstr "" "Можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "сломанный лабораторный оборонный робот" @@ -53211,7 +53439,6 @@ msgstr "" "вытекла. Его можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "сломанный робот-полицейский" @@ -53229,7 +53456,6 @@ msgstr "" "представляет угрозы. Можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "сломанный робот-медсестра" @@ -53247,7 +53473,6 @@ msgstr "" "Можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "сломанный бакалейный робот" @@ -53274,7 +53499,6 @@ msgstr "" "Можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "сломанный робот-носильщик" @@ -53292,7 +53516,6 @@ msgstr "" "поврежденный корпус. Сгодится только для разборки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "сломанный робот осназа" @@ -53310,7 +53533,6 @@ msgstr "" " и он не представляет угрозы. Можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "сломанный робот-прототип" @@ -53327,9 +53549,7 @@ msgstr "" "Сломанный робот-прототип, то есть ещё более сломанный, чем раньше. Его можно" " разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "сломанный робот-сапёр" @@ -53348,7 +53568,6 @@ msgstr "" "подряд. Можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "сломанный разведывательный мех" @@ -53364,7 +53583,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "Сломанный костюм-экзоскелет. Похоже, сломан безвозвратно." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "сломанный погрузочный мех" @@ -53373,7 +53591,6 @@ msgstr[2] "сломанных погрузочных мехов" msgstr[3] "сломанные погрузочные мехи" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "сломанный боевой мех" @@ -53382,7 +53599,6 @@ msgstr[2] "сломанных боевых мехов" msgstr[3] "сломанные боевые мехи" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "сломанный робот-носитель осназа" @@ -53401,7 +53617,6 @@ msgstr "" "мэнхаками, мотор тих и неподвижен. Можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "сломанный военный робот-носитель" @@ -53421,9 +53636,7 @@ msgstr "" "видно в его животе, выведены из строя, их разрушительная мощь всё ещё " "внушает страх даже сейчас. Можно разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "сломанный мэнхак" @@ -53442,9 +53655,7 @@ msgstr "" "Сломанный мэнхак. Теперь он лежит на земле и мало чем угрожает. Его можно " "разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "сломанный дрон-граната" @@ -53462,9 +53673,7 @@ msgstr "" "Сломанный дрон-граната. Теперь он лежит на земле и мало чем угрожает. Его " "можно разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "сломанный дрон с ядерной мини-бомбой" @@ -53482,9 +53691,7 @@ msgstr "" "Сломанный дрон с ядерной мини-бомбой. Даже простой взгляд на обломки " "вызывает у вас дрожь. Его можно разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "сломанный дрон со слезоточивой гранатой" @@ -53502,9 +53709,7 @@ msgstr "" "Сломанный дрон со слезоточивой гранатой. Теперь он лежит на земле и мало чем" " угрожает. Его можно разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "сломанный дрон с ЭМИ-гранатой" @@ -53522,9 +53727,7 @@ msgstr "" "Сломанный дрон с ЭМИ-гранатой. Теперь он лежит на земле и мало чем угрожает." " Его можно разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "сломанный дрон со светошумовой гранатой" @@ -53542,9 +53745,7 @@ msgstr "" "Сломанный дрон со светошумовой гранатой. Теперь он лежит на земле и мало чем" " угрожает. Его можно разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "сломанный дрон с зарядом С-4" @@ -53594,7 +53795,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "материнская плата" @@ -53610,7 +53810,6 @@ msgstr "" "электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "ОЗУ" @@ -53624,7 +53823,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "Планка памяти. Используется для создания продвинутой электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "преобразователь напряжения" @@ -53638,7 +53836,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "Блок питания. Используется во многих рецептах электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "усилитель" @@ -53656,7 +53853,6 @@ msgstr "" " электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "передатчик" @@ -53674,7 +53870,6 @@ msgstr "" "коммуникационных устройств." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "приёмник" @@ -53692,7 +53887,6 @@ msgstr "" "коммуникационной аппаратуры." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "большой ЖК-дисплей" @@ -53710,7 +53904,6 @@ msgstr "" "Используется в некоторых рецептах электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "маленький ЖК-дисплей" @@ -53728,7 +53921,6 @@ msgstr "" "Полезен для создания электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "высококачественная линза" @@ -53747,7 +53939,6 @@ msgstr "" "Может пригодиться при разведении огня." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "малая высококачественная линза" @@ -53766,7 +53957,6 @@ msgstr "" "света. Может пригодиться при создании предметов." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "пара тонированных стекол" @@ -53783,7 +53973,6 @@ msgstr "" "Пара маленьких тёмных стёкол. Такие стёкла вставляются в солнечные очки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "перегоревшая бионика" @@ -53843,7 +54032,6 @@ msgstr "" "миллионы, но теперь вряд ли сгодятся на более, чем крутое пресс-папье." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "антенна" @@ -53858,7 +54046,6 @@ msgstr "" "Простой алюминиевый стержень. Используется во многих рецептах электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "микромотор" @@ -53876,7 +54063,6 @@ msgstr "" "Используется во многих рецептах электроники." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "печатная плата" @@ -53894,7 +54080,6 @@ msgstr "" "подложке." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "электронный компонент" @@ -53928,7 +54113,6 @@ msgstr "" "ретранслятор." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "настольный вентилятор" @@ -53944,7 +54128,6 @@ msgstr "" "комнате." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "пластина керамической брони" @@ -53978,7 +54161,6 @@ msgstr "" "зовут Хосс. Похоже, у рыбки крошечные рога." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "тряпка" @@ -54019,7 +54201,6 @@ msgid "" msgstr "Пропитанный кровью крупный кусок ткани. Можно отмыть в кипящей воде." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "шомпол" @@ -54039,7 +54220,6 @@ msgstr "" " нагара." #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "часы" @@ -54067,7 +54247,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "Небольшой набор шестерёнок и прочей мелочи от часовых механизмов." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "SD-карта" @@ -54081,7 +54260,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "На карте памяти что-то есть. Пожалуй, стоит заглянуть." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "SD-карта (пусто)" @@ -54100,7 +54278,6 @@ msgstr "" "использовать её для хранения ваших данных." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "SD-карта (зашифровано)" @@ -54119,7 +54296,6 @@ msgstr "" "ценное." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "SD-карта с научными данными" @@ -54159,7 +54335,6 @@ msgstr "" " нереально." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "сосновая ветка" @@ -54176,7 +54351,6 @@ msgstr "" "Ветка сосны, сочащаяся клейким соком и ощетинившаяся колючими иголками." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "сосновая шишка" @@ -54220,7 +54394,6 @@ msgstr "" "съедены животными." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "цветок ромашки" @@ -54236,7 +54409,6 @@ msgstr "" "Белые цветки ромашки, применялись в качестве лекарства с древних времён." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "цветок лотоса" @@ -54245,7 +54417,6 @@ msgstr[2] "цветков лотоса" msgstr[3] "цветки лотоса" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "цветок молочая" @@ -54263,7 +54434,6 @@ msgstr "" "приступа астмы." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "комок глины" @@ -54277,7 +54447,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "Свежий кусок глины. Используется в некоторых рецептах." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "кирпич" @@ -54291,7 +54460,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "Обожжённый в огне блок, используемый в каменных конструкциях." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "цементный раствор" @@ -54305,7 +54473,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Цементный раствор, готовый к применению в строительстве." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "мягкий саманный кирпич" @@ -54334,7 +54501,6 @@ msgstr "" "высыхать, чтобы переработать в большом количестве." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "саманный кирпич" @@ -54351,7 +54517,6 @@ msgstr "" "Спрессованная смесь земли и природных волокон, высушенная в твёрдый кирпич." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "саманный раствор" @@ -54369,7 +54534,6 @@ msgstr "" "высыхании. С её помощью можно скрепить большие тяжёлые куски грязи и глины." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "дубовина" @@ -54385,7 +54549,6 @@ msgstr "" "кожи." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "береста" @@ -54399,7 +54562,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "Кусок жёсткой, влагостойкой коры, снятой с берёзы." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "ивовая кора" @@ -54415,7 +54577,6 @@ msgid "" msgstr "Кусок коры, снятый с ивы. Используется в производстве аспирина." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "алмаз" @@ -54429,7 +54590,6 @@ msgid "A sparkling diamond." msgstr "Сверкающий алмаз." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "гранат" @@ -54443,7 +54603,6 @@ msgid "A sparkling garnet." msgstr "Сверкающий гранат." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "аметист" @@ -54457,7 +54616,6 @@ msgid "A sparkling amethyst." msgstr "Сверкающий аметист." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "аквамарин" @@ -54471,7 +54629,6 @@ msgid "A sparkling aquamarine." msgstr "Сверкающий аквамарин." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "изумруд" @@ -54485,7 +54642,6 @@ msgid "A sparkling emerald." msgstr "Сверкающий изумруд." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "александрит" @@ -54499,7 +54655,6 @@ msgid "A sparkling alexandrite." msgstr "Сверкающий александрит." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "жемчуг" @@ -54513,7 +54668,6 @@ msgid "A lustrous pearl." msgstr "Блестящая жемчужина." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "рубин" @@ -54527,7 +54681,6 @@ msgid "A sparkling ruby." msgstr "Сверкающий рубин." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "хризолит" @@ -54541,7 +54694,6 @@ msgid "A sparkling peridot." msgstr "Сверкающий хризолит." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "сапфир" @@ -54555,7 +54707,6 @@ msgid "A sparkling sapphire." msgstr "Сверкающий сапфир." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "опал" @@ -54569,7 +54720,6 @@ msgid "A lustrous opal." msgstr "Блестящий опал." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "турмалин" @@ -54583,7 +54733,6 @@ msgid "A sparkling tourmaline." msgstr "Сверкающий турмалин." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "цитрин" @@ -54597,7 +54746,6 @@ msgid "A sparkling citrine." msgstr "Сверкающий цитрин." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "топаз" @@ -54611,7 +54759,6 @@ msgid "A sparkling blue topaz." msgstr "Сверкающий голубой топаз." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "обработанная шкура" @@ -54631,7 +54778,6 @@ msgstr "" "пригодные для использования кожаные лоскуты." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "обработанная меховая шкурка" @@ -54681,7 +54827,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "Старая соломенная кукла. Выглядит как женщина в платье." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "подушка" @@ -54695,7 +54840,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Подушка, на которую можно положить голову во время сна." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "дакимакура" @@ -54713,7 +54857,6 @@ msgstr "" "спереди и того же персонажа, но весьма скудно одетого, сзади." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "пуховая подушка" @@ -54727,7 +54870,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "Пуховая подушка, на которую можно положить голову во время сна." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "плюшевый мишка" @@ -54751,7 +54893,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "пачка денег" @@ -54811,7 +54952,7 @@ msgstr[3] "сигара" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "Потушить" @@ -54955,7 +55096,6 @@ msgstr "" "будет курить." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "кредитка" @@ -54992,7 +55132,6 @@ msgstr "" "Наверно, в ней содержатся упомянутые по интеркому данные." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "серебряная дисконтная карта АЗС" @@ -55006,7 +55145,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Эта карта даёт вам небольшую скидку при покупке топлива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "золотая дисконтная карта АЗС" @@ -55020,7 +55158,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Эта карта даёт вам хорошую скидку при покупке топлива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "платиновая дисконтная карта АЗС" @@ -55034,7 +55171,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "Эта карта даёт отличную скидку при покупке топлива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "пропуск учёного" @@ -55053,7 +55189,6 @@ msgstr "" "полосу; с её помощью можно однократно получить доступ к панели управления." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "пропуск военного" @@ -55073,7 +55208,6 @@ msgstr "" "управления." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "пропуск промышленного техника" @@ -55094,7 +55228,6 @@ msgstr "" "конечно найти куда его вставлять." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "лист неопрена" @@ -55165,7 +55298,6 @@ msgstr "" "качестве оружия." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "лампочка" @@ -55194,7 +55326,6 @@ msgid "A twisted shard of jagged metal." msgstr "Перекрученный и зазубренный осколок металла." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "глиняный горшок для цветов" @@ -55208,7 +55339,6 @@ msgid "A nice looking clay pot used for planting." msgstr "Красивый глиняный горшок, используется для посадки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "пластиковый горшок цветочный" @@ -55378,7 +55508,6 @@ msgstr "" "паяльной станцией." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "усилитель НЧ" @@ -55395,9 +55524,7 @@ msgstr "" "Усилитель звука. Обычно соединяется с акустическими колонками для усиления " "звука музыкальных инструментов. Сейчас годится разве что на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "сломанная турель" @@ -55414,9 +55541,7 @@ msgstr "" "Сломанная турель. Теперь она лежит на земле и мало чем угрожает. Её можно " "разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "сломанная турель осназа" @@ -55433,9 +55558,8 @@ msgstr "" "Сломанная турель для подавления беспорядков. Теперь она лежит на земле и " "мало чем угрожает. Её можно разобрать на запчасти." -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "сломанная лазерная турель" @@ -55444,7 +55568,6 @@ msgstr[2] "сломанных лазерных турелей" msgstr[3] "сломанная лазерная турель" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "сломанный робохран" @@ -55462,7 +55585,6 @@ msgstr "" "разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "сломанный TALON M202A1" @@ -55482,7 +55604,6 @@ msgstr "" "жидкость вытекла. Его можно разобрать на запчасти." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "огнеупорный кирпич" @@ -55558,7 +55679,6 @@ msgstr "" "скота. Не лижите его, он невкусный." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "сломанная лёгкая турель" @@ -55567,7 +55687,6 @@ msgstr[2] "сломанных лёгких турелей" msgstr[3] "сломанные лёгкие турели" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "сломанная средняя военная турель " @@ -55576,7 +55695,6 @@ msgstr[2] "сломанных средних военных турелей" msgstr[3] "сломанные средние военные турели" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "сломанная дальнобойная военная турель" @@ -55806,7 +55924,6 @@ msgstr "" "но может гореть довольно долго. Свеча горит. Лицо меняется." #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "йольский венок" @@ -55989,7 +56106,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "Шаблон модуля роботов. Если вы нашли его в игре, то это баг." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "модуль прицеливания" @@ -56007,7 +56123,6 @@ msgstr "" "датчиков, необходимую для точного прицеливания." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "модуль идентификации" @@ -56025,7 +56140,6 @@ msgstr "" "отличить союзника от противника." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "модуль поиска пути" @@ -56043,7 +56157,6 @@ msgstr "" "поиска наилучшего возможного пути." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "модуль памяти" @@ -56057,7 +56170,6 @@ msgid "Allows for storage and recovery of information." msgstr "Позволяет хранить и вызывать информацию." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "сенсорная батарея" @@ -56073,7 +56185,6 @@ msgid "" msgstr "Разнообразные датчики для возможности воспринимать окружающий мир." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "модуль самонаблюдения" @@ -56091,7 +56202,6 @@ msgstr "" "сам себя." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "ядро ИИ" @@ -56107,7 +56217,6 @@ msgid "" msgstr "Этот модуль ответственен за принятие решений. По сути, это ИИ робота." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "базовое ядро ИИ" @@ -56121,7 +56230,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "Очень простое ядро ИИ с минимальными мыслительными возможностями." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "продвинутое ядро ИИ" @@ -56135,7 +56243,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "Продвинутое ядро ИИ с впечатляющими мыслительными возможностями." #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "система управления оружием" @@ -56816,7 +56923,6 @@ msgstr[2] "программное обеспечение" msgstr[3] "программное обеспечение" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "разнообразное программное обеспечение." @@ -56830,7 +56936,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Разнообразное ПО для разных целей. Наверняка бесполезное." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "ВзломПРО" @@ -56844,7 +56949,6 @@ msgid "A piece of hacking software." msgstr "Хакерское ПО." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "МедСофт" @@ -56858,7 +56962,6 @@ msgid "A piece of medical software." msgstr "Медицинское ПО." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "МатеМАКС" @@ -56872,7 +56975,6 @@ msgid "A piece of mathematical software." msgstr "Математическое ПО." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "данные об инфекции" @@ -56886,7 +56988,6 @@ msgid "Medical data on zombie blood." msgstr "Медицинские данные о крови зомби." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "данные лабораторных исследований" @@ -56900,7 +57001,6 @@ msgid "Research archives from a government laboratory." msgstr "Исследовательские архивы из правительственной лаборатории." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "данные о движении поездов" @@ -56916,7 +57016,6 @@ msgstr "" "времени." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "нейроданные" @@ -56936,7 +57035,6 @@ msgstr "" "Как бы то ни было, вам весьма не по душе идея вечно держать частичку себя в металлической капсуле." #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "архивы данных интегральных схем" @@ -57726,7 +57824,7 @@ msgstr[3] "атомные налобные фонари" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "Закрыть крышку" @@ -57765,7 +57863,7 @@ msgstr[3] "атомные налобные фонари (закрыты)" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "Открыть крышку" @@ -62452,7 +62550,6 @@ msgstr "" "или же использовать его при создании боеприпасов." #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "гвоздь" @@ -63207,7 +63304,8 @@ msgstr "" " дополнительную защиту за счет незначительного увеличения веса и " "скованности. Имеет четыре кармана для хранения магазинов." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "колчан" @@ -63223,7 +63321,8 @@ msgid "" msgstr "" "Кожаный колчан на пояс, вмещает 20 стрел. Активируйте, чтобы убрать стрелы." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "берестяной колчан" @@ -63240,7 +63339,8 @@ msgstr "" "Колчан на пояс из полос бересты, вмещает 20 стрел. Активируйте, чтобы убрать" " стрелы." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "большой колчан" @@ -63259,7 +63359,8 @@ msgstr "" "Исторически использовался конными лучниками, реже пехотинцами, но НИКОГДА не" " использовался для борьбы с зомби. Активируйте, чтобы убрать стрелы." -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "большой берестяной колчан" @@ -63880,7 +63981,7 @@ msgstr[3] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "Вы убираете %s." @@ -64183,7 +64284,7 @@ msgstr[3] "кожаный ремень" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "Вы прикрепили %s на %s." @@ -64193,14 +64294,14 @@ msgstr "Вы прикрепили %s на %s." #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "Что прикрепить к поясу?" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "Кожаный ремень. Полезен для того, чтобы подтянуть штаны по фигуре." @@ -67403,7 +67504,7 @@ msgstr[3] "пара перчаток выживальщика" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -77430,7 +77531,7 @@ msgstr[3] "походные рюкзаки" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "Вложить клинок в ножны" @@ -87432,8 +87533,8 @@ msgstr[3] "базовый гранатомёт" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "одиночный" @@ -87600,7 +87701,7 @@ msgstr[3] "базовый дробовик" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -87623,7 +87724,7 @@ msgstr[2] "помповых дробовиков" msgstr[3] "помповый дробовик" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "чик-чик." @@ -89889,8 +89990,7 @@ msgstr "" "деликатес." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "кровь" @@ -89900,7 +90000,6 @@ msgstr[3] "кровь" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "Кровь, возможно человеческая. Отвратительно!" @@ -90152,8 +90251,7 @@ msgstr "" "многих продуктах и проектах." #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "заражённая кровь" @@ -103793,6 +103891,22 @@ msgstr "" "вещество, обладающее высокой питательной ценностью, и являющееся хорошим " "маслом для приготовления пищи." +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -108954,7 +109068,6 @@ msgid "generic item template" msgstr "обычный шаблон предмета" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "бритва" @@ -108970,7 +109083,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "расчёска" @@ -109030,7 +109142,6 @@ msgstr "" "зубов. Разберите, чтобы использовать нить для чего-нибудь ещё." #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "гребень" @@ -109071,7 +109182,6 @@ msgstr "" "выглядеть как бриолинщик." #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "фен" @@ -109089,7 +109199,6 @@ msgstr "" "спираль. Без действующей электросети — бесполезный хлам." #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "щипцы для завивки" @@ -109841,7 +109950,6 @@ msgstr[2] "обычных кастрюль" msgstr[3] "обычные кастрюли" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "керамическая тарелка" @@ -109855,7 +109963,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "Ничем не примечательная керамическая обеденная тарелка." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "керамическая миска" @@ -109869,7 +109976,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "Совершенно обычная керамическая суповая тарелка." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "керамическая чашка" @@ -109883,7 +109989,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "Лёгкая керамическая чайная чашка. Довольно стильная." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "кофейная кружка" @@ -109971,7 +110076,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "На боку кружки написано «ПрОсТо АлКоГоЛиЗм»." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "оловянная тарелка" @@ -109985,7 +110089,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "Жестяная обеденная тарелка, лёгкая и звонкая." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "жестяная чашка" @@ -110003,7 +110106,6 @@ msgstr "" "Замечательно звучит, если вести ею вдоль прутьев." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "оловянная чаша" @@ -110017,7 +110119,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "Маленькая оловянная миска без крышки. Вмещает 250 мл жидкости." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "стакан" @@ -110031,7 +110132,6 @@ msgid "A tall drinking glass." msgstr "Высокий стакан." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "бокал для вина" @@ -110047,7 +110147,6 @@ msgid "" msgstr "Бокал на ножке. Чувствуешь себя шикарно, если пьёшь из него." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "стеклянная чашка" @@ -110091,7 +110190,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "Пластмассовая чаша с удобной крышкой. Вмещает 750 мл жидкости." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "детская миска" @@ -110140,7 +110238,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "Эта миска разрисована милыми фермерскими зверюшками." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "чашка-непроливайка" @@ -110185,7 +110282,6 @@ msgid "" msgstr "На этой чашке детским почерком написано «Я люблю тебя»." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "кастрюля" @@ -110199,7 +110295,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "Годится для кипячения воды при варке спагетти и многого другого." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "чугунная кастрюля" @@ -110215,7 +110310,6 @@ msgstr "" "Эта тяжёлая чёрная кастрюля сделана из чугуна, покрытого прочной эмалью." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "медная кастрюля" @@ -110233,7 +110327,6 @@ msgstr "" "меди с лужением, чтобы кислая еда не вымывала металл." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "кассероль" @@ -110251,7 +110344,6 @@ msgstr "" "блюд." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "большая кастрюля" @@ -110269,7 +110361,6 @@ msgstr "" "пропихнуть целую индейку." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "кастрюля для консервации" @@ -110293,7 +110384,6 @@ msgstr "" " подобным, чтобы вода накрыла крышки." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "чугунная сковорода" @@ -110310,7 +110400,6 @@ msgstr "" "используется для приготовления пищи." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "стальная сковорода" @@ -110327,7 +110416,6 @@ msgstr "" "используется для приготовления пищи." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "медная сковорода" @@ -110345,7 +110433,6 @@ msgstr "" " чаще используется для приготовления пищи." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "самодельная кастрюля" @@ -110363,7 +110450,6 @@ msgstr "" "приготовить еду и вскипятить воду, но он не так хорош, как настоящая посуда." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "самодельная медная кастрюля" @@ -110381,7 +110467,6 @@ msgstr "" "вскипятить воду, но он не так хорош, как настоящая посуда." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "чайник" @@ -110807,7 +110892,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "короткий шнур" @@ -110821,7 +110905,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "Кусок хлопкового шнура длиной примерно 15 см." #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "длинный шнур" @@ -112506,7 +112589,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "дуплет" @@ -116507,7 +116590,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "цевьё" @@ -116902,7 +116985,7 @@ msgstr "" "снижается точность." #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "дуло" @@ -117144,7 +117227,7 @@ msgstr "" "направляющей. Требует арбалетных болтов для стрельбы." #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "планка" @@ -117307,7 +117390,7 @@ msgstr "" "на прицеливание придётся потратить некоторое время." #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "прицел" @@ -122600,7 +122683,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "кухонный нож" @@ -122609,7 +122691,6 @@ msgstr[2] "кухонных ножей" msgstr[3] "кухонные ножи" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "нож мясника" @@ -122627,7 +122708,6 @@ msgstr "" "разделки трупов." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "нож для стейка" @@ -122645,7 +122725,6 @@ msgstr "" "справляется хорошо." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "нож для чистки овощей" @@ -122663,7 +122742,6 @@ msgstr "" "доски." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "поварской нож" @@ -122684,7 +122762,6 @@ msgstr "" "лезвием неудобно разделывать туши." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "разделочный нож" @@ -122704,7 +122781,6 @@ msgstr "" "прекрасно подойдёт для разделки." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "хлебный нож" @@ -122723,7 +122799,6 @@ msgstr "" "острый, но благодаря длине и весу способен наносить неприятные раны." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "овощной тесак" @@ -122743,7 +122818,6 @@ msgstr "" "оружие, хотя и похуже разделочного ножа." #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "мясницкий нож" @@ -127188,7 +127262,6 @@ msgstr "" "окрашивания, разведя водой и небольшим количеством растворителя." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "осколок стекла" @@ -127206,7 +127279,6 @@ msgstr "" "можно сделать примитивное оружие." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "лист стекла" @@ -127231,7 +127303,6 @@ msgid "" msgstr "Большой лист стекла. Очень хрупкий. Используется для починки окон." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "лист ударопрочного стекла" @@ -127246,7 +127317,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "Большой лист стекла, армированного стальной проволокой." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "кусок ударопрочного стекла" @@ -127262,7 +127332,6 @@ msgstr "" "Небольшой прямоугольный кусок стекла, армированного стальной проволокой." #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "лист закаленного стекла" @@ -127381,7 +127450,6 @@ msgid "A roll of purple carpet." msgstr "Рулон пурпурного ковра." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "дверной глазок" @@ -127399,7 +127467,6 @@ msgstr "" " для установки в дверь." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "антимоскитная сетка" @@ -127414,7 +127481,6 @@ msgstr "" "Рулон мелкой антимоскитной сетки для защиты от насекомых или падальщиков." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "труба" @@ -127431,7 +127497,6 @@ msgstr "" "некоторых рецептах." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "металлолом" @@ -127450,7 +127515,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "шип" @@ -127468,7 +127532,6 @@ msgstr "" "при установке на транспортное средство." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "медная трубка" @@ -127486,7 +127549,6 @@ msgstr "" "Используется в некоторых рецептах." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "алюминиевый слиток" @@ -127507,7 +127569,6 @@ msgstr "" "Высококлассное применение." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "висмут" @@ -127523,7 +127584,6 @@ msgstr "" "свинцу." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "золото" @@ -127542,7 +127602,6 @@ msgstr "" "его ценность значительно упала." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "платина" @@ -127551,7 +127610,6 @@ msgstr[2] "платины" msgstr[3] "платина" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "цинк" @@ -127573,7 +127631,6 @@ msgstr "" "производстве батарей и других вещей." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "свинец" @@ -127591,7 +127648,6 @@ msgstr "" "имеет много вариантов применения, включая изготовление боеприпасов." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "магниевый порошок" @@ -127610,7 +127666,6 @@ msgstr "" "осветительных снарядов." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "серебро" @@ -127628,7 +127683,6 @@ msgstr "" "его ценность значительно упала." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "маленький металлический лист" @@ -127642,7 +127696,6 @@ msgid "A small sheet of metal." msgstr "Небольшой лист металла." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "кусок стали" @@ -127660,7 +127713,6 @@ msgstr "" "рецептах." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "крупный кусок стали" @@ -127675,7 +127727,6 @@ msgstr "" "Тяжёлый деформированный кусок стали. Используется в некоторых рецептах." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "дверная петля" @@ -127693,7 +127744,6 @@ msgstr "" "шарниром. Применяется для навешивания дверей." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "обрезок меди" @@ -127708,7 +127758,6 @@ msgstr "" "Маленький кусок меди, применяется в изготовлении или ремонте предметов." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "олово" @@ -127726,7 +127775,6 @@ msgstr "" "чтобы защитить их от коррозии." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "припой" @@ -127774,7 +127822,6 @@ msgstr "" "оружия, если только не гоняться за кошками." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "керамический осколок" @@ -127851,7 +127898,6 @@ msgstr "" "видов взрывчатки." #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "острый камень" @@ -127941,7 +127987,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "кусок пластика" @@ -127975,7 +128020,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "синтетическая ткань" @@ -127995,8 +128039,6 @@ msgstr "" "так уж плохо сейчас." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "пластиковый лист" @@ -128014,7 +128056,6 @@ msgstr "" "коммерческой упаковки или обшивки дома от непогоды." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "жесткий пластиковый лист" @@ -128032,7 +128073,6 @@ msgstr "" "задач — от строительства и творчества до изготовления сноубордов." #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "кусочек пластика" @@ -128050,7 +128090,6 @@ msgstr "" "переплавить его, если соберете достаточно." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "бревно" @@ -128068,7 +128107,6 @@ msgstr "" "пилу, чтобы распилить его на доски." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "расколотая древесина" @@ -128082,7 +128120,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "Деревянная щепка, которую можно использовать как шампур или поджечь." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "тяжёлая палка" @@ -128096,7 +128133,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "Крепкая тяжёлая палка. Сгодится как оружие ближнего боя." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "длинная палка" @@ -128114,7 +128150,6 @@ msgstr "" "разломать, чтобы получить тяжёлые палки." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "длинный шест" @@ -128131,8 +128166,7 @@ msgstr "" "Крепкий трёхметровый шест. Можно пользоваться как копьём. Катаклизм придаёт " "свежий смысл ходить тихо и с большой палкой." -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "доска" @@ -128151,7 +128185,6 @@ msgstr "" "оружие, а ещё годится для изготовления самых разных вещей." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "тяжёлая деревянная балка" @@ -128171,7 +128204,6 @@ msgstr "" "распилить или разрубить на мелкие части вроде досок или листов." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "деревянная панель" @@ -128193,7 +128225,6 @@ msgstr "" "потребуется подходящий лист необработанной фанеры или чего-то вроде." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "большой деревянный лист" @@ -128213,7 +128244,6 @@ msgstr "" "потребоваться разрезать его для небольших проектов." #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "топливный брикет" @@ -128259,7 +128289,6 @@ msgstr "" " мл жидкости." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "атомная кофемашина" @@ -128283,7 +128312,6 @@ msgstr "" "Кюри-G запрещён в большинстве стран." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "набор для разделки" @@ -128316,7 +128344,6 @@ msgstr "" "Это crafting_pseudo_item, если у вас это есть, то что-то пошло не так." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "закаточная машинка" @@ -128334,7 +128361,6 @@ msgstr "" "закатывания жестяных банок." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "электрорезка (выкл.)" @@ -128383,7 +128409,6 @@ msgstr "" "отключить." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "угольный водоочиститель" @@ -128406,7 +128431,6 @@ msgstr "" "рек, может оказаться загрязнённой." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "угольная коптильня" @@ -128424,7 +128448,6 @@ msgstr "" "шашлыков на выходных, а также для консервирования мяса с помощью копчения." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "угольная плита" @@ -128442,7 +128465,6 @@ msgstr "" "запальником. Вы можете использовать её для приготовления пищи." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "глиняный горшок" @@ -128456,7 +128478,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "Грубый глиняный горшок с крышкой для приготовления пищи." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "глиняная ручная мельница" @@ -128470,7 +128491,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "Простая ручная мельница из глины для измельчения зерна." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "глиняный чайник" @@ -128484,7 +128504,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "Глиняный чайник. Теперь всё, что вам нужно, — это чай и вода." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "кофеварка" @@ -128504,7 +128523,6 @@ msgstr "" "для приготовления кофе или других напитков по вашему выбору." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "пищевой дегидратор" @@ -128522,7 +128540,6 @@ msgstr "" "для сохранения пищи." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "банка маринующихся яиц" @@ -128554,7 +128571,6 @@ msgstr "" "банку." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "печь на сухом горючем" @@ -128572,7 +128588,6 @@ msgstr "" "для приготовления пищи используются маленькие таблетки уротропина." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -128670,7 +128685,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "кухонный комбайн" @@ -128688,7 +128702,6 @@ msgstr "" "измельчать, молоть, смешивать продукты и делать из них пюре." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "бензиновая плита" @@ -128723,7 +128736,6 @@ msgstr "" "пищи. Используется только один раз." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "электроплитка" @@ -128815,7 +128827,6 @@ msgstr "" "и насладиться." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "самодельный вакуумный упаковщик" @@ -128833,7 +128844,6 @@ msgstr "" "вакуумной упаковки продуктов для долговременного хранения." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "кухонный набор" @@ -128853,7 +128863,6 @@ msgstr "" "батареек, вместо печи на сухом горючем." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "солдатский котелок" @@ -128874,7 +128883,6 @@ msgstr "" "элементы, как у современных походных наборов." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "армейский кухонный набор" @@ -128898,7 +128906,6 @@ msgstr "" "прочный и лёгкий." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "ступка и пестик" @@ -128919,7 +128926,6 @@ msgstr "" " если сравнивать с более сложными методами." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "мультиварка" @@ -128959,7 +128965,6 @@ msgstr "" "съедобное." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "плита на ламповом масле" @@ -128977,7 +128982,6 @@ msgstr "" "приготовления еды." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "паста-экструдер" @@ -128995,7 +128999,6 @@ msgstr "" "пасты. В комплекте есть разные насадки для разных видов пасты." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "банка маринующихся огурчиков" @@ -129027,7 +129030,6 @@ msgstr "" "сможете закатать банку." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "плита из алюминиевых банок" @@ -129043,7 +129045,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "скороварка" @@ -129064,7 +129065,6 @@ msgstr "" "давлению химические реакции." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "ручная мельница" @@ -129078,7 +129078,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "Это простая ручная каменная мельница для помола зерна." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "банка киснущих овощей" @@ -129140,7 +129139,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "кухонный набор выживальщика" @@ -129160,7 +129158,6 @@ msgstr "" "из простых, но прочных инструментов и материалов." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "заварочный чайник" @@ -129176,7 +129173,6 @@ msgstr "" "чаепитие." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "вакуумный упаковщик" @@ -129194,7 +129190,6 @@ msgstr "" "вакуумной упаковки продуктов для долговременного хранения." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "вафельница" @@ -129295,7 +129290,6 @@ msgstr "" "неудобно, но это всё же намного лучше, чем ворочаться на земле." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "складной велосипед" @@ -129313,6 +129307,24 @@ msgstr "Вы кропотливо раскладываете велосипед, msgid "This is a bicycle folded into a relatively portable package." msgstr "Велосипед, сложенный в довольно компактную упаковку." +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -129323,7 +129335,6 @@ msgstr "" "Сложена для удобства переноски." #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "надувная лодка" @@ -129388,7 +129399,6 @@ msgstr "" " Свёрнут и готов к переноске." #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "сложенная маслобойка" @@ -129430,7 +129440,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "улучшенный УБП" @@ -129453,7 +129462,6 @@ msgstr "" "питанием большей части домашней электроники." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "фотокамера" @@ -129473,7 +129481,6 @@ msgstr "" " их на карту памяти. Работает на обычных батарейках." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "профессиональный фотоаппарат" @@ -129493,7 +129500,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "сотовый телефон" @@ -129528,7 +129534,6 @@ msgstr "" "будильником." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "сотовый телефон с включённым дисплеем" @@ -129545,7 +129550,6 @@ msgid "You stop lighting up the screen." msgstr "Вы выключаете экран." #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "управляющий ноутбук" @@ -129562,7 +129566,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "направленная антенна" @@ -129597,7 +129600,6 @@ msgstr "" "Однако, поскольку единственная полиция, которая может ответить — это нежить, вы можете дожидаться очень долго, если только не подойдёте к проблеме творчески…" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "планшет на э-чернилах" @@ -129613,9 +129615,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "электронная отмычка" @@ -129639,7 +129639,6 @@ msgstr "" "использование." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "счётчик Гейгера (выкл.)" @@ -129660,7 +129659,6 @@ msgstr "" " за радиационной обстановкой. Выключен." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "счётчик Гейгера (вкл.)" @@ -129682,7 +129680,6 @@ msgstr "" "использовании можно просканировать себя, местность, или выключить. Включён." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "ручная зарядка" @@ -129720,7 +129717,6 @@ msgstr[2] "ноутбуков (горящий экран)" msgstr[3] "ноутбуки (горящий экран)" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "mp3-плеер (выкл.)" @@ -129758,7 +129754,6 @@ msgstr "" "экономии. Немного притупляет слух." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "звукогенератор (выкл.)" @@ -129798,7 +129793,6 @@ msgstr "" "радиопомехи. Быстро выбросьте его, пока оно не привлекло к вам зомби!" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "портативная игровая приставка" @@ -129816,7 +129810,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "смартфон" @@ -129910,7 +129903,6 @@ msgstr "" " устройств." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "вибратор" @@ -129928,7 +129920,6 @@ msgstr "" "напряжённых мест. Используйте его, чтобы отдохнуть и расслабиться." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "бионический сканер" @@ -129957,7 +129948,6 @@ msgstr "" "предмет бионики." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "бионический сканер (вкл)" @@ -129977,7 +129967,6 @@ msgstr "" "энергию, автоматически сканируя трупы рядом с вами на наличие бионики." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "ломик" @@ -129996,7 +129985,6 @@ msgstr "" "сдвигать крышки канализационных люков. Ну или надавать кому-нибудь по башке." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -130015,7 +130003,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "самодельная отмычка" @@ -130034,7 +130021,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "ледоруб" @@ -130054,7 +130040,6 @@ msgstr "" "им можно вскрывать запертые двери и поднимать крышки люков." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "самодельный ломик" @@ -130076,7 +130061,6 @@ msgstr "" "оружия." #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "слесарные отмычки" @@ -131322,7 +131306,6 @@ msgstr "" "извергающего большое количество дыма." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "электрический поджигатель" @@ -131340,7 +131323,6 @@ msgstr "" "использовать в роли неэффективной зажигалки." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "лучковая дрель" @@ -131361,7 +131343,6 @@ msgstr "" "разведение огня с её помощью будет протекать медленно и сложно." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "бивачная лучковая дрель" @@ -131382,7 +131363,6 @@ msgstr "" "материалов, разведение огня с её помощью будет протекать медленно и сложно." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "огниво" @@ -131401,7 +131381,6 @@ msgstr "" "искру и зажечь огонь." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "зажигалка" @@ -131421,7 +131400,6 @@ msgstr "" "находящихся рядом предметов." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "увеличительное стекло" @@ -131440,7 +131418,6 @@ msgstr "" "солнечные дни." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "коробок спичек" @@ -131461,7 +131438,6 @@ msgstr "" "рядом предметов." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "заправляемая зажигалка" @@ -131505,7 +131481,6 @@ msgid "" msgstr "Зажигалка с откидной крышкой и заправляемым баллоном. Горит." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "контейнер для углей" @@ -131540,7 +131515,6 @@ msgstr "" "долгое время, что позволяет разводить огонь без современных инструментов." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "контейнер для углей (горит)" @@ -131586,7 +131560,6 @@ msgstr "" "электрическая зажигалка, её батареи хватает надолго." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "аварийный топор" @@ -131624,7 +131597,6 @@ msgstr "" "пены. Полезен для тушения пожаров." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "пожарный топор" @@ -131643,7 +131615,6 @@ msgstr "" "велико." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "пожарный багор" @@ -131719,7 +131690,6 @@ msgstr "" "конце." #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "пожарный крюк-лом" @@ -131737,7 +131707,6 @@ msgstr "" "целиком выкованная из стали." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "пластиковый садок" @@ -131777,7 +131746,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "рыболовный крючок" @@ -131791,7 +131759,6 @@ msgid "A simple fishing hook." msgstr "Простой рыболовный крючок." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "самодельный рыболовный крючок" @@ -131805,7 +131772,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "Самодельный рыболовный крючок, вырезанный из дерева или кости." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "простая удочка" @@ -131822,7 +131788,6 @@ msgstr "" "По правде говоря, эта «удочка» — всего лишь палка с верёвкой и крючком." #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "профессиональная удочка" @@ -131840,7 +131805,6 @@ msgstr "" "поймать всё что угодно." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "станок для патронов" @@ -131858,7 +131822,6 @@ msgstr "" "необходимое для самостоятельной заправки и обжатия патронов." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "самодельный патронный станок" @@ -131882,7 +131845,6 @@ msgstr "" "приспособлен для сворачивания пластиковых гильз." #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "кинетический молоток" @@ -131913,7 +131875,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "медный нож" @@ -131950,7 +131911,6 @@ msgstr "" "не займёт места в ваших карманах." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "скребок для мёда" @@ -131968,7 +131928,6 @@ msgstr "" "Вполне сносное оружие ближнего боя." #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "карманный нож" @@ -132021,7 +131980,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "землекопалка" @@ -132039,7 +131997,6 @@ msgstr "" "использована, чтобы вырыть неглубокие ямки, но не более того." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "лопатка" @@ -132055,7 +132012,6 @@ msgstr "" "Маленькая, острая садовая лопата. Идеальна для выкапывания личинок и червей." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "тяпка" @@ -132073,7 +132029,6 @@ msgstr "" "(это позволит замедлить монстров), или же вырыть неглубокую яму." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -132109,7 +132064,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "коса" @@ -132129,7 +132083,6 @@ msgstr "" "чрезвычайно сложно использовать не по назначению." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "лопата" @@ -132160,7 +132113,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "серп" @@ -132180,7 +132132,6 @@ msgstr "" " чрезвычайно сложно использовать не по назначению." #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "шпалерные ножницы (выкл.)" @@ -132233,7 +132184,6 @@ msgstr "" "выключить." #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "атомная лампа" @@ -132262,7 +132212,6 @@ msgstr "" "закрыть крышку и спрятать свет." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "атомная лампа (закрыто)" @@ -132293,7 +132242,6 @@ msgstr "" "Активируйте, чтобы открыть крышку и выпустить свет." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "атомная читальная лампа" @@ -132304,7 +132252,7 @@ msgstr[3] "атомные читальные лампы" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "Вы закрываете крышку ночника." @@ -132324,7 +132272,6 @@ msgstr "" "Активируйте, чтобы закрыть крышку и спрятать свет." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "атомная читальная лампа (закрыта)" @@ -132337,7 +132284,7 @@ msgstr[3] "атомные читальные лампы (закрытые)" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "Вы открываете крышку ночника." @@ -132402,7 +132349,6 @@ msgstr "" "долго. Эта свеча горит." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "электрический фонарь (выкл.)" @@ -132451,7 +132397,6 @@ msgid "You turn the lamp off." msgstr "Вы выключили лампу." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "фонарик (выкл.)" @@ -132646,7 +132591,6 @@ msgstr "" "около получаса." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "мощный фонарик (выкл.)" @@ -132816,7 +132760,6 @@ msgid "The %s is extinguished" msgstr "%s потушена." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "настольная лампа" @@ -132866,7 +132809,6 @@ msgstr "" "темноте. Во включённом состоянии." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "смарт-лампа (выкл.)" @@ -132925,7 +132867,7 @@ msgstr[3] "факел" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "Зажечь" @@ -132933,7 +132875,7 @@ msgstr "Зажечь" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "Вы зажгли факел." @@ -132951,7 +132893,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "Факел погас." @@ -132965,7 +132907,6 @@ msgstr "" "излучая много света." #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "камнерезная пила (выкл)" @@ -133053,7 +132994,6 @@ msgstr "" "медицинском оборудовании, поэтому препараты из него нельзя ввести вручную." #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "автоклав" @@ -133111,7 +133051,6 @@ msgstr "" "более двух доз в час." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "скальпель" @@ -133150,7 +133089,6 @@ msgstr "" " энергии." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "шприц" @@ -133166,7 +133104,6 @@ msgstr "" "препаратов." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "термометр" @@ -133199,7 +133136,6 @@ msgstr "" "приступов астмы, очистку лёгких от дыма и вызывает краткий прилив энергии." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "набор для взятия крови" @@ -133219,7 +133155,6 @@ msgstr "" "которым вы стоите." #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "упакованный плёночный дозиметр" @@ -133260,7 +133195,6 @@ msgstr "" " Используется в большинстве рецептов по металлообработке." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "бронзовая наковальня" @@ -133278,7 +133212,6 @@ msgstr "" "Используется в большинстве рецептов по металлообработке." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "болторез" @@ -133297,7 +133230,6 @@ msgstr "" "большого сечения." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "угольная кузня" @@ -133326,7 +133258,6 @@ msgstr "" "воздуха." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "долото для металла" @@ -133344,7 +133275,6 @@ msgstr "" "связанных с металлургией." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "тигель" @@ -133362,7 +133292,6 @@ msgstr "" " металлургией." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "глиняный тигель" @@ -133380,7 +133309,6 @@ msgstr "" "для металлообработки." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "электрокузня" @@ -133402,7 +133330,6 @@ msgstr "" "Используя знания механики, вы можете запитать его от электрики автомобиля." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "углевыжигательная печь (завершено)" @@ -133444,7 +133371,6 @@ msgstr "" "сжигания." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "углевыжигательная печь (горит)" @@ -133489,7 +133415,6 @@ msgstr "" "пластин можно объединить, чтобы изготовить крепкую броню." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "набор штампов и матриц" @@ -133508,7 +133433,6 @@ msgstr "" "предметов." #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "металлические щипцы" @@ -133554,7 +133478,6 @@ msgstr "" "громкий звук." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "будильник" @@ -133724,7 +133647,6 @@ msgstr "" "чтобы не спать всю ночь, стать незаметным и видеть в темноте." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "сапёрная лопатка" @@ -133773,7 +133695,6 @@ msgstr "" "жидкостью. Вам нужно поджечь её перед выстрелом." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "меховой туристический коврик" @@ -133798,7 +133719,6 @@ msgstr "" "Используйте, чтобы развернуть и разместить на земле." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "крюк-кошка" @@ -133831,7 +133751,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "Простой стальной крюк с круглой стальной ручкой." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "ручной насос" @@ -133893,7 +133812,6 @@ msgstr "" "Автомобильный гудок, может быть подключён к электрической сети автомобиля." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "большой автообогреватель" @@ -133935,7 +133853,6 @@ msgid "You turn off the heater." msgstr "Вы выключаете обогреватель." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "водоочиститель" @@ -134058,7 +133975,6 @@ msgstr "" "выглядеть эффектно. Ещё их можно разобрать на запчасти." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "туристический коврик" @@ -134116,7 +134032,6 @@ msgid "" msgstr "Это распечатка кода доступа к лифту в саркофаг опасных отходов." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "малый автообогреватель" @@ -134319,7 +134234,6 @@ msgstr "" "что воздух стягивается к нему." #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "свисток-мультитул" @@ -134480,7 +134394,6 @@ msgstr "" " когда-то она принадлежала лучшему из лучших." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "куриная клетка" @@ -134501,7 +134414,6 @@ msgstr "" "выпустить животное." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "собачий свисток" @@ -134522,7 +134434,6 @@ msgstr "" "собаке команду атаковать противника." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "ножницы стригаля" @@ -134536,7 +134447,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "Крупные тяжёлые ножницы, предназначенные для стрижки овечьей шерсти." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "электрическая машинка для стрижки шерсти" @@ -134552,7 +134462,6 @@ msgstr "" "животных." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "лошадиная сбруя" @@ -134570,7 +134479,6 @@ msgstr "" "верховой езды." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "переноска для питомцев" @@ -134589,7 +134497,6 @@ msgstr "" "используйте на пустом тайле, чтобы выпустить животное." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "деревянная переноска" @@ -134608,7 +134515,6 @@ msgstr "" "используйте на пустом тайле, чтобы выпустить животное." #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "деревянный собачий свисток" @@ -134659,7 +134565,6 @@ msgstr "" "Разберите, чтобы распаковать, и наслаждайтесь." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "пульт управления" @@ -134678,7 +134583,6 @@ msgstr "" "кнопками, похоже, бесполезными. Может они для моделей подороже?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "машинка на РУ" @@ -134726,7 +134630,6 @@ msgstr "" "чтобы можно было активировать их после получения радиосигнала." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "радио (выкл.)" @@ -134761,7 +134664,6 @@ msgstr "" "передачи, посланные с ближайших радиовышек." #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "рация" @@ -134779,7 +134681,6 @@ msgstr "" "такое же устройство. К сожалению, сейчас ими уже никто не пользуется…" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "пульт ДУ машиной" @@ -134876,7 +134777,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "брезентовая дожделовка" @@ -134896,7 +134796,6 @@ msgid "" msgstr "Палки, брезент и верёвочка для установки самодельной дожделовки." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "барометр" @@ -134929,7 +134828,6 @@ msgstr "" "кажется, что внутри кто-то шевелится." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "набор химика" @@ -134950,7 +134848,6 @@ msgstr "" "у вас появится такое желание." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "базовый набор химика" @@ -134971,7 +134868,6 @@ msgstr "" "источник огня." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "набор для электролиза" @@ -135008,7 +134904,6 @@ msgstr "" "органики." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "баллон с водородом" @@ -135026,7 +134921,6 @@ msgstr "" " или поднять дирижабль." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "гигрометр" @@ -135040,7 +134934,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "Пластиковый гигрометр, показывает относительную влажность воздуха." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "баллон с азотом" @@ -135058,7 +134951,6 @@ msgstr "" "им дышать." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "кислородный баллон" @@ -135076,7 +134968,6 @@ msgstr "" "полустёртый, но читаемый символ О2." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "платиновая решётка" @@ -135142,7 +135033,6 @@ msgstr "" "расстояние при активации." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "доплеровский радар Турбо 2000" @@ -135162,7 +135052,6 @@ msgstr "" " Однако знака FLDSMDFR нет." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "набор для базового лабораторного анализа" @@ -135186,7 +135075,6 @@ msgstr "" "тот химикат, который задумали." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "маленькие весы" @@ -135204,7 +135092,6 @@ msgstr "" " массы образца." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "спектрофотометр" @@ -135222,7 +135109,6 @@ msgstr "" "поглощение света жидким образцом в особой трубочке-кювете." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "рН-метр" @@ -135242,7 +135128,6 @@ msgstr "" "вы сможете рассчитать кислотность." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "вольтметр" @@ -135264,7 +135149,6 @@ msgstr "" "также внести изменения в электросети." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "прибор для определения температуры плавления" @@ -135289,7 +135173,6 @@ msgstr "" " это за вещество и насколько оно чистое." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "встряхиватель" @@ -135312,7 +135195,6 @@ msgstr "" "будет быстро встряхивать и перемешивать её содержимое. Удивительно весело." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "фотодатчик" @@ -135330,7 +135212,6 @@ msgstr "" "энергию для количественного измерения." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "стеклянная призма" @@ -135363,7 +135244,6 @@ msgid "" msgstr "Маленькая стеклянная трубочка. Что вы ещё хотите про неё узнать?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "микроскоп" @@ -135385,7 +135265,6 @@ msgstr "" "сожалению, сейчас от него мало толку." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "стереомикроскоп" @@ -135409,7 +135288,6 @@ msgstr "" "делать?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "делительная воронка" @@ -135434,7 +135312,6 @@ msgstr "" "изолировать. При наличии изрядного навыка ею можно издавать пукающие звуки." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "роторный испаритель" @@ -135460,7 +135337,6 @@ msgstr "" "если зачем-нибудь вам потребуется." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "фракционный конденсатор" @@ -135489,7 +135365,6 @@ msgstr "" "виски не стоит." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "лоток для электрофореза" @@ -135512,7 +135387,6 @@ msgstr "" "размера. Сейчас годится только на запчасти." #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "микроцентрифуга" @@ -135582,7 +135456,6 @@ msgstr "" " Это укрытие повреждено и нуждается в ремонте." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "большая палатка" @@ -135600,7 +135473,6 @@ msgstr "" "громоздкая." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "укрытие" @@ -135615,7 +135487,6 @@ msgstr "" "Небольшое укрытие, сделанное из палок и шкур. Активируйте, чтобы разместить." #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "палатка" @@ -135700,7 +135571,6 @@ msgstr "" "табака дымовой сушки." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "степлер" @@ -135714,7 +135584,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "Степлер для сшивания листов бумаги вместе." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "ручка" @@ -135728,7 +135597,6 @@ msgid "A plastic ball point pen." msgstr "Пластиковая шариковая ручка." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "ножницы" @@ -135747,7 +135615,6 @@ msgstr "" "хлопка (например, одежду) на тряпки." #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "бумага" @@ -135761,7 +135628,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "Кусок бумаги. Можно использовать для огня." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "костяное шило" @@ -135781,7 +135647,6 @@ msgstr "" "оружием, но оно быстро сломается." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "стальное шило" @@ -135799,7 +135664,6 @@ msgstr "" "Также им можно пользоваться как колющим оружием, но оно быстро сломается." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "вязальные спицы" @@ -135818,7 +135682,6 @@ msgstr "" "пряжей." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "костяная игла" @@ -135850,7 +135713,6 @@ msgstr "" "неопреном." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "деревянная игла" @@ -135871,8 +135733,7 @@ msgstr "" "скорости или точности или включающие плотные материалы вроде кевлара." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "швейный набор" @@ -135911,8 +135772,7 @@ msgstr "" "одежды из ткани или кожи с нуля и необходимы для более сложных проектов." #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "набор портного" @@ -135935,7 +135795,6 @@ msgstr "" "мутантам." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "весы для ванной" @@ -135949,7 +135808,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "Маленькие весы для взвешивания голого человека." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "щётка" @@ -135963,7 +135821,6 @@ msgid "This is a simple scrub brush." msgstr "Простая щётка." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "электрический триммер для волос" @@ -136015,7 +135872,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "лезвие бритвы" @@ -136048,7 +135904,6 @@ msgstr "" "мыла на одно использование." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "губка" @@ -136096,7 +135951,6 @@ msgstr "" "бриться с его помощью. Требует 1 единицу мыла на одно использование." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "стиральная доска" @@ -136114,7 +135968,6 @@ msgstr "" " можно стирать загрязнённую одежду." #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "помывочный набор" @@ -136160,7 +136013,6 @@ msgstr "" "замаскировать." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "ловушка «лезвие»" @@ -136184,7 +136036,6 @@ msgstr "" "вылетает мачете с огромной скоростью. Ловушка накрывает площадь 3х3 тайла." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "ловушка «доска с гвоздями»" @@ -136239,7 +136090,6 @@ msgstr "" "попробует подобраться к вам, вы сразу услышите." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "разбросанные триболы" @@ -136262,7 +136112,6 @@ msgstr "" " может сильно повредить ноги." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "разбросанные стеклянные триболы" @@ -136321,7 +136170,6 @@ msgid "" msgstr "Противопехотная мина со взрывателем нажимного действия." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "ловушка с двуствольным дробовиком" @@ -136357,7 +136205,6 @@ msgstr "" "цель." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "ловушка «растяжка»" @@ -136400,7 +136247,6 @@ msgstr "" "остальном безвредны." #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "ловушка из осколков стекла" @@ -136427,7 +136273,6 @@ msgstr "" "чтобы положить на землю, при наступлении на него он будет издавать шум." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "топор дровосека" @@ -136461,7 +136306,6 @@ msgstr "" "ближнего боя, но довольно медленное по скорости между взмахами." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "бензопила (выкл.)" @@ -136506,7 +136350,6 @@ msgstr "" "Бензопила включена и создаёт много шума. Активируйте её, чтобы выключить." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "дисковая пила (выкл.)" @@ -136557,7 +136400,6 @@ msgstr "" "её лезвие очень быстро вращается; используйте ещё раз, чтобы выключить." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "медный топор" @@ -136592,7 +136434,6 @@ msgstr "" "рубки или в качестве молотка." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "электропила (выкл.)" @@ -136713,7 +136554,6 @@ msgstr "" "это требует гораздо больше усилий, чем рубка современным топором." #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "пила по дереву" @@ -136727,7 +136567,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "Тонкая пила, полезная для распила деревянных предметов." #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "каменное зубило" @@ -136737,7 +136576,6 @@ msgstr[3] "каменные зубила" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -136899,7 +136737,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "ацетиленовый аппарат" @@ -136917,7 +136754,6 @@ msgstr "" "ацетилен." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "болгарка" @@ -136935,7 +136771,6 @@ msgstr "" "удаления излишков материала или шлифования поверхностей." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "кирпичная печь" @@ -136954,7 +136789,6 @@ msgstr "" "глины." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "чесалка для пряжи" @@ -136973,7 +136807,6 @@ msgstr "" "пряжу." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "малярный скребок" @@ -136987,7 +136820,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "Инструмент, похожий на долото, предназначен для удаления краски." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "зажим" @@ -137005,7 +136837,6 @@ msgstr "" " сразу несколько." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "гвоздодёр" @@ -137026,7 +136857,6 @@ msgstr "" "башке." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "бетономешалка" @@ -137044,7 +136874,6 @@ msgstr "" "самостоятельно на батарейках. Также есть встроенный нагреватель." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "аккумуляторная дрель" @@ -137059,7 +136888,6 @@ msgid "" msgstr "Беспроводная аккумуляторная дрель с набором бит." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "прялка с веретеном" @@ -137075,7 +136903,6 @@ msgid "" msgstr "Пара специальных деревянных инструментов для свивания ниток и пряжи." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "электрический отбойный молоток" @@ -137092,7 +136919,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "ножовка по металлу" @@ -137122,7 +136948,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "молоток" @@ -137162,7 +136987,6 @@ msgstr "" "также использовать в различных других целях." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "ручная дрель" @@ -137180,7 +137004,6 @@ msgstr "" "утомит." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "резиновый шланг" @@ -137198,7 +137021,6 @@ msgstr "" "бензина из автомобилей." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "бутылочный домкрат" @@ -137212,7 +137034,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "Портативный бутылочный домкрат, используется для поднятия машин." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "самодельный домкрат" @@ -137230,7 +137051,6 @@ msgstr "" " если у вас хватит смелости воспользоваться им." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "винтовой домкрат" @@ -137244,7 +137064,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "Портативный винтовой домкрат, используется для поднятия машин." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "отбойный молоток" @@ -137263,7 +137082,6 @@ msgstr "" "работающий на бензине. Используйте его, чтобы пробить дыру в нужном месте." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "Шнек" @@ -137282,7 +137100,6 @@ msgstr "" "состоянием здоровья." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "электрическая печь" @@ -137304,7 +137121,6 @@ msgstr "" "автомобиля." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "ремкомплект оружейника" @@ -137325,7 +137141,6 @@ msgstr "" "расходует 25 зарядов батареи." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "самодельный молоток" @@ -137344,7 +137159,6 @@ msgstr "" "инструментом." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "напильник по металлу" @@ -137362,7 +137176,6 @@ msgstr "" "материала с поверхности металлических предметов." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "металлическая затирка" @@ -137381,7 +137194,6 @@ msgstr "" "импровизированного головокрушителя." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "ремкомплект" @@ -137420,7 +137232,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "форма для пластика" @@ -137438,7 +137249,6 @@ msgstr "" "создания предметов из пластика." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "мультитул" @@ -137456,7 +137266,6 @@ msgstr "" "спрятаны различные мелкие инструменты." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "ацетиленовая горелка" @@ -137480,7 +137289,6 @@ msgstr "" "металлических преград." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "кисть для покраски" @@ -137494,7 +137302,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "Широкая кисть для покраски стен." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "кирка" @@ -137512,7 +137319,6 @@ msgstr "" "хватит навыка) крепкой цели. Пронзи землю!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "развёртка" @@ -137530,7 +137336,6 @@ msgstr "" "отверстий, или удаления шероховатостей и т.п. в них." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "плоскогубцы" @@ -137550,7 +137355,6 @@ msgstr "" "потребуется гаечный ключ." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "электрический полировщик" @@ -137585,7 +137389,6 @@ msgstr "" "никогда не сравнится с настоящим инструментом." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "отвёртка" @@ -137603,7 +137406,6 @@ msgstr "" "электроники, создания большей части механики и другого использования." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "набор отвёрток" @@ -137621,7 +137423,6 @@ msgstr "" "будут подходящие инструменты для тонкой работы." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "ремкомплект огнестрельного оружия" @@ -137642,7 +137443,6 @@ msgstr "" "расходует 100 зарядов батареи." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "паяльник" @@ -137683,7 +137483,6 @@ msgstr "" "пайки. Не так точна, как обычный паяльник." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "ящик с инструментами" @@ -137701,7 +137500,6 @@ msgstr "" "ремонта по дому и строительства." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "ящик с инструментами" @@ -137739,7 +137537,6 @@ msgstr "" "наводить." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "сварочный аппарат" @@ -137757,7 +137554,6 @@ msgstr "" "дуги. Незаменимая вещь в строительстве и ремонте. Работает от батареек." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "деревянная затирка" @@ -137775,7 +137571,6 @@ msgstr "" " бетона или раствора." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "шерстяное волокно" @@ -137791,7 +137586,6 @@ msgid "" msgstr "Клубок шерстяных волокон. Их можно переработать в войлок или пряжу." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "канцелярский нож" @@ -137813,7 +137607,6 @@ msgstr "" "попасть во врага. Слишком мал для разделки трупов." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "гаечный ключ" @@ -137831,7 +137624,6 @@ msgstr "" "во многих рецептах механических изделий." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "кожаный шланг" @@ -137851,7 +137643,6 @@ msgstr "" "резиновый шланг." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "самодельная ручная дрель" @@ -139437,6 +139228,19 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -139849,7 +139653,6 @@ msgstr "" "детей в те дни, когда дети больше хотели мороженого, чем мозгов." #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "лист металла" @@ -140379,6 +140182,15 @@ msgstr[3] "деревянный стол" msgid "A crude wooden table." msgstr "Грубый деревянный стол." +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -140795,6 +140607,34 @@ msgstr[3] "набор колёсиков" msgid "A set of casters, like on a shopping cart." msgstr "Набор колёсиков, как на магазинной тележке." +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -141680,13 +141520,6 @@ msgstr "ЦЕМЕНТ" msgid "FERTILIZER" msgstr "УДОБРЕНИЕ" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "КАМНИ" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -142018,13 +141851,6 @@ msgstr "БУМАГА" msgid "PLASTIC" msgstr "ПЛАСТИК" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "ЭЛЕКТРОНИКА" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -142593,7 +142419,7 @@ msgstr "Отладочная боль" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "Повышает боль" @@ -142617,7 +142443,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "Снижает запас сил. Сделано для луча поработителя ми-го" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "Боль" @@ -147636,7 +147462,7 @@ msgstr[3] "злые мультиварки" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "Мультиварка, получившая собственный разум! Берегитесь!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "голограмма" @@ -147646,7 +147472,7 @@ msgstr[3] "голограммы" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" "Изображение, созданное из света, практически неотличимое от настоящего." @@ -159362,9 +159188,9 @@ msgstr "Хочешь путешествовать со мной?" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "Давай обменяемся предметами." @@ -160226,9 +160052,9 @@ msgstr "Что ты здесь делаешь?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "Хошь выбраться отседа?" @@ -160244,9 +160070,9 @@ msgstr "Хошь выбраться отседа?" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "Что я могу для тебя сделать?" @@ -160276,25 +160102,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "Почему ты не ушёл куда-нибудь ещё?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "Так, давай поторгуем." #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "Прости, мне надо идти." @@ -160317,9 +160143,9 @@ msgid "You've seen other survivors?" msgstr "Ты видел других выживальщиков?" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "Что ты продаёшь?" @@ -167426,7 +167252,7 @@ msgstr "уныл" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "Эй, ." @@ -178554,17 +178380,17 @@ msgstr "Звучит как задачка для военных, я с этим #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "Касательно задания…" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "По поводу одного из этих заданий…" @@ -179962,7 +179788,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "Я не понимаю." @@ -186964,9 +186790,9 @@ msgstr "Не могли ли бы вы дать совет по выживани #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "Прощай." @@ -197958,7 +197784,6 @@ msgstr "" "выращивания фуража." #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "Лес" @@ -198399,7 +198224,7 @@ msgid "island" msgstr "остров" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "хижина" @@ -198421,7 +198246,6 @@ msgstr "подвал хижины" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "лес" @@ -201174,7 +200998,6 @@ msgid "scrap yard" msgstr "свалка утиля" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "берег озера" @@ -201221,7 +201044,7 @@ msgstr "ОРУЖИЕ" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "ВСЁ" @@ -201346,6 +201169,13 @@ msgstr "ЭЛЕКТРОНИКА" msgid "CBMS" msgstr "КБМ" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "ИНСТРУМЕНТЫ" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -201359,7 +201189,7 @@ msgstr "ОСВЕЩЕНИЕ" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "БРОНЯ" @@ -201400,7 +201230,7 @@ msgstr "ЛЕЧЕНИЕ" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "МАТЕРИАЛЫ" @@ -214247,7 +214077,7 @@ msgstr "складная лёгкая рама" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -214351,6 +214181,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "подсветка прохода" @@ -216360,6 +216197,24 @@ msgstr "" "Комплект маленьких колес на вращающихся шарнирах. Такие обычно используются " "на офисных креслах и тележках для покупок." +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "колесо" @@ -216433,7 +216288,7 @@ msgstr "" "Лист стекла, позволяющий смотреть наружу из автомобиля. Армирован " "проволокой, чтобы его было труднее разбить, чем обычное стекло." -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "велосипед" @@ -216501,6 +216356,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "каноэ" @@ -216646,8 +216505,8 @@ msgid "Wheelbarrow" msgstr "тачка" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "складное кресло-каталка" +msgid "Wheelchair" +msgstr "" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -216989,7 +216848,6 @@ msgid "Tour Bus" msgstr "Туристический автобус" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "фургон охраны" @@ -225285,7 +225143,7 @@ msgid "Holographic Flash Explosion" msgstr "Голографическая взрыв" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "Голографическая Транспозиция" @@ -225293,8 +225151,8 @@ msgstr "Голографическая Транспозиция" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -226463,13 +226321,10 @@ msgstr[3] "затыльники с крюком" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" -", Ложа военного класса, которая складывается, уменьшая объем оружия. Её " -"развесовка и поворотный крюк, охватывающий плечо, обеспечивает хорошую " -"стабильность. " #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "diffracting lens" @@ -226483,11 +226338,8 @@ msgstr[3] "дифракционные линзы" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" -"Набор оптики для лазерного оружия, благодаря которому лазерный луч " -"расщепляется на несколько лучей меньшей мощности. Это увеличивает урон при " -"стрельбе в упор, но значительно снижает дальность выстрела." #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json msgid "C.R.I.T. gasmask (off)" @@ -246939,74 +246791,6 @@ msgstr "Глобальная карта от Larwick — Городская за msgid "Urban Development mod support for Larwick's Overmap." msgstr "Поддержка мода Городская застройка для глобальной карты от Larwick." -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -247016,177 +246800,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "Ограниченный рост грибов" @@ -248438,47 +248051,56 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" -msgstr[0] "КБМ: Генератор энергии крови" -msgstr[1] "КБМ: Генератор энергии крови" -msgstr[2] "КБМ: Генератор энергии крови" -msgstr[3] "КБМ: Генератор энергии крови" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" +msgstr[0] "нос из кристаллизованной маны" +msgstr[1] "носа из кристаллизованной маны" +msgstr[2] "носов из кристаллизованной маны" +msgstr[3] "носы из кристаллизованной маны" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -"В вашей спине есть встроенное мощное волшебное устройство, подключённое к " -"вашим бионическим батареям. Оно способно поглощать кровь мёртвых существ и " -"перерабатывать её в бионическую энергию. Вмещает до 100 мл крови." -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "Пришить мех совомедведя" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "Убрать меховую нашивку совомедведя" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "Усилить демоническим хитином" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "Убрать вставку из демонического хитина" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "Строить врата транслокатора" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." @@ -248487,7 +248109,7 @@ msgstr "" "увеличивает её общую теплоизоляцию." #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." @@ -248495,12 +248117,19 @@ msgstr "" "В эту одежду вшита вставка из демонического хитина, что сильно " "увеличивает её общее сопротивление огню." -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "Врата транслокатора" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." @@ -248508,12 +248137,12 @@ msgstr "" "Врата для перемещения в пространстве. Произнесите заклинание перемещения " "либо используйте транслокатор для выбора этих врат местом назначения." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "Магический круг" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." @@ -248521,21 +248150,21 @@ msgstr "" "Простой магический круг, вырезанный в земле и украшенный кровью, свечами и " "всякими побрякушками." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "большой светящийся валун" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "Что-то здесь не так." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "верстак заклинателя" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " @@ -248546,12 +248175,12 @@ msgstr "" "газовая труба, и он украшен несколькими рунами — больше из эстетических " "соображений." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "ростовой перегонный куб" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " @@ -248562,12 +248191,12 @@ msgstr "" "стеклянные трубки, заканчивающиеся выходами над расставленными под них " "стеклянными бутылочками." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "модель солнечной системы" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -248579,12 +248208,12 @@ msgstr "" "современная версия с блютузом, и ей можно было бы управлять через " "приложение, если бы было электричество." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "большой кристалл маны" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" @@ -248593,27 +248222,28 @@ msgstr "" "Это кристалл маны, выступающий их под поверхности, словно проросший сорняк. " "Он пульсирует нежной желтой энергией, изредка озаряясь от вспышками света." -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "звук бьющегося стекла!" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "потрескивание маны!" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "каменный алтарь" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" "Большой каменный алтарь. Скорее всего используется в сомнительных ритуалах." -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "демоническая кузня" @@ -248622,7 +248252,7 @@ msgstr[2] "демонических кузниц" msgstr[3] "демонические кузни" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " @@ -248632,41 +248262,51 @@ msgstr "" "Сделана с расчетом на жар от алюментума. Способна переплавлять магические " "металлы в слитки, подходящие для обработки." -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "загадочная кожа" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "шкура чёрного дракона" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "демонический хитин" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "орихалк" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" -msgstr "Колдоклизм" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" -msgstr "Катаклизм, но с магическими заклинаниями, издание BN!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" -#: data/mods/Magiclysm/modinfo.json +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" @@ -248676,35 +248316,35 @@ msgstr "" "уровнем навыка растёт скорость изучения заклинаний и уменьшается шанс " "провала заклинания. Вы повышаете навык, изучая книги или заклинания." -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "%1$s пронзает ваш %2$s своим трезубцем!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "%1$sпротыкает %2$s своим трезубцем!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "%1$s пытается проткнуть ваш %2$s, но не может пробить броню!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "%1$s пытается проткнуть %2$s , но не может пробить броню!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "%1$s дробит ваш %2$s своей палицей!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "%1$s дробит %2$s своей палицей!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." @@ -248712,7 +248352,7 @@ msgstr "" "%1$s пытается раздробить ваш %2$s своей палицей, но промахивается и " "спотыкается!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." @@ -248720,7 +248360,7 @@ msgstr "" "%1$s пытается раздробить %2$s своей палицей, но промахивается и " "спотыкается!" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "оживлённый клинок" @@ -248729,7 +248369,7 @@ msgstr[2] "оживлённых клинков" msgstr[3] "оживлённые клинки" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." @@ -248737,18 +248377,69 @@ msgstr "" "Вызванный светящийся длинный меч, кувыркающийся в воздухе и рубящий ваших " "врагов на мелкие кусочки." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "Начинающий волшебник" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "Начинающая волшебница" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -248758,7 +248449,7 @@ msgstr "" "спокойно на фоне рушащегося мира." #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -248767,18 +248458,18 @@ msgstr "" "Ты нашла цветастую брошюру, объявляющую тебя Волшебницей. Удивительно " "спокойно на фоне рушащегося мира." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "Кельвинист-пироманьяк" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "Кельвинист-пироманьячка" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -248788,7 +248479,7 @@ msgstr "" "хочешь показать его всему миру." #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -248797,18 +248488,18 @@ msgstr "" "Ты всю свою жизнь любила огонь. Теперь ты обнаружила свой внутренний огонь и" " хочешь показать его всему миру." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "Друид" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "Друид" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -248816,7 +248507,7 @@ msgid "" msgstr "Древний круг друидов сгинул в катаклизме. Природа должна жить." #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -248824,7 +248515,7 @@ msgid "" msgstr "Древний круг друидов сгинул в катаклизме. Природа должна жить." #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -248838,7 +248529,7 @@ msgstr "" "защиты." #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -248852,7 +248543,7 @@ msgstr "" "защиты." #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -248866,7 +248557,7 @@ msgstr "" " мозги." #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -248880,7 +248571,7 @@ msgstr "" " мозги." #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -248892,7 +248583,7 @@ msgstr "" "голодной нежитью." #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -248904,7 +248595,7 @@ msgstr "" "голодной нежитью." #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -248917,7 +248608,7 @@ msgstr "" "ежедневный подкаст, а нежить не особо впечатляется твоими проповедями." #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -248929,18 +248620,18 @@ msgstr "" "путешествуя из города в город. Теперь всё пошло к чёрту, ты не можешь вести " "ежедневный подкаст, а нежить не особо впечатляется твоими проповедями." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "Начинающий Некромант" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "Начинающий Некромант" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -248952,7 +248643,7 @@ msgstr "" "все доступные средства, чтобы выжить." #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -248963,18 +248654,18 @@ msgstr "" "мире волшебников, но после наступления Катаклизма вам придётся использовать " "все доступные средства, чтобы выжить." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "Начинающий Повелитель бури" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "Начинающая Повелительница бури" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -248987,7 +248678,7 @@ msgstr "" "развития событий ты недолго наслаждался своими способностями…" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -248999,18 +248690,18 @@ msgstr "" "что погодой можно управлять при помощи волшебства! К сожалению, по мере " "развития событий ты недолго наслаждался своими способностями…" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "Начинающий Повелитель земли" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "Начинающая Повелительница земли" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -249020,7 +248711,7 @@ msgstr "" "стать ещё крепче." #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -249029,18 +248720,18 @@ msgstr "" "Ты всегда была крепким бойцом. Твой тренер научил тебя паре трюков, чтобы " "стать ещё крепче." -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "Начинающий Техномант" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "Начинающая Техномант" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -249050,7 +248741,7 @@ msgstr "" "ты мухлевал на контрольных." #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -249059,52 +248750,84 @@ msgstr "" "Наступил Катаклизм, и тебе придётся найти иное применение уловкам, которыми " "ты мухлевала на контрольных." +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "ЗАЧАРОВАННОЕ" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "ЗЕЛЬЯ" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "РУНЫ" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "ЗАЧАРОВАНИЕ" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "сосредоточение маны" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "проникновение маны" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "плетение маны" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "Потерявший веру" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "Потерявшая веру" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -249116,7 +248839,7 @@ msgstr "" " вашу веру или разобьют её насовсем." #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -249128,25 +248851,25 @@ msgstr "" " вашу веру или разобьют её насовсем." #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "Церковь" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "Ученик волшебника" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "Ученик волшебника" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -249163,7 +248886,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -249179,25 +248902,25 @@ msgstr "" " он оставил свой блокнот…" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "Подвал секретного кабинета волшебника" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "Каникулы волшебника" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "Каникулы волшебницы" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -249210,7 +248933,7 @@ msgstr "" "Теперь вы должны выяснить, как выжить самостоятельно." #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -249223,12 +248946,12 @@ msgstr "" "Теперь вы должны выяснить, как выжить самостоятельно." #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "Отпуск в убежище волшебника" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "магическое создание" @@ -249236,7 +248959,7 @@ msgstr[1] "магических создания" msgstr[2] "магических созданий" msgstr[3] "магические создания" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "дракон" @@ -249244,7 +248967,7 @@ msgstr[1] "дракона" msgstr[2] "драконов" msgstr[3] "драконы" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "ящеролюд" @@ -249252,7 +248975,7 @@ msgstr[1] "ящеролюда" msgstr[2] "ящеролюдов" msgstr[3] "ящеролюды" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "гоблин" @@ -249260,27 +248983,35 @@ msgstr[1] "гоблина" msgstr[2] "гоблинов" msgstr[3] "гоблины" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "Подвал секретного кабинета волшебника" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "Островное убежище волшебника" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "сгоревшее дерево" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "Это дерево сильно обгорело, но почему-то ещё стоит." #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " @@ -249290,12 +249021,12 @@ msgstr "" "Вы не хотите знать, сколько оно протянуло, пока пауки не высосали его " "досуха." -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "паучья преграда" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." @@ -249303,65 +249034,65 @@ msgstr "" "Эта преграда выглядит сделанной из паутины, щепок и мусора, связанных какой-" "то тёмной смолой." -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "пустынная почва" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "Неплодородная почва. Её можно раскопать, чтобы что-нибудь построить." -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "волшебный смеситель мутагенов" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "Благословение" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "Заклинание придаёт вам сил и улучшает ваши способности." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "Святой клинок" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "Этот созданный из света меч разрубит любое зло, которого коснётся!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "Духовная броня" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "Если ваша вера достаточно крепка, вам нипочём никакое зло!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "Кара" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" @@ -249369,15 +249100,15 @@ msgstr "" "В этом мире повсюду укоренилось зло. Пусть ваша мощь станет светом, " "разгоняющим тьму!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "Превращение жизни" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." @@ -249385,15 +249116,15 @@ msgstr "" "Вы превращаете свою собственную жизненную силу в духовную энергию. Вы " "тратите очки здоровья и восстанавливаете ману." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "Разум выше боли" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." @@ -249401,15 +249132,15 @@ msgstr "" "Напряжённый ритуал, напоминающий занятия атлетикой. При его помощи вы можете" " сдержать немного боли." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "Призвать зомби" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." @@ -249417,15 +249148,15 @@ msgstr "" "Из земных глубин восстаёт призрачный зомби, чтобы сражаться за вас. На " "высоких уровнях можно вызвать нескольких зомби." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "Призвать скелета" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." @@ -249433,15 +249164,15 @@ msgstr "" "Из земных глубин восстаёт призрачный скелет, чтобы сражаться за вас. На " "высоких уровнях можно вызвать нескольких скелетов." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "Вызвать прогнившего когтехвата" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." @@ -249449,15 +249180,15 @@ msgstr "" "Из земных глубин восстаёт ветхая на вид кошка, чтобы сражаться за вас. На " "высоких уровнях можно вызвать нескольких." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "Некротический взгляд" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." @@ -249465,12 +249196,12 @@ msgstr "" "При помощи силы собственной крови вы наделяете свой взгляд некротической " "энергией и повреждаете цель, на которую смотрите." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "Анимистская руна" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." @@ -249478,15 +249209,15 @@ msgstr "" "Этот ритуал создаёт маленький камешек, наполненный магией анимистов. Эту " "руну можно применять в рецептах как катализатор." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "Блуждающий огонек" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " @@ -249496,55 +249227,50 @@ msgstr "" "пути. С большим опытом, это заклинание может вызвать несколько призрачных " "огней." -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "Разлагающаяся костяная дубинка" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -"Это заклинание поджигает рассеянную в воздухе пыль, создавая конус пламени. " -"Горячий пепел может прилипнуть к цели, вызывая со временем дополнительные " -"ожоги." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "Исцеление лёгких ран" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "Исцеляет небольшое количество урона на цель." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "Разделение боли" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "Распределяет повреждение между частями вашего тела." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "Зловещее Щупальце" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." @@ -249553,16 +249279,16 @@ msgstr "" "щупальце из острых костей и кислотной слизи. У него атака на большом " "расстоянии и болезненный урон." -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "Безобразное Улучшение" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." @@ -249570,15 +249296,15 @@ msgstr "" "Заклинание, нечеловеческим образом меняющее ваше тело, чтобы усилить вашу " "силу и физические способности." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "Кислотные Брызги" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." @@ -249587,15 +249313,15 @@ msgstr "" "конусом, чтобы превратить врагов в слизь. Просто представьте, что он дальше " "сделает со слизью." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "Сумка из Плоти" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." @@ -249603,27 +249329,27 @@ msgstr "" "Заклинание выращивает большую сумку из плоти из кожи вашей спины, в ней " "можно носить вещи." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "Вызвать Костяное Копьё" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" "Создаёт длинное костяное древко с острым кончиком и лезвиями по всей длине." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "Биомантская руна" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." @@ -249631,15 +249357,15 @@ msgstr "" "Этот ритуал создаёт маленький камешек, наполненный магией биомантов. Эту " "руну можно применять в рецептах как катализатор." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "Парализующий дротик" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." @@ -249647,15 +249373,15 @@ msgstr "" "Выпускает изогнутую иглу из кости и сухожилий, несущую в себе жало я " "замедляющим жертву ядом." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "Внутренняя защита" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." @@ -249664,34 +249390,34 @@ msgstr "" "остатки разрастаются, пытаясь поймать жертву в свои дергающиеся ядовитые " "щупальца." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "Внутренний паралич" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "Побочный парализующий эффект от Проецирования." -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "Внутреннее отвержение" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "Задевает побочным эффектом создающего заклинание." -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "Плетение крови" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " @@ -249702,38 +249428,74 @@ msgstr "" "очищает раны прежде, чем они подвергнутся заражению инфекцией. Ценой этому " "служат усиление голода и жажды." -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "Кристаллизовать ману" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "Кристаллизует ману в твердую форму" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "Истощение маны" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "Побочный эффект от кристаллизации маны" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "Темновидение" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "Даёт способность видеть в темноте" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." @@ -249741,15 +249503,15 @@ msgstr "" "На мгновение ваши глаза светятся зелёным огнём. Теперь ваше зрение способно " "проникнуть сквозь самые тёмные тени." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "Мегавзрыв" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" @@ -249757,27 +249519,27 @@ msgstr "" "Вы всегда хотели уметь испускать энерголучи, как в аниме, которое вы " "смотрели в детстве. Теперь вы умеете!" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "Волшебный свет" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "Создаёт волшебный свет." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "Ослепляющая вспышка" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." @@ -249785,15 +249547,15 @@ msgstr "" "Резкий сверкающий свет, ненадолго ослепляющий противников. На высоких " "уровнях немного разрушительнее." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "Эфирная хватка" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." @@ -249801,12 +249563,12 @@ msgstr "" "Множество призрачных рук вырываются из-под земли и замедляют всех области " "воздействия. На высоких уровнях область выше, а эффект дольше." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "Спрятанное Тело" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." @@ -249814,65 +249576,77 @@ msgstr "" "Магическая аура искажает свет вокруг вашего тела, благодаря чему от " "вражеских атак легче уворачиваться." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "Защитная аура" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" "Окутывает ваше тело волшебной оболочкой, защищающей вас от внешней среды." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "Переместить себя" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "Перемещает заклинателя к назначенным вратам." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "Сопротивление кислоте" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "Защищает от кислоты." -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "Большое сопротивление кислоте" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "Шаблон заклинания" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "Шаблон для демонстрации всех возможных значений" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "Вы кастуете %s, и у вас закладывает уши!" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "Вызвать отладочных монстров" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "Укажите, скольких монстров вызвать." @@ -249884,168 +249658,141 @@ msgstr "Укажите, скольких монстров вызвать." #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "Скастовано отладочное заклинание %s." -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "Отладочное заклинание выносливости" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "Тратит немного выносливости" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" "У отладочного заклинания [ %s ] нет эффектов. Должно быть отладочное " "предупреждение." -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "Отладочное заклинание усталости" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "Тратит немного усталости" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "Отладочное заклинание ХП" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "Тратит немного ХП" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "Отладочное бионическое заклинание" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "Тратит немного бионической энергии" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "Отладочное заклинание с эффектом" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "Добавляет эффект на цель" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "Тестовая область — Притягивание" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "Притягивает внутрь все предметы." -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "Тестовая область — Притягивание (Поле)" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "Притягивает внутрь тайлы с полем." -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "Тестовая область — Толчок" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "Отталкивает все предметы наружу." -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "Отладочная Полная защита" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "Ничто не может нанести вам вред." #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "Вы неуязвимы, ничто не может нанести вам вред!" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "Отладочное Падение как перо" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "Вы лёгкий, как пёрышко, и падаете подобно ему." #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "Вы едите перо!" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "Дыхание чёрного дракона" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "Из вашего рта истекает струя кислоты." -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "Растительная Хватка" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." @@ -250053,29 +249800,29 @@ msgstr "" "Корни и лианы вырываются из-под земли и хватают ваших противников, замедляя " "их и нанося небольшой урон." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "Корневой Удар" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "Корни вырываются из-под земли и протыкают ваших противников." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "Древесное Копьё" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." @@ -250083,15 +249830,15 @@ msgstr "" "Заклинание создаёт копьё из древесины, которое выстреливает из вашей руки и " "на большой скорости пронзает противника." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "Природный Лук" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." @@ -250099,15 +249846,15 @@ msgstr "" "Заклинание временно создаёт волшебный деревянный лук с бесконечными " "стрелами." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "Природный транс" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." @@ -250115,24 +249862,24 @@ msgstr "" "Ваша связь с живой природой позволяет вам погрузиться в волшебный транс. Вы " "быстро восстанавливаете усталость в обмен на ману." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "Мешок кошек" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "Вы что, сумасшедшая кошатница?" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "Вызов медведя" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -250144,21 +249891,21 @@ msgstr "" "даст вожделенного эффекта, потому что письмена трудно разобрать. Нет времени" " выяснять, Катаклизм все-таки!" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "Убить грибок" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "Уничтожить области, поражённые грибком" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "Друидическая руна" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." @@ -250166,12 +249913,12 @@ msgstr "" "Этот ритуал создаёт маленький камешек, наполненный магией друидов. Эту руну " "можно применять в рецептах как катализатор." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "Семя Очищения" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." @@ -250179,15 +249926,15 @@ msgstr "" "Вы призываете дар земли, который очистит воду. Быстро деградирует, если не " "используется." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "Жертвенное разрастание" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." @@ -250195,15 +249942,15 @@ msgstr "" "Жертвуя чью-то жизненную силу, вы можете вдыхать жизнь в поникшие и высохшие" " растения. Для возобновления роста в полную силу потребуется время." -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "Жертвенное лечение" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." @@ -250211,15 +249958,15 @@ msgstr "" "Позволят направить жизненные силы творящего заклинание на исцеление, " "позволяя помочь союзнику." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "Каменный кулак" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." @@ -250227,15 +249974,15 @@ msgstr "" "Покрывает ваши руки оболочкой из волшебного камня. Вы можете ими бить или " "защищаться в ближнем бою." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "Сейсмический удар" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." @@ -250243,15 +249990,15 @@ msgstr "" "Вы фокусируете энергию на свои ноги и топаете, посылая ударную волну, " "которая сбивает окружающих противников с ног." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "Крепкость камня" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." @@ -250259,15 +250006,15 @@ msgstr "" "Вы сосредотачиваетесь на камнях под ногами и впитываете их бессмертие. Ваша " "мана превращается в выносливость." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "Поток осколков" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." @@ -250275,15 +250022,15 @@ msgstr "" "Это заклинанием создаёт широкий конус острых металлических осколков, " "разрезающих ваших противников и спутников." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "Пронзающая игла" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." @@ -250291,46 +250038,46 @@ msgstr "" "Это заклинание выстреливает острым металлическим стержнем в тех, кто посмел " "противостоять вам." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "Буря осколков" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "Бритвенно-острые куски металла разлетаются во все стороны вокруг вас." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "Каменный удар" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "С большой скоростью выстреливает вызванным камнем." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "Сдвинуть Землю" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "Ваша сущность течет вокруг вас, и земля следует." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "Земная руна" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." @@ -250338,34 +250085,34 @@ msgstr "" "Этот ритуал создаёт маленький камешек, наполненный магией повелителей земли." " Эту руну можно применять в рецептах как катализатор." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "Вулканическая бомба-шрапнель" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "Это вспомогательное заклинание вулканической бомбы." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "Жар вулканической бомбы" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "Разрушение окружения вулканической бомбой" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "Вулканическая бомба" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " @@ -250375,15 +250122,15 @@ msgstr "" "лавы, окруженный горячим твёрдым камнем. Он разрушается при попадании, " "разбрызгивая лаву и осколки камня повсюду." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "Каменная кожа" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." @@ -250391,15 +250138,15 @@ msgstr "" "Обволакивает все ваше тело бронёй, сформированной из живого камня, " "обременительной, но хорошо защищающей." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "Колонна камня" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" @@ -250409,21 +250156,41 @@ msgstr "" "камня. С опытом заклинание становится проще и наносит меньше урона " "окружающей вас местности." -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "Эффект Колонны камня" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "Последующий дробящий эффект, опыт снижает урон и площадь поражения." -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "Безумное Исцеление" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" @@ -250433,12 +250200,12 @@ msgstr "" "Неразумно использовать при прямой опасности и может быть смертельно в " "критическом состоянии." -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "Улучшенное Безумное Исцеление" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" @@ -250448,39 +250215,39 @@ msgstr "" "Неразумно использовать при прямой опасности и может быть смертельно в " "критическом состоянии. Улучшенное заваривание смягчает нагрузку заклинания." -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "Сколдовать метательный клинок I" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "сколдовать 3 метательных ножа" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" "Вы активируете своё кольцо. Рядом с вами появляются три готовых к броску " "метательных ножа!" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "Восстановление маны" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "Вы восстановите запас маны." #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "Вы начинаете восстанавливать запас маны!" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" @@ -250488,27 +250255,27 @@ msgstr "" "Ваши сосуды словно наполнены огнём!\n" "Вы начинаете регенерировать ману!" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "Точечная вспышка" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "Значительно повышает температуру и повреждает цель." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "Палец-зажигалка" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" @@ -250518,30 +250285,30 @@ msgstr "" "поджечь. Чтобы развести огонь, нужно сделать это целенаправленно, так как вы" " можете положить руку в карман без каких-то проблем." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "Ледяные шипы" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" "Зазубренные сосульки появляются в воздухе над целью, падают и наносят урон." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "Огненный шар" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." @@ -250549,28 +250316,28 @@ msgstr "" "Вы кидаете крошечный светящийся шарик, который при контакте с целью или " "препятствием расцветает взрывом обжигающего жара без ударной волны." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "Конус холода" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "Вы испускаете конус ледяного воздуха в направлении цели." -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "Горящие руки" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." @@ -250578,15 +250345,15 @@ msgstr "" "Вы точно раньше видели это в какой-то игре. Вы испускаете небольшой конус " "огня." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "Ледяные брызги" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." @@ -250594,27 +250361,27 @@ msgstr "" "Вы точно раньше видели это в какой-то игре. Вы испускаете небольшой конус " "льда и холода." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "Леденящее касание" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "Невероятный холод замораживает цель." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "Скольжение по льду" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." @@ -250622,15 +250389,15 @@ msgstr "" "Покрывает ваши ступни волшебным льдом, позволяя быстро скользить по ровной " "поверхности." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "Инеевый взрыв" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." @@ -250638,15 +250405,15 @@ msgstr "" "Вы направляете светящийся белый ледяной кристалл, взрывающийся лютым холодом" " при столкновении." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "Ледяной щит" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." @@ -250654,24 +250421,24 @@ msgstr "" "Создаёт волшебный ледяной щит на вашей руке, вы можете им защищаться в " "ближнем бою или стукнуть кого-нибудь." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "Ледяная броня" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "Покрывает вас тонким слоем волшебного льда, защищая от вреда." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "Кельвинистская руна" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." @@ -250679,8 +250446,8 @@ msgstr "" "Этот ритуал создаёт маленький камешек, наполненный магией кельвинистов. Эту " "руну можно применять в рецептах как катализатор." -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "Огнемеч" @@ -250689,7 +250456,7 @@ msgstr[2] "Огнемечей" msgstr[3] "Огнемечи" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." @@ -250697,66 +250464,99 @@ msgstr "" "Это заклинание воспламеняет деревянный меч, создавая пламенный клинок, " "способный жечь, резать и рубить." -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "Огнедых" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" +"Это заклинание поджигает рассеянную в воздухе пыль, создавая конус пламени. " +"Горячий пепел может прилипнуть к цели, вызывая со временем дополнительные " +"ожоги." + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "Призвать крокодила" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "Призывает крокодила навсегда." #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "Шаман призывает крокодила!" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "древнее заклинание ящеролюдов" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "Создаёт одно из заклятий шамана." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "Волшебная ракета" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "Я кастую волшебную ракету в темноту!" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "Дверь измерений" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "Телепортирует вас на короткое расстояние в случайном направлении." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "Гравитационный колодец" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." @@ -250764,69 +250564,69 @@ msgstr "" "Создаёт гравитационный колодец с центром в указанной точке. Наносит дробящий" " урон всем существам в области." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "Взрыв маны" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" "Взрыв сосредоточенной магической энергии, уничтожающий всё в большой " "области." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "Удар маны" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "Заряд магической энергии, повреждающий только ваших врагов." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "Ускорение" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" "Это заклинание на короткое время невероятно увеличивает вашу скорость." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "Луч маны" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" "Луч сфокусированной магической энергии, повреждающий любых противников на " "своём пути." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "Побег" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." @@ -250834,12 +250634,12 @@ msgstr "" "Телепортирует вас в случайном направлении на среднее расстояние, чтобы " "помочь вам сбежать от противников в опасной ситуации." -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "Магическая руна" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." @@ -250847,60 +250647,60 @@ msgstr "" "Этот ритуал создаёт маленький камешек, наполненный волшебством магов. Эту " "руну можно применять в рецептах как катализатор." -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "Кошачья Грация" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "Вы становитесь более грациозным, ловким и скоординированным." -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "Орлиный Взгляд" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "Вы получаете орлиное восприятие." -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "Сила Огра" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "Вы получаете силу огра." -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "Лисья Хитрость" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "Вы становитесь коварным, как лиса." #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." @@ -250908,13 +250708,13 @@ msgstr "" "Кристаллизует ману в твердую форму. Изменения в вашей психике сделали это " "заклинание куда эффективнее и легче для вас." -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "Самонаводящиеся Заряды" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." @@ -250923,71 +250723,71 @@ msgstr "" "случайно выбранные цели в радиусе поражения." #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "шух" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "Высасывание крови" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "Высасывает кровь из одного врага." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "Медвежий Капкан" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "Капкан, призывающий медведей! Этого вы не ожидали, правда?" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "«Это ловушка!»" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "Ракетный удар" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "Стреляет огромным кулаком из кисти." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "Газовая атака" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "Распространяет вокруг токсичный газ." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "Демонический огненный шар" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "Заклинание только для монстров." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "Вызвать демонических паучат" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "Вызывает 4 демонических паучат навсегда." #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." @@ -250995,12 +250795,12 @@ msgstr "" "Разделено от Горящих Рук игрока, потому что я не хочу снова случайно " "баффнуть Демонических Пауков." -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "Взгляд крабгика" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" @@ -251008,23 +250808,37 @@ msgstr "" "Раковый луч, пыщь! (Крабгиковая версия Некротического Взгляда по причине " "баланса)" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "Кислотный аэрозоль" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "Чей-то рецепт пудинга был *крайне* так себе… (заклинание монстра)" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "Разряд" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" "Из ваших пальцев исходит короткий веер электричества, поражающий на " @@ -251034,20 +250848,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "потрескивание" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "Удар молнии" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -251059,35 +250873,35 @@ msgstr "" "пальцев. Однако эта молния более направленная, чем многие другие молнии, и " "распространяется по прямой сквозь почти любые не-твёрдые цели." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "Удар ветра" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "Мощный порыв ветра ударяет во всё перед вашей вытянутой рукой." #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "«вжууух»" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "Крылья ветра" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." @@ -251095,15 +250909,15 @@ msgstr "" "Вас подталкивает волшебный ветер, облегчая передвижение и увеличивая " "скорость." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "Призвать Грозовой молот" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" @@ -251111,12 +250925,12 @@ msgstr "" "Создаёт искрящийся волшебный боевой молот, наполненный силой молнии, чтобы " "покарать ваших врагов и, конечно, разнести что-нибудь вдребезги!" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "Буревая руна" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." @@ -251124,15 +250938,15 @@ msgstr "" "Этот ритуал создаёт маленький камешек, наполненный магией повелителей бури. " "Эту руну можно применять в рецептах как катализатор." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "Заряд молнии" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -251143,7 +250957,7 @@ msgstr "" "выстрелить сразу несколькими." #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." @@ -251151,15 +250965,15 @@ msgstr "" "Вы призываете силу небес, чтобы поразить землю. С ваших пальцев срываются " "несколько зарядов молний, поражая цель." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "Ионизация" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -251171,24 +250985,24 @@ msgstr "" " разрушительно, как настоящая молния, вспышка и грохот разряда заставят " "ваших врагов содрогнуться." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "Ионизирующий гром" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "Создаёт настоящий эффект светошумовой гранаты." -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "Стена тумана" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " @@ -251197,13 +251011,37 @@ msgstr "" "Создаёт широкую преграду из густого тумана. Хотя резкий перепад давления " "собьет с ног кого угодно, в остальном это заклинание безвредно." -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "Невидимость" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." @@ -251212,30 +251050,30 @@ msgstr "" " называется невидимостью, только безо всяких научных штучек-дрючек." #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "С точки зрения внешнего мира ваше тело тает, и вы исчезаете!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "Лампа" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "Создаёт волшебную лампу." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "Манатричество" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." @@ -251243,12 +251081,12 @@ msgstr "" "Вы обнаружили способ преобразования вашей духовной энергии в электричество " "для зарядки бионики." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "Техномантская руна" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." @@ -251256,14 +251094,14 @@ msgstr "" "Этот ритуал создаёт маленький камешек, наполненный магией техномантов. Эту " "руну можно применять в рецептах как катализатор." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "Электрошок" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." @@ -251271,15 +251109,15 @@ msgstr "" "Это заклинание создаёт электрический заряд, чтобы оглушить врагов на очень " "маленьком расстоянии." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "Малый квантовый тоннель" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -251291,16 +251129,16 @@ msgstr "" "заранее не уверены, где именно появитесь. При выходе вас охватывает " "небольшое замешательство, пока вы не сориентируетесь." -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "Синаптическая стимуляция" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -251311,14 +251149,14 @@ msgstr "" " скоростей, обеспечивая значительный прирост мыслительных способностей, " "включая ускорение рефлексов, скорости и интеллекта. Используйте с умом!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "Лазер" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." @@ -251326,15 +251164,15 @@ msgstr "" "Вы концентрируете и высвобождаете в цель поток сфокусированных фотонов, " "обычно такое называется лазером." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "Оживлённый клинок" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." @@ -251342,15 +251180,15 @@ msgstr "" "Это заклинание вызывает живой летающий клинок, разрезающий ваших противников" " на кусочки. Очень маленькие кусочки." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "Зеркальный образ" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." @@ -251358,33 +251196,33 @@ msgstr "" "Это заклинание превращает свет в едва ли материальную копию живого существа." " Волшебная голограмма, если кратко." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "Призвать парящий диск" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "Призывает парящий диск, способный нести груз." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "Ожог от Перегрузки" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "Побочный эффект от использования заклинания перегрузки." -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "Оптический чихающий луч" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -251395,12 +251233,12 @@ msgstr "" "странное чувство юмора." #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "бззззззт!" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." @@ -251409,106 +251247,106 @@ msgstr "" "испускаете её из центра вашего лица." #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "Вы истощены большим объемом направленной маны." #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "Использование такого количества маны утомило вас" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "Тяжесть от истощения маной прошла." #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "Вас подгоняет и подталкивает порыв ветра." #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "Вас подгоняет и подталкивает порыв ветра." #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "Порыв ветра стихает." #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "Вы можете видеть в темноте." #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "Ваше зрение приспособлено к темноте." #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "Темнота теряет очертания." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "Эфирная хватка" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "Призрачные руки пытаются удержать вас на месте!" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "Из земли вырываются призрачные руки и хватают вас!" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "Призрачные руки тают и исчезают." #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "Вас никто не видит." #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "Вы таете и исчезаете." #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "Вы снова видите свои руки." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "Благословение" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "Вас наполняет энергия, помогающая вам во всём." #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "Вас наполняет энергия, помогающая вам во всём!" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "Ваша энергия истощается." #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." @@ -251517,205 +251355,205 @@ msgstr "" "глаза тускло светятся зелёным." #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "Выше тело быстро возвращается в обычное состояние." #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "Корни и лианы оплетают ваших противников." #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "Корни и лианы оплетают ваших противников, замедляя их!" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "Корни и лианы усыхают и отмирают." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "Пронзающие Корни" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "Корни вырываются из-под земли и пронзают ваших противников!" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "Корни усыхают и отмирают." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "Кислотный ожог" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "Обожжён кислотой" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "Ускорение" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "Ваша скорость значительно увеличена." #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "Ваша скорость возросла до сверхчеловеческой!" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "Ваша скорость возвращается к обычному уровню." #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "Ваши мыслительные способности усилились." #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "Ваш разум ускоряется." #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "Ваш разум возвращается к обычному состоянию." #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "Вы обретаете силу огра!" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "Вы чувствуете силу!" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "Ваша сила снижается обратно." #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "Вы обретаете восприятие орла!" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "Вы замечаете мелкие детали!" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "Ваше зрение возвращается к обычному уровню." #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "Вы обретаете ловкость кошки!" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "Ваши рефлексы ускорились!" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "Ваши рефлексы возвращаются к обычному уровню." #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "Вы обретаете хитрость лисы!" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "Ваш интеллект обострился!" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "Ваш интеллект возвращается к обычному уровню." #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "Могущество Разработчиков с покалыванием наполняет вашу кожу!" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "Покалывание прекращается, ваша жизнь снова пуста и бессмысленна." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "Отладочное Падение как перо" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "Вы лёгкий, как пёрышко, и падаете подобно ему." #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "Ваше тело лёгкое, как пёрышко." #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "Земля с силой тянет вас вниз." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "Страх" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "Ужас" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "В ужасе" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "У вас трясутся колени, сердце рвётся из груди и желудок бушует." #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "Вы напуганы!" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "Ваш страх исчезает." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "Внутреннее перенапряжение" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." @@ -251724,7 +251562,7 @@ msgstr "" "влияния на такую обширную область." #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." @@ -251733,20 +251571,20 @@ msgstr "" "усиленный голод и жажда." #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "Напряжение, переполнявшее вашу плоть, ослабевает." -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "Биомантический яд" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "Вы чувствуете усталость и слабость от отравления магией." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "гастролит совомедведя" @@ -251755,7 +251593,7 @@ msgstr[2] "гастролитов совомедведя" msgstr[3] "гастролиты совомедведя" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -251767,7 +251605,7 @@ msgstr "" "он таким же образом пригодится в алхимии, помогая связывать несопоставимые " "компоненты." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "каменная скорлупа" @@ -251776,7 +251614,7 @@ msgstr[2] "каменной скорлупы" msgstr[3] "каменная скорлупа" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." @@ -251784,50 +251622,7 @@ msgstr "" "Отломанный кусок яйца совомедведя. Если повезёт, в нём ещё могут остаться " "следы былой силы, в крайнем случае это довольно острый осколок." -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "омеднённый браслет" -msgstr[1] "омеднённых браслета" -msgstr[2] "омеднённых браслетов" -msgstr[3] "омеднённые браслеты" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" -"Браслет с выгравированными рунами. Вы ощущаете лёгкое мистическое дуновение," -" когда смотрите на него. Он пригодится для пропитывания материалов маной." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "посеребрённый браслет" -msgstr[1] "посеребрённых браслета" -msgstr[2] "посеребрённых браслетов" -msgstr[3] "посеребрённые браслеты" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "медный венец" -msgstr[1] "медных венца" -msgstr[2] "медных венцов" -msgstr[3] "медные венцы" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" -"Деревянный обруч с медным обрамлением для ношения на голове. Когда вы его " -"надеваете и касаетесь висков, то ощущаете невероятное спокойствие." - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "основа для зелий" @@ -251836,7 +251631,7 @@ msgstr[2] "основа для зелий" msgstr[3] "основа для зелий" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." @@ -251844,7 +251639,7 @@ msgstr "" "Крепкий спирт, наполненный маной и концентрированный в жидкость, способную " "стабилизировать заклинания в жидкой форме. Если хотите, можете выпить." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "превосходная основа для зелий" @@ -251853,7 +251648,7 @@ msgstr[2] "превосходная основа для зелий" msgstr[3] "превосходная основа для зелий" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." @@ -251861,7 +251656,7 @@ msgstr "" "Чистый спирт, насыщенный магической энергией. Сила, сконцентрированная " "внутри, заставляет поверхность зелья непрерывно покрываться волнами." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "большой надпочечник" @@ -251870,7 +251665,7 @@ msgstr[2] "больших надпочечников" msgstr[3] "большие надпочечники" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." @@ -251879,7 +251674,7 @@ msgstr "" "альдостерон. Этот экземпляр просто огромный по естественным причинам или в " "результате мутации." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "светящаяся пыль" @@ -251888,7 +251683,7 @@ msgstr[2] "светящейся пыли" msgstr[3] "светящаяся пыль" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." @@ -251896,66 +251691,7 @@ msgstr "" "Растёртые в пыль остатки физического тела блуждающего огонька. Они всё ещё " "светятся неземным сиянием." -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "волшебная читальная лампа" -msgstr[1] "волшебных читальных лампы" -msgstr[2] "волшебных читальных ламп" -msgstr[3] "волшебные читальные лампы" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" -"При помощи волшебства светящейся пыли и маленьких зелий маны эта крайне " -"дорогая маленькая лампа способна как минимум десятилетие излучать тусклый " -"свет, которого едва хватит для чтения. Активируйте, чтобы закрыть крышку и " -"спрятать свет." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "волшебная читальная лампа (закрыта)" -msgstr[1] "волшебных читальных лампы (закрытых)" -msgstr[2] "волшебных читальных ламп (закрытых)" -msgstr[3] "волшебные читальные лампы (закрытые)" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" -"При помощи волшебства светящейся пыли и маленьких зелий маны эта крайне " -"дорогая маленькая лампа способна как минимум десятилетие излучать тусклый " -"свет, которого едва хватит для чтения. Крышка закрыта. Активируйте, чтобы " -"открыть крышку и выпустить свет." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "панцирь булитта" -msgstr[1] "панциря булитта" -msgstr[2] "панцирей булитта" -msgstr[3] "панцири булитта" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" -"Большие пластины с загривка булитта всегда высоко ценились в изготовлении " -"щитов и доспехов." - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "жемчуг булитта" @@ -251964,7 +251700,7 @@ msgstr[2] "жемчуга булитта" msgstr[3] "жемчуг булитта" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " @@ -251974,7 +251710,7 @@ msgstr "" "драгоценных металлов и самоцветов, которые медленно слипаются в блестящие " "камешки, ценящиеся за красоту и силу." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "драконья эссенция" @@ -251983,14 +251719,14 @@ msgstr[2] "драконья эссенция" msgstr[3] "драконья эссенция" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" "Это магическая эссенция дракона, дистиллированная в концентрированную форму." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "хоботок кровопийцы" @@ -252000,7 +251736,7 @@ msgstr[3] "хоботки кровопийцы" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." @@ -252008,43 +251744,7 @@ msgstr "" "Длинный сосущий хоботок, срезанный с мёртвого кровопийцы. Посредственное " "оружие." -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "кусок демонического хитина" -msgstr[1] "куска демонического хитина" -msgstr[2] "кусков демонического хитина" -msgstr[3] "куски демонического хитина" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" -"Кусок панциря демонического паука. Он лёгкий, очень прочный и имеет кое-" -"какие волшебные свойства." - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "пластина демонического хитина" -msgstr[1] "пластины демонического хитина" -msgstr[2] "пластин демонического хитина" -msgstr[3] "пластины демонического хитина" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" -"Большой кусок панциря демонического паука, тщательно вырезанный из трупа " -"взрослого чудовища. Из пластины такого размера можно изготовить доспех." - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "клык демонического паука" @@ -252053,7 +251753,7 @@ msgstr[2] "клыков демонического паука" msgstr[3] "клыки демонического паука" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" @@ -252061,8 +251761,8 @@ msgstr "" "Клык демонического паука, всё ещё сочащийся ядов. Может пригодиться в " "алхимических рецептах." -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "алюментум" @@ -252071,19 +251771,14 @@ msgstr[2] "алюментум" msgstr[3] "алюментум" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -"Алюментум состоит из магически преобразованного бурого или древесного угля. " -"Горит так же горячо, как магний, но намного дольше. Из-за своей полезности " -"остался одним из из очень немногих волшебных материалов, которые всё ещё " -"производятся." -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "пыль из маны" @@ -252092,15 +251787,15 @@ msgstr[2] "пыль из маны" msgstr[3] "пыль из маны" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" "Кристаллизованная мана в форме порошка. Она слабо светится от магической " "энергии. " -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "драконья кровь" @@ -252108,8 +251803,8 @@ msgstr[1] "драконьей крови" msgstr[2] "драконьей крови" msgstr[3] "драконья кровь" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "насыщенная маной кровь" @@ -252117,8 +251812,8 @@ msgstr[1] "насыщенная маной кровь" msgstr[2] "насыщенная маной кровь" msgstr[3] "насыщенная маной кровь" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "орихалковая стрела" @@ -252126,11 +251821,11 @@ msgstr[1] "орихалковые стрелы" msgstr[2] "орихалковых стрел" msgstr[3] "орихалковые стрелы" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "ртуть" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "Ихайваль" @@ -252138,7 +251833,7 @@ msgstr[1] "Ихайваля" msgstr[2] "Ихайвалей" msgstr[3] "Ихайвали" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -252149,7 +251844,7 @@ msgstr "" "золотом, и на нём вырезан ворон." #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" @@ -252159,7 +251854,7 @@ msgstr "" "очень высокий шанс остаться целой при выстреле, однако может быть выпущена " "только из Ихайвалья." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "пара наручей из демонического хитина" @@ -252169,7 +251864,7 @@ msgstr[3] "пары наручей из демонического хитина" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." @@ -252177,7 +251872,7 @@ msgstr "" "Пара наручей, изготовленных из кусков тщательно очищенного красного " "экзоскелета демонических пауков. Устойчивы к жару и очень прочные." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "броня из демонического хитина" @@ -252186,7 +251881,7 @@ msgstr[2] "брони из демонического хитина" msgstr[3] "броня из демонического хитина" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." @@ -252195,7 +251890,7 @@ msgstr "" "очищенногокрасного экзоскелета демонических пауков. Устойчива к жару и очень" " прочная." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "шлем из демонического хитина" @@ -252204,7 +251899,7 @@ msgstr[2] "шлемов из демонического хитина" msgstr[3] "шлемы из демонического хитина" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." @@ -252212,7 +251907,7 @@ msgstr "" "Шлем, изготовленный из кусков тщательно очищенного красного экзоскелета " "демонических пауков. Покрывает всю голову. Устойчив к жару и очень прочен." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "пара рукавиц из демонического хитине" @@ -252222,7 +251917,7 @@ msgstr[3] "пары рукавиц из демонического хитине" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." @@ -252230,7 +251925,7 @@ msgstr "" "Пара перчаток, изготовленных из кусков тщательно очищенного красного " "экзоскелета демонических пауков. Устойчивы к жару и очень прочные." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "пара ботинок из демонического хитина" @@ -252240,7 +251935,7 @@ msgstr[3] "пары ботинок из демонического хитина" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." @@ -252248,7 +251943,7 @@ msgstr "" "Пара ботинок, изготовленных из кусков тщательно очищенного красного " "экзоскелета демонических пауков. Устойчивы к жару и очень прочные." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "собачья броня из демонического хитина" @@ -252258,7 +251953,7 @@ msgstr[3] "собачьи брони из демонического хитин #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." @@ -252267,7 +251962,7 @@ msgstr "" "сетке. Защищает собачье тело от шеи до живота. Можно надеть на дружественную" " собаку." -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "лошадиная броня из демонического хитина" @@ -252276,7 +251971,7 @@ msgstr[2] "лошадиной брони из демонического хит msgstr[3] "лошадиные брони из демонического хитина" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." @@ -252284,42 +251979,7 @@ msgstr "" "Самодельная броня — нагривник, нагрудник и накрупник из демонического " "хитина, прикреплённого к тонкой сетке. Можно надеть на дружественную лошадь." -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" -"При помощи последних достижений техномансии этот имплантат способен " -"превращать внутреннюю энергию крови в бионическую энергию. Чем крепче кровь," -" тем лучше. Вмещает до 100 мл крови." - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "нос из кристаллизованной маны" -msgstr[1] "носа из кристаллизованной маны" -msgstr[2] "носов из кристаллизованной маны" -msgstr[3] "носы из кристаллизованной маны" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" -"Большой драгоценный камень из кристаллизованной маны и стабилизирующих " -"металлов. В комплекте идет специальный источник питания (устанавливается в " -"череп), позволяющий предотвратить интерференцию с линиями маны. " -"ПРЕДУПРЕЖДЕНИЕ: только для техномансеров. Используя данное заклинание, вы " -"снимаете всю ответственность с корпорации ЛазерПиуПиу Инкорпорейтед и её " -"дочерних предприятий." - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "чешуя чёрного дракона" @@ -252328,7 +251988,7 @@ msgstr[2] "чешуи чёрного дракона" msgstr[3] "чешуя чёрного дракона" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." @@ -252336,7 +251996,7 @@ msgstr "" "Чешуя чёрного дракона, всё ещё хранящая волшебные свойства и сопротивление " "кислоте." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "сырая шкура чёрного дракона" @@ -252345,7 +252005,7 @@ msgstr[2] "сырых шкур чёрного дракона" msgstr[3] "сырые шкуры чёрного дракона" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " @@ -252355,7 +252015,7 @@ msgstr "" "кусок, что он пригоден для изготовления брони и имеет достаточное количество" " чешуек для создания чешуйчатой кольчуги." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "дублёная шкура чёрного дракона" @@ -252364,17 +252024,17 @@ msgstr[2] "дублёных шкур чёрного дракона" msgstr[3] "дублёные шкуры чёрного дракона" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "Вы аккуратно разворачиваете шкуру чёрного дракона и отряхиваете её." #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "Шкура чёрного дракона ещё не готова." #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " @@ -252384,7 +252044,7 @@ msgstr "" "необходимые для превращения в пригодное состояние. Вы сможете её " "активировать для разворачивания и использования, когда будет готова." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "шкура чёрного дракона" @@ -252393,7 +252053,7 @@ msgstr[2] "шкур чёрного дракона" msgstr[3] "шкуры чёрного дракона" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." @@ -252402,7 +252062,7 @@ msgstr "" "чешуя, из неё можно изготовить доспех, прочный как сталь и вдвое легче " "стали." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "чёрные ботинки из чешуи дракона" @@ -252412,14 +252072,14 @@ msgstr[3] "пары чёрных ботинок из чешуи дракона" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" "Ботинки сделаны из чёрной чешуи дракона. Хорошо защищают и на удивление " "лёгкие." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "пара ботинок из шкуры чёрного дракона" @@ -252429,12 +252089,12 @@ msgstr[3] "пары ботинок из шкуры чёрного дракона #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "Ботинки из шкуры чёрного дракона. Очень прочные и удивительно лёгкие." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "шлем из чешуи чёрного дракона" @@ -252443,7 +252103,7 @@ msgstr[2] "шлемов из чешуи чёрного дракона" msgstr[3] "шлемы из чешуи чёрного дракона" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." @@ -252451,7 +252111,7 @@ msgstr "" "Шлем из чешуи чёрного дракона, скреплённый его же шкурой. Имеется полное " "забрало." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "шлем из шкуры чёрного дракона" @@ -252460,14 +252120,14 @@ msgstr[2] "шлемов из шкуры чёрного дракона" msgstr[3] "шлемы из шкуры чёрного дракона" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" "Шлем из шкуры чёрного дракона. Отлично защищает голову и не прикрывает лица." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "доспех из чешуи чёрного дракона" @@ -252476,7 +252136,7 @@ msgstr[2] "доспехов из чешуи чёрного дракона" msgstr[3] "доспехи из чешуи чёрного дракона" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" @@ -252485,7 +252145,7 @@ msgstr "" "Полный набор лат из чешуи чёрного дракона. Части очень лёгкого и гибкого " "доспеха прикрывают торс, ноги и руки." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "доспех из шкуры чёрного дракона" @@ -252494,7 +252154,7 @@ msgstr[2] "доспехов из шкуры чёрного дракона" msgstr[3] "доспехи из шкуры чёрного дракона" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " @@ -252503,7 +252163,7 @@ msgstr "" "Полный набор лат из шкуры чёрного дракона. Части очень лёгкого и гибкого " "доспеха прикрывают торс, ноги и руки." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "пара рукавиц из чешуи чёрного дракона" @@ -252513,13 +252173,13 @@ msgstr[3] "пары рукавиц из чешуи чёрного дракона #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "Пара тяжёлых рукавиц из чешуи чёрного дракона для защиты рук." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "пара перчаток из шкуры чёрного дракона" @@ -252527,7 +252187,7 @@ msgstr[1] "пары перчаток из шкуры чёрного дракон msgstr[2] "пар перчаток из шкуры чёрного дракона" msgstr[3] "пары перчаток из шкуры чёрного дракона" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "пара ботинок из чешуи чёрного дракона XL" @@ -252537,7 +252197,7 @@ msgstr[3] "пары ботинок из чешуи чёрного дракона #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." @@ -252545,7 +252205,7 @@ msgstr "" "Огромные ботинки сделаны из чёрной чешуи дракона. Очень прочные и на " "удивление лёгкие." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "пара ботинок из шкуры чёрного дракона XL" @@ -252555,7 +252215,7 @@ msgstr[3] "пары ботинок из шкуры чёрного дракона #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." @@ -252563,7 +252223,7 @@ msgstr "" "Огромные ботинки из чёрной чешуи дракона, измененные так, чтобы налезать " "даже на самые странные конечности. Очень защищенные и на удивление лёгкие." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "пара рукавиц из чешуи чёрного дракона XL" @@ -252573,7 +252233,7 @@ msgstr[3] "пары рукавиц из чешуи чёрного дракона #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." @@ -252581,7 +252241,7 @@ msgstr "" "Тяжёлых рукавицы из чешуи чёрного дракона для защиты рук, или что там у вас " "вместо них." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "пара перчаток из шкуры чёрного дракона XL" @@ -252591,7 +252251,7 @@ msgstr[3] "пары перчаток из шкуры чёрного дракон #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " @@ -252601,7 +252261,7 @@ msgstr "" "для ношения и обеспечивают максимальную защиту при экстремальных условиях. " "Подходят даже для самой странных анатомических форм." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "шлем из чешуи чёрного дракона XL" @@ -252610,7 +252270,7 @@ msgstr[2] "шлемов из чешуи чёрного дракона XL" msgstr[3] "шлемы из чешуи чёрного дракона XL" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" @@ -252619,7 +252279,7 @@ msgstr "" "Шлем из чешуи чёрного дракона, скреплённый его же шкурой. Имеется полное " "забрало и достаточно крупный для любой странной формы головы." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "шлем из шкуры чёрного дракона XL" @@ -252628,7 +252288,7 @@ msgstr[2] "шлемов из шкуры чёрного дракона XL" msgstr[3] "шлемы из шкуры чёрного дракона XL" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " @@ -252637,7 +252297,7 @@ msgstr "" "Шлем из шкуры чёрного дракона. Отлично защищает голову и не прикрывает лица." " Достаточно крупный для любой странной формы головы." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "доспех из чешуи чёрного дракона XL" @@ -252646,7 +252306,7 @@ msgstr[2] "доспехов из чешуи чёрного дракона XL" msgstr[3] "доспехи из чешуи чёрного дракона XL" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -252656,7 +252316,7 @@ msgstr "" "гибкого доспеха прикрывают торс, ноги и руки; может быть подогнан даже под " "самую странную анатомию." -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "доспех из шкуры чёрного дракона XL" @@ -252665,7 +252325,7 @@ msgstr[2] "доспехов из шкуры чёрного дракона XL" msgstr[3] "доспехи из шкуры чёрного дракона XL" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " @@ -252675,7 +252335,7 @@ msgstr "" "гибкого доспеха прикрывают торс, ноги и руки; может быть подогнан даже под " "самую странную анатомию." -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "брошюра курорта" @@ -252685,12 +252345,12 @@ msgstr[3] "брошюры курорта" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "Вы добавили новые метки на свою карту." #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -252701,7 +252361,7 @@ msgstr "" "курорт или удаленную хижину. Внутри яркие фотографии башни, стоящей на " "острове и домика в лесу. Прилагается карта пути до этих мест." -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "карта логова" @@ -252710,7 +252370,7 @@ msgstr[2] "карт логова" msgstr[3] "карты логова" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." @@ -252718,7 +252378,7 @@ msgstr "" "Потертая карта. На ней нарисованы фантастические твари с аккуратными метками" " в местах их обитания." -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "старая фотография" @@ -252727,7 +252387,7 @@ msgstr[2] "старых фотографий" msgstr[3] "старые фотографии" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." @@ -252735,204 +252395,7 @@ msgstr "" "Фото жизнерадостного пожилого волшебника, танцующего с вешалкой в подвале. " "На заднем фоне лежит стопка чемоданов." -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "слабое зелье маны" -msgstr[1] "слабых зелья маны" -msgstr[2] "слабых зелий маны" -msgstr[3] "слабые зелья маны" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" -"Их нельзя купить, поэтому береги их до последнего босса! И даже тогда не " -"используй!" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "зелье маны" -msgstr[1] "зелья маны" -msgstr[2] "зелий маны" -msgstr[3] "зелья маны" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "сильное зелье маны" -msgstr[1] "сильных зелья маны" -msgstr[2] "сильных зелий маны" -msgstr[3] "сильные зелья маны" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "зелье Кошачьей Грации" -msgstr[1] "зелья Кошачьей Грации" -msgstr[2] "зелий Кошачьей Грации" -msgstr[3] "зелья Кошачьей Грации" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "Зелье Кошачьей Грации. Увеличивает ловкость на 10 минут." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "зелье Силы Огра" -msgstr[1] "зелья Силы Огра" -msgstr[2] "зелий Силы Огра" -msgstr[3] "зелья Силы Огра" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "Зелье Силы Огра. Увеличивает силу на 10 минут." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "зелье Орлиного Зрения" -msgstr[1] "зелья Орлиного Зрения" -msgstr[2] "зелий Орлиного Зрения" -msgstr[3] "зелья Орлиного Зрения" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "Зелье Орлиного Зрения. Увеличивает восприятие на 10 минут." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "зелье Лисьей Хитрости" -msgstr[1] "зелья Лисьей Хитрости" -msgstr[2] "зелий Лисьей Хитрости" -msgstr[3] "зелья Лисьей Хитрости" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "Зелье Лисьей Хитрости. Увеличивает интеллект на 10 минут." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "кукла вуду зомби" -msgstr[1] "куклы вуду зомби" -msgstr[2] "кукол вуду зомби" -msgstr[3] "куклы вуду зомби" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" -"На удивление точная фигурка зомби с кусочками костей и органов. Некромантия " -"задерживает быстрое гниение, но её не хватит навечно. Если пронзить фигурку " -"прилагающейся иглой, она будет служить вам." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "костяная кукла вуду" -msgstr[1] "костяные куклы вуду" -msgstr[2] "костяных кукол вуду" -msgstr[3] "костяные куклы вуду" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" -"На удивление точная фигурка покрытого костью зомби с кусочками органов. " -"Некромантия задерживает быстрое гниение, но её не хватит навечно. Если " -"пронзить фигурку прилагающейся иглой, она будет служить вам." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "кукла вуду пумы" -msgstr[1] "куклы вуду пумы" -msgstr[2] "кукол вуду пумы" -msgstr[3] "куклы вуду пумы" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" -"На удивление точная фигурка зомби-пумы с клочками шерсти, кусочками костей и" -" органов. Некромантия задерживает быстрое гниение, но её не хватит навечно. " -"Если пронзить фигурку прилагающейся иглой, она будет служить вам." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "зелье Безумного Исцеления" -msgstr[1] "зелья Безумного Исцеления" -msgstr[2] "зелий Безумного Исцеления" -msgstr[3] "зелья Безумного Исцеления" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" -"Эта плохо пахнущая жидкость стимулирует регенерацию нежити, ускоряя ваше " -"сердце до опасных значений. Употребление этого в опасности или критическом " -"состоянии может быть смертельным." - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "зелье Улучшенного Безумного Исцеления" -msgstr[1] "зелья Улучшенного Безумного Исцеления" -msgstr[2] "зелий Улучшенного Безумного Исцеления" -msgstr[3] "зелья Улучшенного Безумного Исцеления" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" -"Эта плохо пахнущая жидкость стимулирует регенерацию нежити, ускоряя ваше " -"сердце до опасных значений. Употребление этого в опасности или критическом " -"состоянии может быть смертельным. Улучшенные методы введения уменьшают " -"нагрузку процесса." - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "Биомантская руна" @@ -252941,7 +252404,7 @@ msgstr[2] "Биомантских рун" msgstr[3] "Биомантские руны" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." @@ -252949,7 +252412,7 @@ msgstr "" "На этом магическом камешке эмблема разорванной плоти и костей. Он нужен " "Биомантам, чтобы влить магию в своё искусство." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "Техномантские руны" @@ -252958,7 +252421,7 @@ msgstr[2] "Техномантские руны" msgstr[3] "Техномантские руны" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." @@ -252966,7 +252429,7 @@ msgstr "" "На этом магическом камешке эмблема часового механизма и зубчатых колёс. Он " "нужен Техномантам, чтобы влить магию в своё искусство." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "Магическая руна" @@ -252975,7 +252438,7 @@ msgstr[2] "Магических рун" msgstr[3] "Магические руны" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." @@ -252983,7 +252446,7 @@ msgstr "" "На этом магическом камешке эмблема кристалла и сфер маны. Он нужен магам, " "чтобы влить магию в своё искусство." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "Земная руна" @@ -252992,7 +252455,7 @@ msgstr[2] "Земных рун" msgstr[3] "Земная руна" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." @@ -253000,7 +252463,7 @@ msgstr "" "На этом магическом камешке эмблема стали и камней. Он нужен повелителям " "земли, чтобы влить магию в своё искусство." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "Кельвинистская руна" @@ -253009,7 +252472,7 @@ msgstr[2] "Кельвинистских рун" msgstr[3] "Кельвинистская руна" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." @@ -253017,7 +252480,7 @@ msgstr "" "На этом магическом камешке эмблема льда и огня. Он нужен кельвинистам, чтобы" " влить магию в своё искусство." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "Буревая руна" @@ -253026,7 +252489,7 @@ msgstr[2] "Буревых рун" msgstr[3] "Буревые руны" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." @@ -253034,7 +252497,7 @@ msgstr "" "На этом магическом камешке эмблема молнии и грозовых туч. Он нужен " "повелителям бурь, чтобы влить магию в своё искусство." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "Друидическая руна" @@ -253043,7 +252506,7 @@ msgstr[2] "Друидических рун" msgstr[3] "Друидические руны" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." @@ -253051,7 +252514,7 @@ msgstr "" "На этом магическом камешке эмблема природы и деревьев. Он нужен друидам, " "чтобы влить магию в своё искусство." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "Анимистская руна" @@ -253060,7 +252523,7 @@ msgstr[2] "Анимистских рун" msgstr[3] "Анимистские руны" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." @@ -253068,7 +252531,7 @@ msgstr "" "На этом магическом камешке эмблема Призывателей. Он нужен анимистам, чтобы " "влить магию в своё искусство." -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "алхимическая руна" @@ -253077,7 +252540,7 @@ msgstr[2] "алхимических рун" msgstr[3] "алхимические руны" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " @@ -253087,7 +252550,164 @@ msgstr "" "отсутствие настроенности на какую-либо школу препятствует созданию более " "сложных рецептов." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "копьё Биоманта" +msgstr[1] "копья Биоманта" +msgstr[2] "копий Биоманта" +msgstr[3] "копья Биоманта" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" +"Мерзкий костяной наконечник на прочном деревянном древке. У основания " +"наконечника начертана биомантская руна." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "инструмент Техноманта" +msgstr[1] "инструмента Техноманта" +msgstr[2] "инструментов Техноманта" +msgstr[3] "инструменты Техноманта" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" +"Удобный посох с прочным разводным ключом на одном конце лома и молотком на " +"другом. На молотке выгравирована техномантская руна." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "посох мага" +msgstr[1] "посоха мага" +msgstr[2] "посохов мага" +msgstr[3] "посохи мага" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" +"Посох с вырезанными рунами и двумя стеклянными баночками, для прочности " +"закалёнными и напитанными маной и служащими как сосуды для маны. На концах " +"выгравированы руны Мага." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "фламберг Кельвиниста" +msgstr[1] "фламберга Кельвиниста" +msgstr[2] "фламбергов Кельвиниста" +msgstr[3] "фламберги Кельвиниста" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" +"Меч с волнообразным лезвием, напоминающим пламя. На рукояти выгравирована " +"руна Кельвиниста." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "топор Повелителя бурь" +msgstr[1] "топора Повелителя бурь" +msgstr[2] "топоров Повелителя бурь" +msgstr[3] "топоры Повелителя бурь" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" +"Кованый медный топор с серебряной окантовкой и деревянным топорищем. Возле " +"проушины выгравирована руна Повелителя бурь." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "атам Анимиста" +msgstr[1] "атама Анимиста" +msgstr[2] "атамов Анимиста" +msgstr[3] "атамы Анимиста" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" +"Стальной ритуальный нож, которым Анимисты выпускают кровь для призывающих " +"заклинаний. На гарде выгравирована руна их школы." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "пояс техноманта" +msgstr[1] "пояса техноманта" +msgstr[2] "поясов техноманта" +msgstr[3] "пояса техноманта" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" +"Специальный кожаный пояс с инструментами, который мгновенно создаёт любой " +"инструмент, который вам нужен. Активируйте, чтобы положить/достать орудие." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "друидский составной лук" +msgstr[1] "друидских составных лука" +msgstr[2] "друидских составных луков" +msgstr[3] "друидские составные луки" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" +"Лук, сделанный из нескольких слоёв разных материалов для повышенной " +"эффективности. На кончиках выгравированы две друидские руны." + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "цестус Повелителя земли" +msgstr[1] "цестуса Повелителя земли" +msgstr[2] "цестусов Повелителя земли" +msgstr[3] "цестусы Повелителя земли" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" +"Каменная боевая перчатка с вырезанными рунами, защищающая руку и позволяющая" +" наносить мощные удары. На ладони выгравирована руна Повелителя земли." + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "яйцо совомедведя" @@ -253096,7 +252716,7 @@ msgstr[2] "яиц совомедведя" msgstr[3] "яйца совомедведя" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -253110,7 +252730,7 @@ msgstr "" "быстро вырасти из такого маленького яйца. Его можно аккуратно расколоть, " "чтобы добраться до жидкой золотистой драгоценности." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "желток яйца совомедведя" @@ -253119,11 +252739,11 @@ msgstr[2] "желтков яйца совомедведя" msgstr[3] "желтки яйца совомедведя" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "Жидкое содержимое яйца совомедведя. Хорошая закуска." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "комок шерсти" @@ -253132,13 +252752,13 @@ msgstr[2] "комков шерсти" msgstr[3] "комки шерсти" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" "Крупный мерзкий шарик звериной слюны и вылизанных волос. Не ешьте его." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "Драконье мясо" @@ -253147,7 +252767,7 @@ msgstr[2] "Драконье мясо" msgstr[3] "Драконье мясо" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" @@ -253156,7 +252776,7 @@ msgstr "" "Мясо поверженного дракона. Похоже, его нельзя готовить как обычное мясо; оно" " всё ещё сохраняет некоторые магические свойства." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "гриб крикуна" @@ -253165,12 +252785,12 @@ msgstr[2] "грибов крикуна" msgstr[3] "грибы крикуна" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "Грибы, собранные с мёртвого крикуна. Можно использовать для зелий." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "очищенное мясо" @@ -253179,7 +252799,7 @@ msgstr[2] "очищенное мясо" msgstr[3] "очищенное мясо" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." @@ -253187,7 +252807,7 @@ msgstr "" "Неотличимо от выращенной лабораторно до Катаклизма говядины. Должно бы быть " "прекрасно на вкус, но в итоге просто съедобное мясо." -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "загрязненное мясо" @@ -253196,7 +252816,7 @@ msgstr[2] "загрязненное мясо" msgstr[3] "загрязненное мясо" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " @@ -253206,7 +252826,7 @@ msgstr "" " своих друзей, но, если вы это сделаете, они не ощутят разницу некоторое " "время." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "сломанный глиняный голем" @@ -253215,7 +252835,7 @@ msgstr[2] "сломанных глиняных големов" msgstr[3] "сломанные глиняные големы" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." @@ -253223,7 +252843,7 @@ msgstr "" "Сломанный глиняный голем, похожий на произведение постмодернистского " "искусства. Можно разбить на глину." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "сломанный пластиковый голем" @@ -253232,7 +252852,7 @@ msgstr[2] "сломанных пластиковых големов" msgstr[3] "сломанные пластиковые големы" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." @@ -253241,7 +252861,7 @@ msgstr "" "таким же гигантским щенком. Вы можете разбить его на переработанные " "пластиковые кусочки." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "сломанный каменный голем" @@ -253250,7 +252870,7 @@ msgstr[2] "сломанных каменных големов" msgstr[3] "сломанные каменные големы" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." @@ -253258,7 +252878,7 @@ msgstr "" "Сломанный каменный голем, мало чем отличающийся от большого валуна. Может " "быть разбит на камень." -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "сломанный железный голем" @@ -253267,7 +252887,7 @@ msgstr[2] "сломанных железных големов" msgstr[3] "сломанные железные големы" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." @@ -253275,5402 +252895,6084 @@ msgstr "" "Сломанный железный голем со всем железом, который вам когда-либо " "понадобится. Может быть разбит на железо." -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "пояс силы +2" -msgstr[1] "пояса силы +2" -msgstr[2] "поясов силы +2" -msgstr[3] "пояса силы +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "пояс скорости" -msgstr[1] "пояса скорости" -msgstr[2] "поясов скорости" -msgstr[3] "пояса скорости" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" -msgstr[0] "малый посох мага" -msgstr[1] "малых посоха мага" -msgstr[2] "малых посохов мага" -msgstr[3] "малые посохи мага" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -"Искусно вырезанный посох, сделанный из зачарованного дерева и мифрила. Он " -"слегка светится волшебством, когда вы накладываете заклинания, но в ближнем " -"бою мало на что годится." -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" -msgstr[0] "шляпа волшебника" -msgstr[1] "шляпы волшебника" -msgstr[2] "шляп волшебника" -msgstr[3] "шляпы волшебника" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -"Синяя шляпа с острым верхом, расшитая звёздочками. Ношение ускоряет " -"восстановление маны." -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" -msgstr[0] "огнемолот" -msgstr[1] "огнемолота" -msgstr[2] "огнемолотов" -msgstr[3] "огнемолоты" - -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" -msgstr "Использовать с осторожностью! Огнеопасно! Взрывоопасно!" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "пара волшебных каменных бронерукавиц" +msgstr[1] "пары волшебных каменных бронерукавиц" +msgstr[2] "пар волшебных каменных бронерукавиц" +msgstr[3] "пары волшебных каменных бронерукавиц" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" -msgstr[0] "волшебный кожаный ремень" -msgstr[1] "волшебных кожаных ремня" -msgstr[2] "волшебных кожаных ремней" -msgstr[3] "волшебные кожаные ремни" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "Волшебное пластичное камнеподобное вещество для защиты и урона." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "пояс скорости" -msgstr[1] "пояса скорости" -msgstr[2] "поясов скорости" -msgstr[3] "пояса скорости" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" +msgstr[0] "палец-зажигалка" +msgstr[1] "пальца-зажигалки" +msgstr[2] "пальцев-зажигалок" +msgstr[3] "пальцы-зажигалки" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" -msgstr[0] "Мегингьорд" -msgstr[1] "Мегингьорда" -msgstr[2] "Мегингьордов" -msgstr[3] "Мегингьорды" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -"Мифический пояс Тора, бога грома. Ну, вроде бы он. Удваивает базовую силу " -"владельца." +"Маленький огонёк, который можно держать в руке. Вы можете что-нибудь по " +"желанию поджечь." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "малый пояс карманов" -msgstr[1] "малых пояса карманов" -msgstr[2] "малых поясов карманов" -msgstr[3] "малые пояса карманов" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" + +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -"Широкий облегающий талию пояс, покрыт множеством маленьких кармашков, " -"которые намного больше, чем выглядят. А вес их содержимого значительно " -"меньше." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "большой пояс карманов" -msgstr[1] "больших пояса карманов" -msgstr[2] "больших поясов карманов" -msgstr[3] "большие пояса карманов" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "волшебная лампа" +msgstr[1] "волшебных лампы" +msgstr[2] "волшебных ламп" +msgstr[3] "волшебные лампы" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" -msgstr[0] "пояс вооружённости" -msgstr[1] "пояса вооружённости" -msgstr[2] "поясов вооружённости" -msgstr[3] "пояса вооружённости" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "Волшебный огонёк, подсвечивающий небольшую область." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -"Широкий облегающий талию пояс, где вы в мгновение ока можете разместить " -"любое холодное или огнестрельное оружие, и, судя по всему, оно попадёт на " -"хранение куда-то ещё, пока вы не захотите его достать." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "пояс техноманта" -msgstr[1] "пояса техноманта" -msgstr[2] "поясов техноманта" -msgstr[3] "пояса техноманта" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "волшебный ночник" +msgstr[1] "волшебных ночника" +msgstr[2] "волшебных ночников" +msgstr[3] "волшебные ночники" + +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." +msgstr "Маленький волшебный огонёк, при котором можно читать." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -"Специальный кожаный пояс с инструментами, который мгновенно создаёт любой " -"инструмент, который вам нужен. Активируйте, чтобы положить/достать орудие." -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" -msgstr[0] "пояс железного кнута" -msgstr[1] "пояса железного кнута" -msgstr[2] "поясов железного кнута" -msgstr[3] "пояса железного кнута" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "большой волшебный ледяной щит" +msgstr[1] "больших волшебных ледяных щита" +msgstr[2] "больших волшебных ледяных щитов" +msgstr[3] "большие волшебные ледяные щиты" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "Лёгкий крепкий щит, целиком состоящий из волшебного льда." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "ледяные подошвы" +msgstr[1] "пары ледяных подошв" +msgstr[2] "пар ледяных подошв" +msgstr[3] "ледяные подошвы" + +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -"Вы хватаете пояс, и у вас в руках он раскрывается в гибкий металлический " -"хлыст!" +"Волшебный скользкий лёд, покрывающий ваши ступни. Позволяет быстро двигаться" +" на ровной поверхности, но на бездорожье тяжеловато." -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" +msgstr[0] "Грозовой молот" +msgstr[1] "Грозовых молота" +msgstr[2] "Грозовых молотов" +msgstr[3] "Грозовые молоты" + +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -"Плетеный, но довольно гибкий пояс, судя по всему, сделанный из метала. Вы " -"можете активировать его, чтобы превратить в хлыст и снять шкуру с ваших " -"врагов." +"Искрящийся волшебный боевой молот, наполненный силой молнии, чтобы покарать " +"ваших врагов и, конечно, разнести что-нибудь вдребезги!" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" -msgstr[0] "железный кнут" -msgstr[1] "железных кнута" -msgstr[2] "железных кнутов" -msgstr[3] "железные кнуты" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" +msgstr[0] "Грозовой кулак" +msgstr[1] "Грозовых кулака" +msgstr[2] "Грозовых кулаков" +msgstr[3] "Грозовые кулаки" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." -msgstr "Вы сворачиваете кнут в руке, и он мгновенно превращается в пояс." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." +msgstr "" +"Ваша рука окутана искрящейся волшебной молнией, вы можете наносить ею удары " +"или защищаться в ближнем бою." -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "зловещий щупальцевый хлыст" +msgstr[1] "зловещих щупальцевых хлыста" +msgstr[2] "зловещих щупальцевых хлыстов" +msgstr[3] "зловещие щупальцевые хлысты" + +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -"Длинный плетёный гибкий стальной кнут, сужающийся к острию. Легко способен " -"нарезать и покрошить кубиками всё, что попадает на вас. Он превращается " -"обратно в пояс." +"Длинное извивающееся щупальце, покрытое острыми костеподобными лезвиями и " +"шипастыми отростками." -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" -msgstr[0] "сапоги-скороходы" -msgstr[1] "сапога-скорохода" -msgstr[2] "сапогов-скороходов" -msgstr[3] "сапоги-скороходы" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "сумка из плоти" +msgstr[1] "сумки из плоти" +msgstr[2] "сумок из плоти" +msgstr[3] "сумки из плоти" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -"Прочные, но чрезвычайно удобные облегающие сапоги из потёртой кожи и стали. " -"Выглядят так, как будто ими очень долго пользовались, но, вероятно, выдержат" -" гораздо дольше. Наделяют способностью передвигаться с большой скоростью." +"Крупная сумка из крепкой плоти для ношения на спине. Множество крошечных " +"щупалец хватают и удерживают всё, что вы положите внутрь. Она движется и " +"сокращается, чтобы минимизировать стеснение." -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "сапоги спешки" -msgstr[1] "сапога спешки" -msgstr[2] "сапогов спешки" -msgstr[3] "сапоги спешки" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "жуткое костяное копьё" +msgstr[1] "жутких костяных копья" +msgstr[2] "жутких костяных копий" +msgstr[3] "жуткие костяные копья" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" -msgstr[0] "ботинки побега" -msgstr[1] "ботинка побега" -msgstr[2] "ботинок побега" -msgstr[3] "ботинки побега" +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." +msgstr "Жуткая помесь копья и алебарды, полностью состоящая из кости." -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" +msgstr[0] "Древолук" +msgstr[1] "Древолука" +msgstr[2] "Древолуков" +msgstr[3] "Древолуки" + +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -"Прочные, но чрезвычайно удобные и хорошо сидящие ботинки из потертой кожи и " -"стали, эти ботинки можно активировать один раз в день, чтобы сбежать c из " -"неприятных ситуаций, телепортируют вас на значительное расстояние в " -"случайном направлении." +"Магически созданный изукрашенный лук из прочной гибкой древесины. Когда вы " +"оттягиваете тетиву, появляется такая же магически вызванная стрела." -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" -msgstr[0] "сапоги заземления" -msgstr[1] "сапога заземления" -msgstr[2] "сапогов заземления" -msgstr[3] "сапоги заземления" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" +msgstr[0] "семя очищения " +msgstr[1] "семени очищения " +msgstr[2] "семян очищения " +msgstr[3] "семена очищения " -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "Раздавить семечко" + +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"You squeeze the seed in your palm, and it begins to turn to a fine dust." msgstr "" -"Прочные, но чрезвычайно удобные облегающие сапоги из кожи, гравированные " -"маленькими резиновыми рунами. При ношении вы невосприимчивы к урону от " -"электричества." +"Вы раздавливаете семечко в ладони, и оно постепенно превращается в мелкую " +"пыль." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" -msgstr[0] "пара стальных наручей" -msgstr[1] "пары стальных наручей" -msgstr[2] "пар стальных наручей" -msgstr[3] "пары стальных наручей" +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" +"Волшебное семечко, которое можно раздавить и высвободить очистительную пыль," +" способную очистить до 1 галлона (3.75л) воды." -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." -msgstr "Комплектная средневековая защита для рук." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" +msgstr[0] "тусклая пыль" +msgstr[1] "тусклой пыли" +msgstr[2] "тусклой пыли" +msgstr[3] "тусклая пыль" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "стальные наручи" -msgstr[1] "стальных наруча" -msgstr[2] "стальных наручей" -msgstr[3] "стальные наручи" +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "Мелкая пыль, постепенно светящаяся всё ярче." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" -msgstr[0] "наручи малой защиты" -msgstr[1] "наруча малой защиты" -msgstr[2] "наручей малой защиты" -msgstr[3] "наручи малой защиты" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "затемняющая аура" +msgstr[1] "затемняющие ауры" +msgstr[2] "затемняющих аур" +msgstr[3] "затемняющие ауры" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -"Лёгкие, но крайне прочные стальные наручи, украшенные изящным символом щита " -"и серебряными вставками, подчеркивающими замысловатый дизайн. Окружают ваше " -"тело лёгкой аурой, способной уменьшать получаемый урон." +"Полностью покрывающий вас невидимый слой магии искажает свет вокруг вашего " +"тела. Позволяет уклониться от двух дополнительных атак за ход." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" -msgstr[0] "наручи большой защиты" -msgstr[1] "наруча большой защиты" -msgstr[2] "наручей большой защиты" -msgstr[3] "наручи большой защиты" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "аура сопротивления кислоте" +msgstr[1] "ауры сопротивления кислоте" +msgstr[2] "аур сопротивления кислоте" +msgstr[3] "ауры сопротивления кислоте" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -"Лёгкие, но крайне прочные стальные наручи с золотыми вставками, " -"подчеркивающими замысловатый дизайн. Украшены изящным символом щита. " -"Окружают ваше тело сильной аурой, способной уменьшать получаемый урон." +"Полностью покрывающий вас невидимый слой магии, защищающий от кислоты." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" -msgstr[0] "малые наручи молний" -msgstr[1] "пары малых наручей молний" -msgstr[2] "пар малых наручей молний" -msgstr[3] "малые наручи молний" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "аура большого сопротивления кислоте" +msgstr[1] "ауры большого сопротивления кислоте" +msgstr[2] "аур большого сопротивления кислоте" +msgstr[3] "ауры большого сопротивления кислоте" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "ледяная броня" +msgstr[1] "ледяная броня" +msgstr[2] "ледяная броня" +msgstr[3] "ледяная броня" + +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "Тонкий слой магического льда, покрывающий все тело." + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "каменная кожа" +msgstr[1] "каменная кожа" +msgstr[2] "каменная кожа" +msgstr[3] "каменная кожа" + +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." -msgstr "" -"Лёгкие, но крайне прочные стальные наручи с серебряными вставками, " -"подчеркивающими замысловатый дизайн. Украшены множеством изящно вырезанных " -"на его поверхности электрических снарядов. Окружают ваше тело лёгкой аурой, " -"способной уменьшать получаемый урон электричеством, а также позволяют 3 раза" -" в день сотворить заклинание Разряда." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "Тонкий слой перетекающего, почти жидкого камня, покрывающий все тело." -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" -msgstr[0] "большие наручи молний" -msgstr[1] "пары больших наручей молний" -msgstr[2] "пар больших наручей молний" -msgstr[3] "большие наручи молний" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "ожог от перегрузки" +msgstr[1] "ожога от перегрузки" +msgstr[2] "ожогов от перегрузки" +msgstr[3] "ожоги от перегрузки" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "Ау, это сильно умнит! Может быть, само заживет?" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "защитная аура" +msgstr[1] "защитные ауры" +msgstr[2] "защитных аур" +msgstr[3] "защитные ауры" + +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -"Лёгкие, но крайне прочные стальные наручи с золотыми вставками, " -"подчеркивающими замысловатый дизайн. Украшены множеством изящно вырезанных " -"на его поверхности молний. Окружают ваше тело сильной аурой, способной " -"уменьшать получаемый урон электричеством, а также позволяют 3 раза в день " -"сотворить заклинание Электрического Снаряда." - -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" -msgstr[0] "глушитель «Тихий ветер»" -msgstr[1] "глушителя «Тихий ветер»" -msgstr[2] "глушителей «Тихий ветер»" -msgstr[3] "глушители «Тихий ветер»" +"Полностью покрывающий вас невидимый слой магической ауры, защищающий от " +"воздействия окружающей среды." -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." msgstr "" -"Вместо того, чтобы полностью удалять звук, дополнительное локализованное " -"заклинание в этой трубке приглушает выстрелы до безопасного для слуха " -"уровня." +"Этот деревянный меч пылает! Держать его вроде бы безопасно, но он скоро " +"сгорит." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" -msgstr[0] "лазерный целеуказатель с маной на планку" -msgstr[1] "лазерных целеуказателя с маной на планку" -msgstr[2] "лазерных целеуказателей с маной на планку" -msgstr[3] "лазерные целеуказатели с маной на планку" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" +msgstr[0] "разлагающаяся костяная дубинка" +msgstr[1] "разлагающихся костяных дубинки" +msgstr[2] "разлагающихся костяных дубинок" +msgstr[3] "разлагающиеся костяные дубинки" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -"Маленький лазер видимого глазу спектра, виден через кристалл маны, крепится " -"на RIS планку для аксессуаров оружия для ускорения и облегчения " -"прицеливания. Не имеет недостатков, кроме увеличения веса вооружения. Вы " -"можете поместить планку под ствол оружия, повернув ее." +"Пульсирующая дубинка из кости, покрытая постоянно движущейся кровью, " +"жаждущей поглотить живое." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" -msgstr[0] "подствольный лазерный целеуказатель с маной" -msgstr[1] "подствольных лазерных целеуказателя с маной" -msgstr[2] "подствольных лазерных целеуказателей с маной" -msgstr[3] "подствольные лазерные целеуказатели с маной" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." msgstr "" -"Маленький лазер видимого глазу спектра, виден через кристалл маны, который " -"крепится под ствол оружия для ускорения и облегчения прицеливания. Не имеет " -"недостатков, кроме увеличения веса вооружения. Вы можете поместить планку на" -" ствол оружия, повернув ее." -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "манаматорный прицел" -msgstr[1] "манаматорных прицела" -msgstr[2] "манаматорных прицелов" -msgstr[3] "манаматорные прицелы" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" +"Тёплая драконья кровь. Когда вы смотрите на нее, вы видите, как на её " +"поверхности появляются и исчезают движущиеся узоры, будто вы смотрите на " +"настоящий огонь." -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." msgstr "" -"Добавляет коллиматорный прицел с синей точкой из кристаллизованной маны на " -"верхнюю часть оружия, заменяя механический прицел. Увеличивает точность и " -"вес." +"Кровь, переполненная волшебной энергией. Испускает тусклый синий свет." -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" -msgstr[0] "магическая маска" -msgstr[1] "магические маски" -msgstr[2] "магических масок" -msgstr[3] "магические маски" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "Кристаллизованная мана" +msgstr[1] "Кристаллизованных маны" +msgstr[2] "Кристаллизованной маны" +msgstr[3] "Кристаллизованная мана" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." -msgstr "Обобщенная магическая маска." +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" +"Немного кристаллизованной маны. Её можно поместить в перезаряжаемые " +"кристаллы маны, но достать обратно не выйдет." -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" -msgstr[0] "маска исчезновения" -msgstr[1] "маски исчезновения" -msgstr[2] "масок исчезновения" -msgstr[3] "маски исчезновения" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" +msgstr[0] "маленький кристалл маны" +msgstr[1] "маленьких кристалла маны" +msgstr[2] "маленьких кристаллов маны" +msgstr[3] "маленькие кристаллы маны" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -"Маска без каких-либо черт лица, с отверстиями для рта и глаз. При активации " -"заставляет всех какое-то время игнорировать ваше присутствие." +"Это маленький кристалл маны, специально разработанный для прикрепления к " +"кончику волшебной палочки." -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" -msgstr[0] "маска идеального зрения" -msgstr[1] "маски идеального зрения" -msgstr[2] "масок идеального зрения" -msgstr[3] "маски идеального зрения" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" +msgstr[0] "сырая шкура совомедведя" +msgstr[1] "сырых шкуры совомедведя" +msgstr[2] "сырых шкур совомедведя" +msgstr[3] "сырые шкуры совомедведя" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -"Полумаска, закрывающая глаза с большими линзами, корректирующими и сильно " -"улучшающими зрение носящего. Выглядит определенно в стиле стимпанк." +"Аккуратно сложенная сыромятная шкура, снятая с совомедведя. На ней ещё " +"сохранился мех. Её можно обработать для хранения и дубления, или съесть, " +"если ваша ситуация настолько отчаянная." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "дубина +1" -msgstr[1] "дубины +1" -msgstr[2] "дубин +1" -msgstr[3] "дубины +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" +msgstr[0] "обработанная шкура совомедведя" +msgstr[1] "обработанных шкуры совомедведя" +msgstr[2] "обработанных шкур совомедведя" +msgstr[3] "обработанные шкуры совомедведя" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" -msgstr[0] "дубина +2" -msgstr[1] "дубины +2" -msgstr[2] "дубин +2" -msgstr[3] "дубины +2" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" +"Свернутая в рулон шкура совомедведя, зачищенная от лишних волос и мяса, " +"затем обработанная для предотвращения гниения. Её можно выдубить и " +"использовать превратить в пригодные для использования меховые шкурки." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" -msgstr[0] "посох +1" -msgstr[1] "посоха +1" -msgstr[2] "посохов +1" -msgstr[3] "посохи +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" +msgstr[0] "мех совомедведя" +msgstr[1] "меха совомедведя" +msgstr[2] "меха совомедведя" +msgstr[3] "мех совомедведя" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "посох +2" -msgstr[1] "посоха +2" -msgstr[2] "посохов +2" -msgstr[3] "посохи +2" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" +"Небольшой свёрток меха совомедведя. Может быть использован для изготовления " +"ОЧЕНЬ тёплой одежды." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" -msgstr[0] "окованный сталью посох +1" -msgstr[1] "окованных сталью посоха +1" -msgstr[2] "окованных сталью посохов +1" -msgstr[3] "окованные сталью посохи +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" +msgstr[0] "кость дракона" +msgstr[1] "кости дракона" +msgstr[2] "костей дракона" +msgstr[3] "кости дракона" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "окованный сталью посоха +2" -msgstr[1] "окованных сталью посоха +2" -msgstr[2] "окованных сталью посохов +2" -msgstr[3] "окованные сталью посохи +2" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" +"Кость дракона! Уже сами по себе эти кости служат прекрасным материалом для " +"изготовления оружия. Но что-то подсказывает, что них скрываются и другие " +"секреты." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" -msgstr[0] "длинный меч +1" -msgstr[1] "длинных меча +1" -msgstr[2] "длинных мечей +1" -msgstr[3] "длинные мечи +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "длинный меч +2" -msgstr[1] "длинных меча +2" -msgstr[2] "длинных мечей +2" -msgstr[3] "длинные мечи +2" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" -msgstr[0] "кувалда +1" -msgstr[1] "кувалды +1" -msgstr[2] "кувалд +1" -msgstr[3] "кувалды +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" +msgstr[0] "панцирь булитта" +msgstr[1] "панциря булитта" +msgstr[2] "панцирей булитта" +msgstr[3] "панцири булитта" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "кувалда +2" -msgstr[1] "кувалды +2" -msgstr[2] "кувалд +2" -msgstr[3] "кувалды +2" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" +"Большие пластины с загривка булитта всегда высоко ценились в изготовлении " +"щитов и доспехов." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "тяжёлая кувалда +1" -msgstr[1] "тяжёлых кувалды +1" -msgstr[2] "тяжёлых кувалд +1" -msgstr[3] "тяжёлые кувалды +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" +msgstr[0] "кусок демонического хитина" +msgstr[1] "куска демонического хитина" +msgstr[2] "кусков демонического хитина" +msgstr[3] "куски демонического хитина" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" -msgstr[0] "тяжёлая кувалда +2" -msgstr[1] "тяжёлых кувалды +2" -msgstr[2] "тяжёлых кувалд +2" -msgstr[3] "тяжёлые кувалды +2" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" +"Кусок панциря демонического паука. Он лёгкий, очень прочный и имеет кое-" +"какие волшебные свойства." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "боевой молот +1" -msgstr[1] "боевых молота +1" -msgstr[2] "боевых молотов +1" -msgstr[3] "боевые молоты +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" +msgstr[0] "пластина демонического хитина" +msgstr[1] "пластины демонического хитина" +msgstr[2] "пластин демонического хитина" +msgstr[3] "пластины демонического хитина" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" -msgstr[0] "боевой молот +2" -msgstr[1] "боевых молота +2" -msgstr[2] "боевых молотов +2" -msgstr[3] "боевые молоты +2" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" +"Большой кусок панциря демонического паука, тщательно вырезанный из трупа " +"взрослого чудовища. Из пластины такого размера можно изготовить доспех." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "бита +1" -msgstr[1] "биты +1" -msgstr[2] "бит +1" -msgstr[3] "биты +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" +msgstr[0] "кусок орихалка" +msgstr[1] "куска орихалка" +msgstr[2] "кусков орихалка" +msgstr[3] "куски орихалка" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "бита +2" -msgstr[1] "биты +2" -msgstr[2] "бит +2" -msgstr[3] "биты +2" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" +"Кусок необработанного орихалка. Для использования его необходимо " +"переработать в слиток." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "алюминиевая бита +1" -msgstr[1] "алюминиевых биты +1" -msgstr[2] "алюминиевых бит +1" -msgstr[3] "алюминиевые биты +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" +msgstr[0] "осколок орихалка" +msgstr[1] "осколки орихалка" +msgstr[2] "осколков орихалка" +msgstr[3] "осколки орихалка" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" -msgstr[0] "алюминиевая бита +2" -msgstr[1] "алюминиевые биты +2" -msgstr[2] "алюминиевых бит +2" -msgstr[3] "алюминиевые биты +2" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" +"Осколок орихалка, отколовшийся от большего куска. Для использования его " +"необходимо переработать в слиток." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "стальное копьё +1" -msgstr[1] "стальных копья +1" -msgstr[2] "стальных копий +1" -msgstr[3] "стальные копья +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" +msgstr[0] "слиток орихалка" +msgstr[1] "слитка орихалка" +msgstr[2] "слитков орихалка" +msgstr[3] "слитки орихалка" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" -msgstr[0] "стальное копьё +2" -msgstr[1] "стальных копья +2" -msgstr[2] "стальных копий +2" -msgstr[3] "стальные копья +2" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" +"Слиток орихалка. Размеры примерно 3х7х12 сантиметров. Готов для " +"использования в любых кузнечных задачах." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "цян +1" -msgstr[1] "цян +1" -msgstr[2] "цян +1" -msgstr[3] "цян +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" +msgstr[0] "жидкая ртуть" +msgstr[1] "жидкая ртуть" +msgstr[2] "жидкая ртуть" +msgstr[3] "жидкая ртуть" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" -msgstr[0] "цян +2" -msgstr[1] "цян +2" -msgstr[2] "цян +2" -msgstr[3] "цян +2" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" +"Обыкновенная жидкая ртуть. Известна тем, что используется в термометрах." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "алебарда +1" -msgstr[1] "алебарды +1" -msgstr[2] "алебард +1" -msgstr[3] "алебарды +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" -msgstr[0] "алебарда +2" -msgstr[1] "алебарды +2" -msgstr[2] "алебард +2" -msgstr[3] "алебарды +2" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "глефа +1" -msgstr[1] "глефы +1" -msgstr[2] "глеф +1" -msgstr[3] "глефы +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" -msgstr[0] "глефа +2" -msgstr[1] "глефы +2" -msgstr[2] "глеф +2" -msgstr[3] "глефы +2" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "нагината +1" -msgstr[1] "нагинаты +1" -msgstr[2] "нагинат +1" -msgstr[3] "нагинаты +1" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" -msgstr[0] "нагината +2" -msgstr[1] "нагинаты +2" -msgstr[2] "нагинат +2" -msgstr[3] "нагинаты +2" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "булава +1" -msgstr[1] "булавы +1" -msgstr[2] "булав +1" -msgstr[3] "булавы +1" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" -msgstr[0] "булава +2" -msgstr[1] "булавы +2" -msgstr[2] "булав +2" -msgstr[3] "булавы +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Мьёльнир" +msgstr[1] "Мьёльнира" +msgstr[2] "Мьёльниров" +msgstr[3] "Мьёльнир" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "моргенштерн +1" -msgstr[1] "моргенштерна +1" -msgstr[2] "моргенштернов +1" -msgstr[3] "моргенштерны +1" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" +"Мьёлнир, молот Тора. Ходят слухи, что одним ударом может сравнять горы с " +"землёй. Он украшен золотым и серебряным орнаментом." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" -msgstr[0] "моргенштерн +2" -msgstr[1] "моргенштерна +2" -msgstr[2] "моргенштернов +2" -msgstr[3] "моргенштерны +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "Гунгнир" +msgstr[1] "Гунгнира" +msgstr[2] "Гунгниров" +msgstr[3] "Гунгнир" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "цзянь +1" -msgstr[1] "цзянь +1" -msgstr[2] "цзянь +1" -msgstr[3] "цзянь +1" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" +"Гунгнир, копьё Одина. Говорят, что это копьё всегда безошибочно бьёт в цель," +" независимо от силы или умения его носителя. Оно украшено золотым и " +"серебряным орнаментом." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" -msgstr[0] "цзянь +2" -msgstr[1] "цзянь +2" -msgstr[2] "цзянь +2" -msgstr[3] "цзянь +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" +msgstr[0] "Грам" +msgstr[1] "Грама" +msgstr[2] "Грамов" +msgstr[3] "Грам" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "скимитар +1" -msgstr[1] "скимитара +1" -msgstr[2] "скимитаров +1" -msgstr[3] "скимитары +1" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" +"Грам, меч Сигурда. По слухам, этим мечом был убит легендарный дракон Фафнир." +" Говорят, когда-то этот меч рассёк пополам наковальню Регина. Лезвие " +"безупречно." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" -msgstr[0] "скимитар +2" -msgstr[1] "скимитара +2" -msgstr[2] "скимитаров +2" -msgstr[3] "скимитары +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "Леватейн" +msgstr[1] "Леватейн" +msgstr[2] "Леватейн" +msgstr[3] "Леватейн" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "эсток +1" -msgstr[1] "эстока +1" -msgstr[2] "эстоков +1" -msgstr[3] "эстоки +1" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" +"Леватейн, посох Локи. Говорят, что Локи сорвал его у ворот Хель. Пропитан " +"таинственной магией, магией самого бога-обманщика." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" -msgstr[0] "эсток +2" -msgstr[1] "эстока +2" -msgstr[2] "эстоков +2" -msgstr[3] "эстоки +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" +msgstr[0] "боевой нож из орихалка" +msgstr[1] "боевых ножа из орихалка" +msgstr[2] "боевых ножей из орихалка" +msgstr[3] "боевые ножи из орихалка" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "одноручный меч +1" -msgstr[1] "одноручных меча +1" -msgstr[2] "одноручных мечей +1" -msgstr[3] "одноручные мечи +1" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" +"Боевой нож, изготовленный из орихалка вместо стали. Острее и проще в " +"содержании, чем стальной. Обладает такой же плотностью, но более тонким " +"лезвием, что несколько уменьшает вес." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" -msgstr[0] "одноручный меч +2" -msgstr[1] "одноручных меча +2" -msgstr[2] "одноручных мечей +2" -msgstr[3] "одноручные мечи +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" +msgstr[0] "длинный меч из орихалка" +msgstr[1] "длинных меча из орихалка" +msgstr[2] "длинных мечей из орихалка" +msgstr[3] "длинные мечи из орихалка" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "палаш +1" -msgstr[1] "палаша +1" -msgstr[2] "палашей +1" -msgstr[3] "палаши +1" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" +"Длинный меч, изготовленный из орихалка вместо стали. Острее и проще в " +"содержании, чем стальной. Обладает такой же плотностью, но более тонким " +"лезвием, что несколько уменьшает вес." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" -msgstr[0] "палаш +2" -msgstr[1] "палаша +2" -msgstr[2] "палашей +2" -msgstr[3] "палаши +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" +msgstr[0] "орихалковый пожарный топор" +msgstr[1] "орихалковых пожарных топора" +msgstr[2] "орихалковых пожарных топоров" +msgstr[3] "орихалковые пожарные топоры" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "боевой топор +1" -msgstr[1] "боевых топора +1" -msgstr[2] "боевых топоров +1" -msgstr[3] "боевые топоры +1" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" +"Пожарный топор, изготовленный из орихалка вместо стали. Это позволяет " +"использовать его для пробивания через куда более прочные преграды, и хорошо " +"финансируемые пожарные станции предпочитали закупать именно такие." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" -msgstr[0] "боевой топор +2" -msgstr[1] "боевых топора +2" -msgstr[2] "боевых топоров +2" -msgstr[3] "боевые топоры +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "кавалерийская сабля +1" -msgstr[1] "кавалерийских сабли +1" -msgstr[2] "кавалерийских сабель +1" -msgstr[3] "кавалерийские сабли +1" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" -msgstr[0] "кавалерийская сабля +2" -msgstr[1] "кавалерийских сабли +2" -msgstr[2] "кавалерийских сабель +2" -msgstr[3] "кавалерийские сабли +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "ломик +1" -msgstr[1] "ломика +1" -msgstr[2] "ломиков +1" -msgstr[3] "ломики +1" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" -msgstr[0] "ломик +2" -msgstr[1] "ломика +2" -msgstr[2] "ломиков +2" -msgstr[3] "ломики +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "абордажная сабля +1" -msgstr[1] "абордажных сабли +1" -msgstr[2] "абордажных сабель +1" -msgstr[3] "абордажные сабли +1" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" -msgstr[0] "абордажная сабля +2" -msgstr[1] "абордажных сабли +2" -msgstr[2] "абордажных сабель +2" -msgstr[3] "абордажные сабли +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "пожарный топор +1" -msgstr[1] "пожарных топора +1" -msgstr[2] "пожарных топоров +1" -msgstr[3] "пожарные топоры +1" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" -msgstr[0] "пожарный топор +2" -msgstr[1] "пожарных топора +2" -msgstr[2] "пожарных топоров +2" -msgstr[3] "пожарные топоры +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "катана +1" -msgstr[1] "катаны +1" -msgstr[2] "катан +1" -msgstr[3] "катаны +1" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" -msgstr[0] "катана +2" -msgstr[1] "катаны +2" -msgstr[2] "катан +2" -msgstr[3] "катаны +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "боевой нож +1" -msgstr[1] "боевых ножа +1" -msgstr[2] "боевых ножей +1" -msgstr[3] "боевые ножи +1" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" -msgstr[0] "боевой нож +2" -msgstr[1] "боевых ножа +2" -msgstr[2] "боевых ножей +2" -msgstr[3] "боевые ножи +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "охотничий нож +1" -msgstr[1] "охотничьих ножа +1" -msgstr[2] "охотничьих ножей +1" -msgstr[3] "охотничьи ножи +1" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" -msgstr[0] "охотничий нож +2" -msgstr[1] "охотничьих ножа +2" -msgstr[2] "охотничьих ножей +2" -msgstr[3] "охотничьи ножи +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "нож для выживания +1" -msgstr[1] "ножа для выживания +1" -msgstr[2] "ножей для выживания +1" -msgstr[3] "ножи для выживания +1" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" -msgstr[0] "нож для выживания +2" -msgstr[1] "ножа для выживания +2" -msgstr[2] "ножей для выживания +2" -msgstr[3] "ножи для выживания +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "окопный нож +1" -msgstr[1] "окопных ножа +1" -msgstr[2] "окопных ножей +1" -msgstr[3] "окопные ножи +1" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" -msgstr[0] "окопный нож +2" -msgstr[1] "окопных ножа +2" -msgstr[2] "окопных ножей +2" -msgstr[3] "окопные ножи +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" +msgstr[0] "дубинища" +msgstr[1] "дубинищи" +msgstr[2] "дубинищей" +msgstr[3] "дубинищи" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "крис +1" -msgstr[1] "криса +1" -msgstr[2] "крисов +1" -msgstr[3] "крисы +1" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" +"Толстая дубина с большой ручкой. Несмотря на то, что она очень тяжёлая, это " +"очень эффективное оружие в руках сильного противника." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" -msgstr[0] "крис +2" -msgstr[1] "криса +2" -msgstr[2] "крисов +2" -msgstr[3] "крисы +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" +msgstr[0] "деревянный трезубец" +msgstr[1] "деревянные трезубцы" +msgstr[2] "деревянных трезубцев" +msgstr[3] "деревянные трезубцы" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "кукри +1" -msgstr[1] "кукри +1" -msgstr[2] "кукри +1" -msgstr[3] "кукри +1" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" +"Деревянное оружие ближнего боя со строенный наконечником, скованным вручную." +" Можно использовать его для колющих атак в ближнем бою или как метательное " +"оружие, а в умелых руках оно может обезоружить противника." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" -msgstr[0] "кукри +2" -msgstr[1] "кукри +2" -msgstr[2] "кукри +2" -msgstr[3] "кукри +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" +msgstr[0] "шипастый дротик" +msgstr[1] "шипастых дротика" +msgstr[2] "шипастых дротиков" +msgstr[3] "шипастые дротики" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "нодати +1" -msgstr[1] "нодати +1" -msgstr[2] "нодати +1" -msgstr[3] "нодати +1" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" +"Это оружие примерно метр длиной и заострено как стрела для большей точности." +" Наконечник джавелина покрыт опасно выглядящими колючками, которые могут " +"вызвать серьезное кровотечение." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" -msgstr[0] "нодати +2" -msgstr[1] "нодати +2" -msgstr[2] "нодати +2" -msgstr[3] "нодати +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "Оружие отладки, стреляет шипастыми дротиками." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "кирка +1" -msgstr[1] "кирки +1" -msgstr[2] "кирок +1" -msgstr[3] "кирки +1" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" +msgstr[0] "концентрированная сыворотка маны" +msgstr[1] "концентрированная сыворотка маны" +msgstr[2] "концентрированная сыворотка маны" +msgstr[3] "концентрированная сыворотка маны" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" -msgstr[0] "кирка +2" -msgstr[1] "кирки +2" -msgstr[2] "кирок +2" -msgstr[3] "кирки +2" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" +"Зелье маны высокой концентрации. Вы не уверены, какие эффекты вызовет " +"употребление…" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "пика +1" -msgstr[1] "пики +1" -msgstr[2] "пик +1" -msgstr[3] "пики +1" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" +msgstr[0] "кукла вуду зомби" +msgstr[1] "куклы вуду зомби" +msgstr[2] "кукол вуду зомби" +msgstr[3] "куклы вуду зомби" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" -msgstr[0] "пика +2" -msgstr[1] "пики +2" -msgstr[2] "пик +2" -msgstr[3] "пики +2" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"На удивление точная фигурка зомби с кусочками костей и органов. Некромантия " +"задерживает быстрое гниение, но её не хватит навечно. Если пронзить фигурку " +"прилагающейся иглой, она будет служить вам." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "рапира +1" -msgstr[1] "рапиры +1" -msgstr[2] "рапир +1" -msgstr[3] "рапиры +1" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" +msgstr[0] "костяная кукла вуду" +msgstr[1] "костяные куклы вуду" +msgstr[2] "костяных кукол вуду" +msgstr[3] "костяные куклы вуду" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" -msgstr[0] "рапира +2" -msgstr[1] "рапиры +2" -msgstr[2] "рапир +2" -msgstr[3] "рапиры +2" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" +"На удивление точная фигурка покрытого костью зомби с кусочками органов. " +"Некромантия задерживает быстрое гниение, но её не хватит навечно. Если " +"пронзить фигурку прилагающейся иглой, она будет служить вам." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "танто +1" -msgstr[1] "танто +1" -msgstr[2] "танто +1" -msgstr[3] "танто +1" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" +msgstr[0] "кукла вуду пумы" +msgstr[1] "куклы вуду пумы" +msgstr[2] "кукол вуду пумы" +msgstr[3] "куклы вуду пумы" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" -msgstr[0] "танто +2" -msgstr[1] "танто +2" -msgstr[2] "танто +2" -msgstr[3] "танто +2" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" +"На удивление точная фигурка зомби-пумы с клочками шерсти, кусочками костей и" +" органов. Некромантия задерживает быстрое гниение, но её не хватит навечно. " +"Если пронзить фигурку прилагающейся иглой, она будет служить вам." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "вакидзаси +1" -msgstr[1] "вакидзаси +1" -msgstr[2] "вакидзаси +1" -msgstr[3] "вакидзаси +1" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" +msgstr[0] "жезл огненного шара" +msgstr[1] "жезла огненного шара" +msgstr[2] "жезлов огненного шара" +msgstr[3] "жезлы огненного шара" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" -msgstr[0] "вакидзаси +2" -msgstr[1] "вакидзаси +2" -msgstr[2] "вакидзаси +2" -msgstr[3] "вакидзаси +2" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" +"Классика, этот жезл выпускает огненные шары без осечек. Но более опытный " +"Кельвинист мог бы это делать более эффективно." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "цвайхендер +1" -msgstr[1] "цвайхендера +1" -msgstr[2] "цвайхендеров +1" -msgstr[3] "цвайхендеры +1" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" +msgstr[0] "жезл волшебных снарядов" +msgstr[1] "жезла волшебных снарядов" +msgstr[2] "жезлов волшебных снарядов" +msgstr[3] "жезлы волшебных снарядов" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" -msgstr[0] "цвайхендер +2" -msgstr[1] "цвайхендера +2" -msgstr[2] "цвайхендеров +2" -msgstr[3] "цвайхендеры +2" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" +"Классика — палочка, безошибочно стреляющая волшебными ракетами. Опытный Маг " +"сумеет кастовать их эффективнее." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "хопеш +1" -msgstr[1] "хопеша +1" -msgstr[2] "хопешей +1" -msgstr[3] "хопеши +1" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" -msgstr[0] "хопеш +2" -msgstr[1] "хопеша +2" -msgstr[2] "хопешей +2" -msgstr[3] "хопеши +2" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "ксифос +1" -msgstr[1] "ксифоса +1" -msgstr[2] "ксифосов +1" -msgstr[3] "ксифосы +1" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "слабое зелье маны" +msgstr[1] "слабых зелья маны" +msgstr[2] "слабых зелий маны" +msgstr[3] "слабые зелья маны" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" -msgstr[0] "ксифос +2" -msgstr[1] "ксифоса +2" -msgstr[2] "ксифосов +2" -msgstr[3] "ксифосы +2" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" +"Их нельзя купить, поэтому береги их до последнего босса! И даже тогда не " +"используй!" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "дао +1" -msgstr[1] "дао +1" -msgstr[2] "дао +1" -msgstr[3] "дао +1" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" +msgstr[0] "зелье маны" +msgstr[1] "зелья маны" +msgstr[2] "зелий маны" +msgstr[3] "зелья маны" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" -msgstr[0] "дао +2" -msgstr[1] "дао +2" -msgstr[2] "дао +2" -msgstr[3] "дао +2" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "сильное зелье маны" +msgstr[1] "сильных зелья маны" +msgstr[2] "сильных зелий маны" +msgstr[3] "сильные зелья маны" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "люцернский молот +1" -msgstr[1] "люцернских молота +1" -msgstr[2] "люцернских молотов +1" -msgstr[3] "люцернские молоты +1" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "зелье Кошачьей Грации" +msgstr[1] "зелья Кошачьей Грации" +msgstr[2] "зелий Кошачьей Грации" +msgstr[3] "зелья Кошачьей Грации" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "люцернский молот +2" -msgstr[1] "люцернских молота +2" -msgstr[2] "люцернских молотов +2" -msgstr[3] "люцернские молоты +2" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "Зелье Кошачьей Грации. Увеличивает ловкость на 10 минут." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" -msgstr[0] "копьё Биоманта" -msgstr[1] "копья Биоманта" -msgstr[2] "копий Биоманта" -msgstr[3] "копья Биоманта" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" +msgstr[0] "зелье Силы Огра" +msgstr[1] "зелья Силы Огра" +msgstr[2] "зелий Силы Огра" +msgstr[3] "зелья Силы Огра" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" -"Мерзкий костяной наконечник на прочном деревянном древке. У основания " -"наконечника начертана биомантская руна." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "Зелье Силы Огра. Увеличивает силу на 10 минут." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" -msgstr[0] "инструмент Техноманта" -msgstr[1] "инструмента Техноманта" -msgstr[2] "инструментов Техноманта" -msgstr[3] "инструменты Техноманта" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "зелье Орлиного Зрения" +msgstr[1] "зелья Орлиного Зрения" +msgstr[2] "зелий Орлиного Зрения" +msgstr[3] "зелья Орлиного Зрения" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" -"Удобный посох с прочным разводным ключом на одном конце лома и молотком на " -"другом. На молотке выгравирована техномантская руна." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "Зелье Орлиного Зрения. Увеличивает восприятие на 10 минут." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" -msgstr[0] "посох мага" -msgstr[1] "посоха мага" -msgstr[2] "посохов мага" -msgstr[3] "посохи мага" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" +msgstr[0] "зелье Лисьей Хитрости" +msgstr[1] "зелья Лисьей Хитрости" +msgstr[2] "зелий Лисьей Хитрости" +msgstr[3] "зелья Лисьей Хитрости" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" -"Посох с вырезанными рунами и двумя стеклянными баночками, для прочности " -"закалёнными и напитанными маной и служащими как сосуды для маны. На концах " -"выгравированы руны Мага." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "Зелье Лисьей Хитрости. Увеличивает интеллект на 10 минут." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" -msgstr[0] "фламберг Кельвиниста" -msgstr[1] "фламберга Кельвиниста" -msgstr[2] "фламбергов Кельвиниста" -msgstr[3] "фламберги Кельвиниста" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" +msgstr[0] "зелье Безумного Исцеления" +msgstr[1] "зелья Безумного Исцеления" +msgstr[2] "зелий Безумного Исцеления" +msgstr[3] "зелья Безумного Исцеления" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -"Меч с волнообразным лезвием, напоминающим пламя. На рукояти выгравирована " -"руна Кельвиниста." +"Эта плохо пахнущая жидкость стимулирует регенерацию нежити, ускоряя ваше " +"сердце до опасных значений. Употребление этого в опасности или критическом " +"состоянии может быть смертельным." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" -msgstr[0] "топор Повелителя бурь" -msgstr[1] "топора Повелителя бурь" -msgstr[2] "топоров Повелителя бурь" -msgstr[3] "топоры Повелителя бурь" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "зелье Улучшенного Безумного Исцеления" +msgstr[1] "зелья Улучшенного Безумного Исцеления" +msgstr[2] "зелий Улучшенного Безумного Исцеления" +msgstr[3] "зелья Улучшенного Безумного Исцеления" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -"Кованый медный топор с серебряной окантовкой и деревянным топорищем. Возле " -"проушины выгравирована руна Повелителя бурь." +"Эта плохо пахнущая жидкость стимулирует регенерацию нежити, ускоряя ваше " +"сердце до опасных значений. Употребление этого в опасности или критическом " +"состоянии может быть смертельным. Улучшенные методы введения уменьшают " +"нагрузку процесса." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" -msgstr[0] "атам Анимиста" -msgstr[1] "атама Анимиста" -msgstr[2] "атамов Анимиста" -msgstr[3] "атамы Анимиста" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" +msgstr[0] "Чёрные Драконы: Болотные Руины" +msgstr[1] "Чёрные Драконы: Болотные Руины" +msgstr[2] "Чёрных Драконов: Болотных Руин" +msgstr[3] "Чёрные Драконы: Болотные Руины" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -"Стальной ритуальный нож, которым Анимисты выпускают кровь для призывающих " -"заклинаний. На гарде выгравирована руна их школы." +"В этой книге описываются чёрные драконы — самые злобные из драконов. Обычно " +"они живут в руинах на болотах, дышат кислотой и невосприимчивы к ней. В " +"книге также указано, как приготовить его шкуру и изготовить доспехи, " +"сохраняющие часть защиты от кислоты." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" -msgstr[0] "жезлопосох (жезл)" -msgstr[1] "жезлопосоха (жезла)" -msgstr[2] "жезлопосохов (жезлов)" -msgstr[3] "жезлопосохи (жезлы)" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "Алхимия для чайников" +msgstr[1] "Алхимии для чайников" +msgstr[2] "Алхимий для чайников" +msgstr[3] "Алхимия для чайников" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "Удлинить жезл" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" +"Книга в бумажной обложке, посвящённая искусству жидкой магии, алкоголь в " +"список не входит." -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "Вы удлинили жезлопосох, теперь это посох." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgstr[0] "Руководство по Некромантии для Душелова" +msgstr[1] "Руководства по Некромантии для Душелова" +msgstr[2] "Руководств по Некромантии для Душелова" +msgstr[3] "Руководство по Некромантии для Душелова" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -"В этом универсальном оружии используются пружины, усиленные техномансией, " -"для удержания концов посоха, когда он находятся в конфигурации жезла. " -"Активируйте, чтобы удлинить." +"Книга в мягкой обложке об искусстве привязывания душ неживых существ к " +"куклам, а также об эмуляции их исцеляющего фактора." -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" -msgstr[0] "жезлопосох (посох)" -msgstr[1] "жезлопосоха (посоха)" -msgstr[2] "жезлопосохов (посохов)" -msgstr[3] "жезлопосохи (посохи)" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" +msgstr[0] "Магитек с картинками" +msgstr[1] "Магитека с картинками" +msgstr[2] "Магитека с картинками" +msgstr[3] "Магитек с картинками" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "Укоротить посох" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" +"Книга в мягкой обложке, описывающее искусство сочетания современных " +"технологий и магии. На обороте приписка: «Каннит Индастриз не несет " +"ответственности за неисправности или несчастные случаи, причинённые " +"информацией из данной книги»." -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "Вы складываете жезлопосох." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" +msgstr[0] "«Оружие Асгарда и за его пределами»" +msgstr[1] "«Оружие Асгарда и за его пределами»" +msgstr[2] "«Оружие Асгарда и за его пределами»" +msgstr[3] "«Оружие Асгарда и за его пределами»" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -"В этом универсальном оружии используются пружины, усиленные техномансией, " -"для предотвращения складывания посоха. Активируйте, чтобы укоротить." - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" -msgstr[0] "тепловой кубик" -msgstr[1] "тепловых кубика" -msgstr[2] "тепловых кубиков" -msgstr[3] "тепловые кубики" +"Изысканная книга, написанная скандинавскими рунами. Судя по детальным " +"иллюстрациям, она содержит информацию о создании многочисленных видов " +"оружия, используемых различными богами." -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "Активировать режим факела" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" +msgstr[0] "книга «Готовим с ядом»" +msgstr[1] "книги «Готовим с ядом»" +msgstr[2] "книг «Готовим с ядом»" +msgstr[3] "книги «Готовим с ядом»" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -"Вы нажимаете кнопку факела, и из куба сверху вырывается большой столб " -"пламени, который излучает тепло, но ничего не сжигает." +"Книга в кожаном переплёте с рельефным котлом на обложке. В ней написаны " +"способы волшебного очищения пищи." -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" +msgstr[0] "«Легендарные металлы»" +msgstr[1] "книги «Легендарные металлы»" +msgstr[2] "книг «Легендарные металлы»" +msgstr[3] "книги «Легендарные металлы»" + +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -"Гладкий стальной кубик размером с кулак. Несколько кнопок по бокам " -"активируют питание куба." +"Книга с латунной обложкой. Внутри учебник по созданию магических металлов, " +"таких, как орихалк. Занудная даже для тома по алхимии." -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" -msgstr[0] "тепловой кубик (зажжён)" -msgstr[1] "тепловых кубика (зажжены)" -msgstr[2] "тепловых кубиков (зажжены)" -msgstr[3] "тепловые кубики (зажжены)" - -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "Потушить факел." - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" -"Тепловой куб включен в режиме факела, в котором он излучает тепло и яркое " -"необжигающее пламя." - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" -msgstr[0] "скелетный ключ открытия" -msgstr[1] "скелетных ключа открытия" -msgstr[2] "скелетных ключей открытия" -msgstr[3] "скелетные ключи открытия" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" +msgstr[0] "«Защита от магических созданий»" +msgstr[1] "копии «Защита от магических созданий»" +msgstr[2] "копий «Защита от магических созданий»" +msgstr[3] "копии «Защита от магических созданий»" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -"Маленький золотой скелетный ключ. Активируйте, чтобы открыть что-нибудь " -"закрытое." +"Книга в кожаной обложке с изображением щита, отбивающего струя драконьего " +"пламени. Внутри множество способ по превращению шкур и кожи монстров в " +"доспехи." -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" -msgstr[0] "вечногорящий факел" -msgstr[1] "вечногорящих факела" -msgstr[2] "вечногорящих факелов" -msgstr[3] "вечногорящие факелы" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" +msgstr[0] "«Руководство зачарователя»" +msgstr[1] "копии «Руководство зачарователя»" +msgstr[2] "копий «Руководство зачарователя»" +msgstr[3] "копии «Руководство зачарователя»" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -"Это деревянный факел с качественной гравировкой. По команде факел зажжется и" -" даст достаточно света. Он может гореть вечно." - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" -msgstr[0] "бесконечная фляга" -msgstr[1] "бесконечные фляги" -msgstr[2] "бесконечных фляг" -msgstr[3] "бесконечные фляги" - -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "Вы открываете флягу и обнаруживаете, что она полна сладчайшего виски!" +"Объёмистый учебник по теории и практике магического усиления оружия и " +"инструментов." -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "Фляга ещё не заправлена." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "свиток с заклинанием" +msgstr[1] "свитка с заклинанием" +msgstr[2] "свитков с заклинанием" +msgstr[3] "свитки с заклинанием" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" -msgstr[0] "зачарованный набор портного" -msgstr[1] "зачарованных набора портного" -msgstr[2] "зачарованныз наборов портного" -msgstr[3] "зачарованные наборы портного" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" +msgstr[0] "Свиток кристаллизации маны" +msgstr[1] "Свитка кристаллизации маны" +msgstr[2] "Свитков кристаллизации маны" +msgstr[3] "Свитки кристаллизации маны" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -"Это пластиковый набор высокого качества, в котором содержатся разные иголки," -" несколько пластиковых катушек для ниток, небольшие ножницы и даже небольшой" -" нагревательный элемент для расплавления и соединения пластиковых деталей. " -"Используйте набор для модификации ваших одежды и брони. При этом " -"используется навык шитья. Он также содержит одного волшебного паучка, " -"постоянно и медленно создающего новые нитки." +"Хороший волшебник ко всему готовится заранее! Кристаллизуйте ману наперед!" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" -msgstr[0] "ящик с паучком" -msgstr[1] "ящика с паучком" -msgstr[2] "ящиков с паучком" -msgstr[3] "ящики с паучком" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" +msgstr[0] "Свиток Темновидения" +msgstr[1] "Свитка Темновидения" +msgstr[2] "Свитков Темновидения" +msgstr[3] "Свитки Темновидения" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -"Маленькая стеклянная коробочка с паучком, который неустанно день и ночь ткет" -" шелковую нить, скапливающуюся в отделении, из которого вы можете её " -"забрать." +"У темноты нет секретов от волшебства. Измените своё зрение, чтобы видеть в " +"полной темноте!" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" -msgstr[0] "друидский составной лук" -msgstr[1] "друидских составных лука" -msgstr[2] "друидских составных луков" -msgstr[3] "друидские составные луки" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" +msgstr[0] "Свиток Невидимости" +msgstr[1] "Свитка Невидимости" +msgstr[2] "Свитков Невидимости" +msgstr[3] "Свитки Невидимости" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -"Лук, сделанный из нескольких слоёв разных материалов для повышенной " -"эффективности. На кончиках выгравированы две друидские руны." +"Свет не сможет иметь с вами дел, если вы этого не хотите. Станьте " +"невидимкой!" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" -msgstr[0] "M47A1 Техно-Медуза" -msgstr[1] "M47A1 Техно-Медузы" -msgstr[2] "M47A1 Техно-Медуз" -msgstr[3] "M47A1 Техно-Медузы" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" +msgstr[0] "Свиток Спрятанного Тела" +msgstr[1] "Свитка Спрятанного Тела" +msgstr[2] "Свитков Спрятанного Тела" +msgstr[3] "Свитки Спрятанного Тела" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -"Магически зачарованный Phillips & Rodgers M47 Medusa, многокалиберный " -"револьвер, предназначенного для выживших. В то время как Техномантия " -"повышает надежность, с меньшими патронами она не так точна, как револьверы " -"специализированного калибра из-за свободного ствола." +"Магическая аура искажает свет вокруг вашего тела, благодаря чему от " +"вражеских атак легче уворачиваться." -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" -msgstr[0] "ганблейд" -msgstr[1] "ганблейда" -msgstr[2] "ганблейдов" -msgstr[3] "ганблейды" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" +msgstr[0] "Свиток Голографической Транспозиции" +msgstr[1] "Свитка Голографической Транспозиции" +msgstr[2] "Свитков Голографической Транспозиции" +msgstr[3] "Свитки Голографической Транспозиции" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" -"Похожий на широкий меч-фалькату, этот изогнутый клинок имеет прикреплённый к" -" обуху короткоствольный помповый дробовик. Предназначен для нанесения как " -"первого, так и последнего удара." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" +msgstr[0] "Свиток Кары" +msgstr[1] "Свитка Кары" +msgstr[2] "Свитков Кары" +msgstr[3] "Свитки Кары" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" -msgstr[0] "медное магическое кольцо" -msgstr[1] "медных магических кольца" -msgstr[2] "медных магических колец" -msgstr[3] "медные магические кольца" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" +msgstr[0] "Свиток Превращения жизни" +msgstr[1] "Свитка Превращения жизни" +msgstr[2] "Свитков Превращения жизни" +msgstr[3] "Свитки Превращения жизни" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "Обобщенное медное магическое кольцо." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" +msgstr[0] "Свиток Разум выше боли" +msgstr[1] "Свитка Разум выше боли" +msgstr[2] "Свитков Разум выше боли" +msgstr[3] "Свитки Разум выше боли" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" -msgstr[0] "магическое кольцо" -msgstr[1] "магических кольца" -msgstr[2] "магических колец" -msgstr[3] "магические кольца" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" +msgstr[0] "Свиток Призыва Зомби" +msgstr[1] "Свитка Призыва Зомби" +msgstr[2] "Свитков Призыва Зомби" +msgstr[3] "Свитки Призыва Зомби" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "Обобщенное серебряное магическое кольцо." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" +msgstr[0] "Свиток Призыва Скелета" +msgstr[1] "Свитка Призыва Скелета" +msgstr[2] "Свитков Призыва Скелета" +msgstr[3] "Свитки Призыва Скелета" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "Обобщенное золотое магическое кольцо." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" +msgstr[0] "Свиток Призыва Парящего Диска" +msgstr[1] "Свитка Призыва Парящего Диска" +msgstr[2] "Свитков Призыва Парящего Диска" +msgstr[3] "Свитки Призыва Парящего Диска" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "Обобщенное платиновое магическое кольцо." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" +msgstr[0] "Свиток Вызвать прогнившего когтехвата" +msgstr[1] "Свитка Вызвать прогнившего когтехвата" +msgstr[2] "Свитков Вызвать прогнившего когтехвата" +msgstr[3] "Свитки Вызвать прогнившего когтехвата" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" -msgstr[0] "кольцо клинков" -msgstr[1] "кольца клинков" -msgstr[2] "колец клинков" -msgstr[3] "кольца клинков" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" +msgstr[0] "Свиток Исцеления лёгких ран" +msgstr[1] "Свитка Исцеления лёгких ран" +msgstr[2] "Свитков Исцеления лёгких ран" +msgstr[3] "Свитки Исцеления лёгких ран" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." -msgstr "" -"Изысканное серебряное кольцо с выгравированными кинжалами, которое при " -"активации вызывает в вашей руке почти идеальный метательный нож." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" +msgstr[0] "Свиток Разделения боли" +msgstr[1] "Свитка Разделения боли" +msgstr[2] "Свитков Разделения боли" +msgstr[3] "Свитки Разделения боли" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" -msgstr[0] "кольцо угря" -msgstr[1] "кольца угря" -msgstr[2] "колец угря" -msgstr[3] "кольца угря" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" +msgstr[0] "Свиток Зловещего Щупальца" +msgstr[1] "Свитка Зловещего Щупальца" +msgstr[2] "Свитков Зловещего Щупальца" +msgstr[3] "Свитки Зловещего Щупальца" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." -msgstr "" -"Тонкое серебряное кольцо с изображением угря. Позволяет уклоняться от " -"дополнительной атаки за ход." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" +msgstr[0] "Свиток Безобразного Улучшения" +msgstr[1] "Свитка Безобразного Улучшения" +msgstr[2] "Свитков Безобразного Улучшения" +msgstr[3] "Свитки Безобразного Улучшения" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" -msgstr[0] "кольцо двуглавого угря" -msgstr[1] "кольца двуглавого угря" -msgstr[2] "колец двуглавого угря" -msgstr[3] "кольца двуглавого угря" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" +msgstr[0] "Свиток Кислотных Брызг" +msgstr[1] "Свитка Кислотных Брызг" +msgstr[2] "Свитков Кислотных Брызг" +msgstr[3] "Свитки Кислотных Брызг" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" -"Тонкое золотое кольцо с изображением двуглавого угря. Позволяет уклоняться " -"от двух дополнительных атак за ход." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" +msgstr[0] "Свиткок Сумки из Плоти" +msgstr[1] "Свитка Сумки из Плоти" +msgstr[2] "Свитков Сумки из Плоти" +msgstr[3] "Свитки Сумки из Плоти" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" -msgstr[0] "кольцо силы +1" -msgstr[1] "кольца силы +1" -msgstr[2] "кольец силы +1" -msgstr[3] "кольца силы +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" +msgstr[0] "Свиток Призыва Костяного Копья" +msgstr[1] "Свитка Призыва Костяного Копья" +msgstr[2] "Свитков Призыва Костяного Копья" +msgstr[3] "Свитки Призыва Костяного Копья" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "" -"Медное кольцо, которое делает вас немного сильнее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" +msgstr[0] "Свиток Мегавзрыва" +msgstr[1] "Свитка Мегавзрыва" +msgstr[2] "Свитков Мегавзрыва" +msgstr[3] "Свитки Мегавзрыва" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" -msgstr[0] "кольцо силы +2" -msgstr[1] "кольца силы +2" -msgstr[2] "колец силы +2" -msgstr[3] "кольца силы +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" +msgstr[0] "Свиток Магического Света" +msgstr[1] "Свитка Магического Света" +msgstr[2] "Свитков Магического Света" +msgstr[3] "Свитки Магического Света" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" -"Серебряное кольцо, которое делает вас заметно сильнее, когда вы его " -"надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" +msgstr[0] "Свиток Ослепляющей вспышки" +msgstr[1] "Свитка Ослепляющей вспышки" +msgstr[2] "Свитков Ослепляющей вспышки" +msgstr[3] "Свитки Ослепляющей вспышки" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" -msgstr[0] "кольцо силы +3" -msgstr[1] "кольца силы +3" -msgstr[2] "колец силы +3" -msgstr[3] "кольца силы +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" +msgstr[0] "Свиток Эфирной Хватки" +msgstr[1] "Свитка Эфирной Хватки" +msgstr[2] "Свитков Эфирной Хватки" +msgstr[3] "Свитки Эфирной Хватки" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" -"Золотое кольцо, которое делает вас удивительно сильнее, когда вы его " -"надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" +msgstr[0] "Cвиток Защитной ауры" +msgstr[1] "Cвитка Защитной ауры" +msgstr[2] "Cвитков Защитной ауры" +msgstr[3] "Cвитки Защитной ауры" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" -msgstr[0] "кольцо силы +4" -msgstr[1] "кольца силы +4" -msgstr[2] "колец силы +4" -msgstr[3] "кольца силы +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" +msgstr[0] "Свиток Растительной Хватки" +msgstr[1] "Свитка Растительной Хватки" +msgstr[2] "Свитков Растительной Хватки" +msgstr[3] "Свитки Растительной Хватки" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" -"Платиновое кольцо, которое делает вас намного сильнее, когда вы его " -"надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" +msgstr[0] "Свиток Корневого Удара" +msgstr[1] "Свитка Корневого Удара" +msgstr[2] "Свитков Корневого Удара" +msgstr[3] "Свитки Корневого Удара" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" -msgstr[0] "кольцо ловкости +1" -msgstr[1] "кольца ловкости +1" -msgstr[2] "колец ловкости +1" -msgstr[3] "кольца ловкости +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" +msgstr[0] "Свиток Древесного Копья" +msgstr[1] "Свитка Древесного Копья" +msgstr[2] "Свитков Древесного Копья" +msgstr[3] "Свитки Древесного Копья" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" -"Медное кольцо, которое делает вас чуть ловчее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" +msgstr[0] "Свиток Природного Лука" +msgstr[1] "Свитка Природного Лука" +msgstr[2] "Свитков Природного Лука" +msgstr[3] "Свитки Природного Лука" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" -msgstr[0] "кольцо ловкости +2" -msgstr[1] "кольца ловкости +2" -msgstr[2] "колец ловкости +2" -msgstr[3] "кольца ловкости +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" +msgstr[0] "Свиток Природного Транса" +msgstr[1] "Свитка Природного Транса" +msgstr[2] "Свитков Природного Транса" +msgstr[3] "Свитки Природного Транса" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "Серебряное кольцо, которое делает вас ловчее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" +msgstr[0] "Свиток Мешка Кошек" +msgstr[1] "Свитка Мешка Кошек" +msgstr[2] "Свитков Мешка Кошек" +msgstr[3] "Свитки Мешка Кошек" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" -msgstr[0] "кольцо ловкости +3" -msgstr[1] "кольца ловкости +3" -msgstr[2] "колец ловкости +3" -msgstr[3] "кольца ловкости +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "Свиток Каменного кулака" +msgstr[1] "Свитка Каменного кулака" +msgstr[2] "Свитков Каменного кулака" +msgstr[3] "Свитки Каменного кулака" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" -"Золотое кольцо, которое делает вас заметно ловчее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "Свиток Сейсмического Удара" +msgstr[1] "Свитка Сейсмического Удара" +msgstr[2] "Свитков Сейсмического Удара" +msgstr[3] "Свитки Сейсмического Удара" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" -msgstr[0] "кольцо ловкости +4" -msgstr[1] "кольца ловкости +4" -msgstr[2] "колец ловкости +4" -msgstr[3] "кольца ловкости +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" +msgstr[0] "Свиток Крепкости Камня" +msgstr[1] "Свитка Крепкости Камня" +msgstr[2] "Свитков Крепкости Камня" +msgstr[3] "Свитки Крепкости Камня" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" -"Платиновое кольцо, которое делает вас намного ловчее, когда вы его " -"надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "Свиток Потока осколков" +msgstr[1] "Свитка Потока осколков" +msgstr[2] "Свитков Потока осколков" +msgstr[3] "Свитки Потока осколков" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" -msgstr[0] "кольцо интеллекта +1" -msgstr[1] "кольца интеллекта +1" -msgstr[2] "колец интеллекта +1" -msgstr[3] "кольца интеллекта +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "Свиток Пронзающей Иглы" +msgstr[1] "Свитка Пронзающей Иглы" +msgstr[2] "Свитков Пронзающей Иглы" +msgstr[3] "Свитки Пронзающей Иглы" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "Медное кольцо, которое делает вас чуть умнее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" +msgstr[0] "Свиток Бури осколков" +msgstr[1] "Свитка Бури осколков" +msgstr[2] "Свитков Бури осколков" +msgstr[3] "Свитки Бури осколков" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" -msgstr[0] "кольцо интеллекта +2" -msgstr[1] "кольца интеллекта +2" -msgstr[2] "колец интеллекта +2" -msgstr[3] "кольца интеллекта +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "Свиток Каменного удара" +msgstr[1] "Свитка Каменного удара" +msgstr[2] "Свитков Каменного удара" +msgstr[3] "Свитки Каменного удара" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "Серебряное кольцо, которое делает вас умнее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "Свиток Точечной Вспышки" +msgstr[1] "Свитка Точечной Вспышки" +msgstr[2] "Свитков Точечной Вспышки" +msgstr[3] "Свитки Точечной Вспышки" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" -msgstr[0] "кольцо интеллекта +3" -msgstr[1] "кольца интеллекта +3" -msgstr[2] "колец интеллекта +3" -msgstr[3] "кольца интеллекта +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "Свиток Пальца-Зажигалки" +msgstr[1] "Свитка Пальца-Зажигалки" +msgstr[2] "Свитков Пальца-Зажигалки" +msgstr[3] "Свитки Пальца-Зажигалки" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" -"Золотое кольцо, которое делает вас заметно умнее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "Свиток Ледяных Шипов" +msgstr[1] "Свитка Ледяных Шипов" +msgstr[2] "Свитков Ледяных Шипов" +msgstr[3] "Свитки Ледяных Шипов" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" -msgstr[0] "кольцо интеллекта +4" -msgstr[1] "кольца интеллекта +4" -msgstr[2] "колец интеллекта +4" -msgstr[3] "кольца интеллекта +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "Свиток Огненного шара" +msgstr[1] "Свитка Огненного шара" +msgstr[2] "Свитков Огненного шара" +msgstr[3] "Свитки Огненного шара" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" -"Платиновое кольцо, которое делает вас намного умнее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" +msgstr[0] "Свиток Конуса Холода" +msgstr[1] "Свитка Конуса Холода" +msgstr[2] "Свитков Конуса Холода" +msgstr[3] "Свитки Конуса Холода" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" -msgstr[0] "кольцо восприятия +1" -msgstr[1] "кольца восприятия +1" -msgstr[2] "колец восприятия +1" -msgstr[3] "кольца восприятия +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "Свиток Горящих Рук" +msgstr[1] "Свитка Горящих Рук" +msgstr[2] "Свитков Горящих Рук" +msgstr[3] "Свитки Горящих Рук" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" -"Медное кольцо, которое делает вас чуть внимательнее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "Свиток Ледяных Брызг" +msgstr[1] "Свитка Ледяных Брызг" +msgstr[2] "Свитков Ледяных Брызг" +msgstr[3] "Свитки Ледяных Брызг" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" -msgstr[0] "кольцо восприятия +2" -msgstr[1] "кольца восприятия +2" -msgstr[2] "колец восприятия +2" -msgstr[3] "кольца восприятия +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "Свиток Леденящего Касания" +msgstr[1] "Свитка Леденящего Касания" +msgstr[2] "Свитков Леденящего Касания" +msgstr[3] "Свитки Леденящего Касания" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" -"Серебряное кольцо, которое делает вас внимательнее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "Свиток Скольжения по Льду" +msgstr[1] "Свитка Скольжения по Льду" +msgstr[2] "Свитков Скольжения по Льду" +msgstr[3] "Свитки Скольжения по Льду" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" -msgstr[0] "кольцо восприятия +3" -msgstr[1] "кольца восприятия +3" -msgstr[2] "колец восприятия +3" -msgstr[3] "кольца восприятия +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "Свиток Инеевого Взрыва" +msgstr[1] "Свитка Инеевого Взрыва" +msgstr[2] "Свитков Инеевого Взрыва" +msgstr[3] "Свитки Инеевого Взрыва" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" -"Золотое кольцо, которое делает вас заметно внимательнее, когда вы его " -"надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "Свиток Ледяного Щита" +msgstr[1] "Свитка Ледяного Щита" +msgstr[2] "Свитков Ледяного Щита" +msgstr[3] "Свитки Ледяного Щита" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" -msgstr[0] "кольцо восприятия +4" -msgstr[1] "кольца восприятия +4" -msgstr[2] "колец восприятия +4" -msgstr[3] "кольца восприятия +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "Свиток Ледяной Брони" +msgstr[1] "Свитка Ледяной Брони" +msgstr[2] "Свитков Ледяной Брони" +msgstr[3] "Свитки Ледяной Брони" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" -"Платиновое кольцо, которое делает вас намного внимательнее, когда вы его " -"надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "Свиток Волшебной Ракеты" +msgstr[1] "Свитка Волшебной Ракеты" +msgstr[2] "Свитков Волшебной Ракеты" +msgstr[3] "Свитки Волшебной Ракеты" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" -msgstr[0] "кольцо скорости +3" -msgstr[1] "кольца скорости +3" -msgstr[2] "колец скорости +3" -msgstr[3] "кольца скорости +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "Свиток Двери Измерений" +msgstr[1] "Свитка Двери Измерений" +msgstr[2] "Свитков Двери Измерений" +msgstr[3] "Свитки Двери Измерений" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" -"Медное кольцо, которое делает вас немного быстрее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "Свиток Гравитационного Колодца" +msgstr[1] "Свитка Гравитационного Колодца" +msgstr[2] "Свитков Гравитационного Колодца" +msgstr[3] "Свитки Гравитационного Колодца" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" -msgstr[0] "кольцо скорости +5" -msgstr[1] "кольца скорости +5" -msgstr[2] "колец скорости +5" -msgstr[3] "кольца скорости +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "Свиток Взрыва Маны" +msgstr[1] "Свитка Взрыва Маны" +msgstr[2] "Свитков Взрыва Маны" +msgstr[3] "Свитки Взрыва Маны" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" -"Серебряное кольцо, которое делает вас быстрее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" +msgstr[0] "Свиток Удара Маны" +msgstr[1] "Свитка Удара Маны" +msgstr[2] "Свитков Удара Маны" +msgstr[3] "Свитки Удара Маны" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" -msgstr[0] "кольцо скорости +7" -msgstr[1] "кольца скорости +7" -msgstr[2] "колец скорости +7" -msgstr[3] "кольца скорости +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "Свиток Ускорения" +msgstr[1] "Свитка Ускорения" +msgstr[2] "Свитков Ускорения" +msgstr[3] "Свитки Ускорения" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" -"Золотое кольцо, которое делает вас заметно быстрее, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "Свиток Луча Маны" +msgstr[1] "Свитка Луча Маны" +msgstr[2] "Свитков Луча Маны" +msgstr[3] "Свитки Луча Маны" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" -msgstr[0] "кольцо скорости +10" -msgstr[1] "кольца скорости +10" -msgstr[2] "колец скорости +10" -msgstr[3] "кольца скорости +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" +msgstr[0] "Свиток Побега" +msgstr[1] "Свитка Побега" +msgstr[2] "Свитков Побега" +msgstr[3] "Свитки Побега" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" -"Платиновое кольцо, которое делает вас намного быстрее, когда вы его " -"надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "Свиток Кошачьей Грации" +msgstr[1] "Свитка Кошачьей Грации" +msgstr[2] "Свитков Кошачьей Грации" +msgstr[3] "Свитки Кошачьей Грации" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" -msgstr[0] "кольцо защиты +2" -msgstr[1] "кольца защиты +2" -msgstr[2] "колец защиты +2" -msgstr[3] "кольца защиты +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "Свиток Орлиного Зрения" +msgstr[1] "Свитка Орлиного Зрения" +msgstr[2] "Свитков Орлиного Зрения" +msgstr[3] "Свитки Орлиного Зрения" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" -"Медное кольцо, которое поглощает малую часть урона, когда вы его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "Свиток Силы Огра" +msgstr[1] "Свитка Силы Огра" +msgstr[2] "Свитков Силы Огра" +msgstr[3] "Свитки Силы Огра" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" -msgstr[0] "кольцо защиты +4" -msgstr[1] "кольца защиты +4" -msgstr[2] "колец защиты +4" -msgstr[3] "кольца защиты +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" +msgstr[0] "Свиток Лисьей Хитрости" +msgstr[1] "Свитка Лисьей Хитрости" +msgstr[2] "Свитков Лисьей Хитрости" +msgstr[3] "Свитки Лисьей Хитрости" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" -"Серебряное кольцо, которое которое поглощает часть урона, когда вы его " -"надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "Свиток Разряда" +msgstr[1] "Свитка Разряда" +msgstr[2] "Свитков Разряда" +msgstr[3] "Свитки Разряда" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" -msgstr[0] "кольцо защиты +6" -msgstr[1] "кольца защиты +6" -msgstr[2] "колец защиты +6" -msgstr[3] "кольца защиты +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "Свиток Удара Молнии" +msgstr[1] "Свитка Удара Молнии" +msgstr[2] "Свитков Удара Молнии" +msgstr[3] "Свитки Удара Молнии" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" -"Золотое кольцо, которое которое поглощает заметную часть урона, когда вы его" -" надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" +msgstr[0] "Свиток Удара Ветра" +msgstr[1] "Свитка Удара Ветра" +msgstr[2] "Свитков Удара Ветра" +msgstr[3] "Свитки Удара Ветра" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" -msgstr[0] "кольцо защиты +8" -msgstr[1] "кольца защиты +8" -msgstr[2] "колец защиты +8" -msgstr[3] "кольца защиты +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "Свиток Крыльев Ветра" +msgstr[1] "Свитка Крыльев Ветра" +msgstr[2] "Свитков Крыльев Ветра" +msgstr[3] "Свитки Крыльев Ветра" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" -"Платиновое кольцо, которое которое поглощает большую часть урона, когда вы " -"его надеваете." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" +msgstr[0] "Свиток Призвать Грозовой молот" +msgstr[1] "Свитка Призвать Грозовой молот" +msgstr[2] "Свитков Призвать Грозовой молот" +msgstr[3] "Свитки Призвать Грозовой молот" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" -msgstr[0] "волшебный жетон" -msgstr[1] "волшебных жетона" -msgstr[2] "волшебных жетонов" -msgstr[3] "волшебные жетоны" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "Свиток Кары" +msgstr[1] "Свитка Кары" +msgstr[2] "Свитков Кары" +msgstr[3] "Свитки Кары" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" -msgstr[0] "жетон длинного меча" -msgstr[1] "жетона длинного меча" -msgstr[2] "жетонов длинного меча" -msgstr[3] "жетоны длинного меча" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" +msgstr[0] "Свиток Святого Клинка" +msgstr[1] "Свитка Святого Клинка" +msgstr[2] "Свитков Святого Клинка" +msgstr[3] "Свитки Святого Клинка" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в блестящий новенький длинный меч!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "Свиток Духовной Брони" +msgstr[1] "Свитка Духовной Брони" +msgstr[2] "Свитков Духовной Брони" +msgstr[3] "Свитки Духовной Брони" -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " -"длинный меч." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" +msgstr[0] "Свиток Лампы" +msgstr[1] "Свитка Лампы" +msgstr[2] "Свитков Лампы" +msgstr[3] "Свитки Лампы" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" -msgstr[0] "жетон меча" -msgstr[1] "жетона меча" -msgstr[2] "жетонов меча" -msgstr[3] "жетоны меча" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "Свиток Манатричества" +msgstr[1] "Свитка Манатричества" +msgstr[2] "Свитков Манатричества" +msgstr[3] "Свитки Манатричества" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в сияющий новенький меч!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" +msgstr[0] "Свиток Электрошока" +msgstr[1] "Свитка Электрошока" +msgstr[2] "Свитков Электрошока" +msgstr[3] "Свитки Электрошока" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " -"меч." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "Свиток Малого Квантового Тоннеля" +msgstr[1] "Свитка Малого Квантового Тоннеля" +msgstr[2] "Свитков Малого Квантового Тоннеля" +msgstr[3] "Свитки Малого Квантового Тоннеля" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" -msgstr[0] "жетон палаша" -msgstr[1] "жетона палаша" -msgstr[2] "жетонов палаша" -msgstr[3] "жетоны палаша" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" +msgstr[0] "Свиток Синаптической Стимуляции" +msgstr[1] "Свитка Синаптической Стимуляции" +msgstr[2] "Свитков Синаптической Стимуляции" +msgstr[3] "Свитки Синаптической Стимуляции" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в блестящий новенький палаш!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "Свиток Лазера" +msgstr[1] "Свитка Лазера" +msgstr[2] "Свитков Лазера" +msgstr[3] "Свитки Лазера" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" +msgstr[0] "Свиток Оживлённого Клинка" +msgstr[1] "Свитка Оживлённого Клинка" +msgstr[2] "Свитков Оживлённого Клинка" +msgstr[3] "Свитки Оживлённого Клинка" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "Свиток Зеркального Образа" +msgstr[1] "Свитка Зеркального Образа" +msgstr[2] "Свитков Зеркального Образа" +msgstr[3] "Свитки Зеркального Образа" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "Свиток Заряда Молнии" +msgstr[1] "Свитка Заряда Молнии" +msgstr[2] "Свитков Заряда Молнии" +msgstr[3] "Свитки Заряда Молнии" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "Свиток Некротического Взгляда" +msgstr[1] "Свитка Некротического Взгляда" +msgstr[2] "Свитков Некротического Взгляда" +msgstr[3] "Свитки Некротического Взгляда" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" +msgstr[0] "Свиток Семян Очищения" +msgstr[1] "Свитка Семян Очищения" +msgstr[2] "Свитков Семян Очищения" +msgstr[3] "Свитки Семян Очищения" + +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " -"палаш." +"Вы призываете дар земли, способный очищать воду. На высоких уровнях " +"призывается больше семян." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" -msgstr[0] "жетон боевого топора" -msgstr[1] "жетона боевого топора" -msgstr[2] "жетонов боевого топора" -msgstr[3] "жетоны боевого топора" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" +msgstr[0] "Свиток Оптического Чихающего Луча" +msgstr[1] "Свитка Оптического Чихающего Луча" +msgstr[2] "Свитков Оптического Чихающего Луча" +msgstr[3] "Свитки Оптического Чихающего Луча" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в блестящий новенький боевой топор!" +"Вы перегружаете внутренние батареи, чтобы испустить луч примерно в " +"направлении взгляда из вашего лица." -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" +msgstr[0] "Свиток Вулканических Бомб" +msgstr[1] "Свитка Вулканических Бомб" +msgstr[2] "Свитков Вулканических Бомб" +msgstr[3] "Свитки Вулканических Бомб" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" +msgstr[0] "Свиток Сопротивления Кислоте" +msgstr[1] "Свитка Сопротивления Кислоте" +msgstr[2] "Свитков Сопротивления Кислоте" +msgstr[3] "Свитки Сопротивления Кислоте" + +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "Это заклинание создаёт невидимую ауру, защищающую вас от кислоты." + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" +msgstr[0] "Свиток Грозового Шторма" +msgstr[1] "Свитка Грозового Шторма" +msgstr[2] "Свитков Грозового Шторма" +msgstr[3] "Свитки Грозового Шторма" + +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " -"боевой топор." +"Этот свиток описывает, как можно значительно усилить широко употребимое " +"повелителями бури заклинание «Разряд молнии» за счёт большего расхода маны." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" -msgstr[0] "жетон пики" -msgstr[1] "жетона пики" -msgstr[2] "жетонов пики" -msgstr[3] "жетоны пики" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" +msgstr[0] "свиток жертвенного разрастания" +msgstr[1] "свитка жертвенного разрастания" +msgstr[2] "свитков жертвенного разрастания" +msgstr[3] "свитки жертвенного разрастания" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "свиток жертвенного лечения" +msgstr[1] "свитка жертвенного лечения" +msgstr[2] "свитков жертвенного лечения" +msgstr[3] "свитки жертвенного лечения" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" +msgstr[0] "свиток каменной кожи" +msgstr[1] "свитка каменной кожи" +msgstr[2] "свитков каменной кожи" +msgstr[3] "свитки каменной кожи" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "свиток колонны камня" +msgstr[1] "свитка колонны камня" +msgstr[2] "свитков колонны камня" +msgstr[3] "свитки колонны камня" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" +msgstr[0] "свиток парализующего дротика" +msgstr[1] "свитка парализующего дротика" +msgstr[2] "свитков парализующего дротика" +msgstr[3] "свитки парализующего дротика" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "свиток внутренней защиты" +msgstr[1] "свитка внутренней защиты" +msgstr[2] "свитков внутренней защиты" +msgstr[3] "свитки внутренней защиты" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" +msgstr[0] "свиток плетения крови" +msgstr[1] "свитка плетения крови" +msgstr[2] "свитков плетения крови" +msgstr[3] "свитки плетения крови" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "свиток ионизации" +msgstr[1] "свитка ионизации" +msgstr[2] "свитков ионизации" +msgstr[3] "свитки ионизации" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" +msgstr[0] "свиток блуждающего огонька" +msgstr[1] "свитка блуждающего огонька" +msgstr[2] "свитков блуждающего огонька" +msgstr[3] "свитки блуждающего огонька" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "свиток Стены тумана" +msgstr[1] "свитка Стены тумана" +msgstr[2] "свитков Стены тумана" +msgstr[3] "свитки Стены тумана" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в блестящую новенькую пику!" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " -"пику." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" -msgstr[0] "жетон булавы" -msgstr[1] "жетона булавы" -msgstr[2] "жетонов булавы" -msgstr[3] "жетоны булавы" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в блестящую новенькую булаву!" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " -"булаву." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" -msgstr[0] "жетон посоха" -msgstr[1] "жетона посоха" -msgstr[2] "жетонов посоха" -msgstr[3] "жетоны посоха" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в блестящий новенький посох!" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " -"посох." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" -msgstr[0] "жетон молота" -msgstr[1] "жетона молота" -msgstr[2] "жетонов молота" -msgstr[3] "жетоны молота" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в блестящий новенький молот!" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " -"молот." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" -msgstr[0] "жетон набора отвёрток" -msgstr[1] "жетона набора отвёрток" -msgstr[2] "жетонов набора отвёрток" -msgstr[3] "жетоны набора отвёрток" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в набор новеньких, с иголочки, отвёрток!" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +msgstr[0] "«Руководство техноманта по дебаггингу C:DDA »" +msgstr[1] "книги «Руководство техноманта по дебаггингу C:DDA »" +msgstr[2] "книг «Руководство техноманта по дебаггингу C:DDA »" +msgstr[3] "книги «Руководство техноманта по дебаггингу C:DDA »" + +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "static std::string description( spell sp ) const;" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" +msgstr[0] "«Руководство по магии для начинающих»" +msgstr[1] "книги «Руководство по магии для начинающих»" +msgstr[2] "книг «Руководство по магии для начинающих»" +msgstr[3] "книги «Руководство по магии для начинающих»" + +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " -"отвёртки." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" -msgstr[0] "жетон инструментов" -msgstr[1] "жетона инструментов" -msgstr[2] "жетонов инструментов" -msgstr[3] "жетоны инструментов" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" +msgstr[0] "«Руководство по походному колдовству»" +msgstr[1] "книги «Руководство по походному колдовству»" +msgstr[2] "книг «Руководство по походному колдовству»" +msgstr[3] "книги «Руководство по походному колдовству»" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в набор новеньких, с иголочки, инструментов!" +"Похоже, это волшебная версия руководства с рекомендациями, что взять с собой" +" в поход. Немного увесистая, но без сомнения полезная." -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" +msgstr[0] "«Пиромансия для еретиков»" +msgstr[1] "книги «Пиромансия для еретиков»" +msgstr[2] "книг «Пиромансия для еретиков»" +msgstr[3] "книги «Пиромансия для еретиков»" + +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " -"инструменты." +"Обугленные остатки книги, всё ещё хранящие множество способов что-нибудь " +"поджечь." -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" -msgstr[0] "жетон ломика" -msgstr[1] "жетона ломика" -msgstr[2] "жетонов ломика" -msgstr[3] "жетоны ломика" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" +msgstr[0] "«Трактат о волшебных элементах»" +msgstr[1] "книги «Трактат о волшебных элементах»" +msgstr[2] "книг «Трактат о волшебных элементах»" +msgstr[3] "книги «Трактат о волшебных элементах»" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -"Вы произносите кодовое слово, выгравированное на монете, и она быстро " -"растёт, превращаясь в блестящий новенький ломик!" +"Подробно описывает сложные диаграммы, ритуалы и жесты в разных заклинаниях." -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" +msgstr[0] "«Знакомство с божественностью»" +msgstr[1] "книги «Знакомство с божественностью»" +msgstr[2] "книг «Знакомство с божественностью»" +msgstr[3] "книги «Знакомство с божественностью»" + +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -"Большая серебряная монета, которая, при произношении слова на обороте, " -"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " -"ломик." +"По большей части это религиозный текст, но есть пара указаний насчёт " +"исцеления." -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" -msgstr[0] "бутылочный домкрат +1" -msgstr[1] "бутылочных домкрата +1" -msgstr[2] "бутылочных домкратов +1" -msgstr[3] "бутылочные домкраты +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +msgstr[0] "«Руководство паладина по современному колдовству»" +msgstr[1] "книги «Руководство паладина по современному колдовству»" +msgstr[2] "книг «Руководство паладина по современному колдовству»" +msgstr[3] "книги «Руководство паладина по современному колдовству»" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "бутылочный домкрат +2" -msgstr[1] "бутылочных домкрата +2" -msgstr[2] "бутылочных домкратов +2" -msgstr[3] "бутылочные домкраты +2" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" +"Несмотря на название, книга написана на средневековом языке. Читать её " +"тяжеловато, но вы можете разобрать большинство слов." -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" -msgstr[0] "скальпель +1" -msgstr[1] "скальпеля +1" -msgstr[2] "скальпелей +1" -msgstr[3] "скальпели +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" +msgstr[0] "«Вечная хватка зимы»" +msgstr[1] "книги «Вечная хватка зимы»" +msgstr[2] "книг «Вечная хватка зимы»" +msgstr[3] "книги «Вечная хватка зимы»" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" -msgstr[0] "скальпель +2" -msgstr[1] "скальпеля +2" -msgstr[2] "скальпелей +2" -msgstr[3] "скальпели +2" +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This slim book almost seems to be made from ice, it's cold to the touch." +msgstr "Эта тонкая книга выглядит почти как изо льда, она холодная на ощупь." -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" -msgstr[0] "нож мясника +1" -msgstr[1] "ножа мясника +1" -msgstr[2] "ножей мясника +1" -msgstr[3] "ножи мясника +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" +msgstr[0] "«Том грядущего шторма»" +msgstr[1] "книги «Том грядущего шторма»" +msgstr[2] "книг «Том грядущего шторма»" +msgstr[3] "книги «Том грядущего шторма»" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" -msgstr[0] "нож мясника +2" -msgstr[1] "ножа мясника +2" -msgstr[2] "ножей мясника +2" -msgstr[3] "ножи мясника +2" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" +"Большая книга с тиснёными молниями и штормовыми облаками, покалывает пальцы " +"при касании." -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" -msgstr[0] "мясницкий нож +1" -msgstr[1] "мясницких ножа +1" -msgstr[2] "мясницких ножей +1" -msgstr[3] "мясницкие ножи +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" +msgstr[0] "невзрачная книга заклинаний" +msgstr[1] "невзрачные книги заклинаний" +msgstr[2] "невзрачных книг заклинаний" +msgstr[3] "невзрачные книги заклинаний" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" -msgstr[0] "мясницкий нож +2" -msgstr[1] "мясницких ножа +2" -msgstr[2] "мясницких ножей +2" -msgstr[3] "мясницкие ножи +2" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" -msgstr[0] "разделочный нож +1" -msgstr[1] "разделочных ножа +1" -msgstr[2] "разделочных ножей +1" -msgstr[3] "разделочные ножи +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" +msgstr[0] "«О свете и уловках»" +msgstr[1] "книги «О свете и уловках»" +msgstr[2] "книг «О свете и уловках»" +msgstr[3] "книги «О свете и уловках»" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" -msgstr[0] "разделочный нож +2" -msgstr[1] "разделочных ножа +2" -msgstr[2] "разделочных ножей +2" -msgstr[3] "разделочные ножи +2" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." +msgstr "" +"Маленькая белая книга. Она слегка усиливает окружающий свет вокруг себя." -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" -msgstr[0] "набор для разделки +1" -msgstr[1] "набора для разделки +1" -msgstr[2] "наборов для разделки +1" -msgstr[3] "наборы для разделки +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "Книга Плоти" +msgstr[1] "Книги Плоти" +msgstr[2] "Книг Плоти" +msgstr[3] "Книги Плоти" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" -msgstr[0] "набор для разделки +2" -msgstr[1] "набора для разделки +2" -msgstr[2] "наборов для разделки +2" -msgstr[3] "наборы для разделки +2" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "Маленький томик, покрытый дублёной человеческой кожей." -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" -msgstr[0] "цестус +1" -msgstr[1] "цестус +1" -msgstr[2] "цестус +1" -msgstr[3] "цестус +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" +msgstr[0] "Книга Деревьев" +msgstr[1] "Книги Деревьев" +msgstr[2] "Книг Деревьев" +msgstr[3] "Книги Деревьев" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" -msgstr[0] "цестус +2" -msgstr[1] "цестус +2" -msgstr[2] "цестус +2" -msgstr[3] "цестус +2" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "Книга в обложке из коры." -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" -msgstr[0] "пылающий кулак" -msgstr[1] "пылающих кулаков" -msgstr[2] "пылающих кулаков" -msgstr[3] "пылающие кулаки" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "«Мана в качестве источника энергии»" +msgstr[1] "книги «Мана в качестве источника энергии»" +msgstr[2] "книг «Мана в качестве источника энергии»" +msgstr[3] "книги «Мана в качестве источника энергии»" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -"Пластина из тяжёлого металла, покрывающая кулак и увеличивающая силу удара, " -"с крепкой прокладкой под ней для защиты руки. Наложено зачарование, " -"извергающее тёмное магическое пламя, обжигающее только врагов." - -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" -msgstr[0] "пылающий кулак +1" -msgstr[1] "пылающих кулака +1" -msgstr[2] "пылающих кулаков +1" -msgstr[3] "пылающие кулаки +1" - -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "пылающий кулак +2" -msgstr[1] "пылающих кулака +2" -msgstr[2] "пылающих кулаков +2" -msgstr[3] "пылающие кулаки +2" +"Эта книга описывает заклинания, касающиеся использования маны для избавления" +" от некоторых физиологических эффектов." -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" -msgstr[0] "ударная перчатка" -msgstr[1] "ударных перчатки" -msgstr[2] "ударных перчаток" -msgstr[3] "ударные перчатки" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" +msgstr[0] "Книга Боевого мага" +msgstr[1] "Книги Боевого мага" +msgstr[2] "Книг Боевого мага" +msgstr[3] "Книги Боевого мага" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -"Большая блестящая металлическая рукавица, покрытая магическими символами, " -"которая позволяет наносить поразительно мощные удары." +"Обычная волшебно выглядящая колдовская книга, полная боевых заклинаний для " +"мага. Вам повезло!" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" -msgstr[0] "силовой цестус" -msgstr[1] "силовых цестуса" -msgstr[2] "силовых цестусов" -msgstr[3] "силовые цестусы" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "Книга Пустой Земли" +msgstr[1] "Книги Пустой Земли" +msgstr[2] "Книг Пустой Земли" +msgstr[3] "Книги Пустой Земли" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -"Металлический цестус с прикреплённым обрезом. Отсутствие ложи для поглощения" -" отдачи означает, что для стрельбы требуется некоторая сила." +"Большая пыльная колдовская книга, постоянно покрытая, хм, пылью. Она " +"содержит силу земли." -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" -msgstr[0] "цестус Повелителя земли" -msgstr[1] "цестуса Повелителя земли" -msgstr[2] "цестусов Повелителя земли" -msgstr[3] "цестусы Повелителя земли" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" +msgstr[0] "Том волшебного перемещения" +msgstr[1] "Тома волшебного перемещения" +msgstr[2] "Томов волшебного перемещения" +msgstr[3] "Тома волшебного перемещения" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -"Каменная боевая перчатка с вырезанными рунами, защищающая руку и позволяющая" -" наносить мощные удары. На ладони выгравирована руна Повелителя земли." +"Маленькая лёгкая книжица, которая существует не совсем полностью, ну где-то " +"на 97% Она содержит заклинания мага, посвящённые передвижению." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "Магическая палочка" -msgstr[1] "Магических палочки" -msgstr[2] "Магических палочек" -msgstr[3] "Магические палочки" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "Смазанный свиток" +msgstr[1] "Смазанный свиток" +msgstr[2] "Смазанный свиток" +msgstr[3] "Смазанный свиток" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" -msgstr[0] "одноразовый жезл" -msgstr[1] "одноразовых жезла" -msgstr[2] "одноразовых жезлов" -msgstr[3] "одноразовые жезлы" +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." +msgstr "" +"Похоже, кто-то изобретал новое заклинание, но пролил чашку кофе и со злости " +"скомкал бумагу. Здесь определённо содержится какая-то магия, но вы не " +"уверены, что выйдет что-то хорошее." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" -msgstr[0] "малый жезл волшебных снарядов" -msgstr[1] "малых жезла волшебных снарядов" -msgstr[2] "малых жезлов волшебных снарядов" -msgstr[3] "малые жезлы волшебных снарядов" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" +msgstr[0] "«Некрослуги для чайников»" +msgstr[1] "книги «Некрослуги для чайников»" +msgstr[2] "книг «Некрослуги для чайников»" +msgstr[3] "книги «Некрослуги для чайников»" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"призывающая заклинание при активации. Эта палочка призывает волшебную " -"ракету." +"Эта книга описывает различные пути вызова нежити, чтобы сражаться за вас. " +"Нежить появляется на короткое время и рассыпается в прах." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" -msgstr[0] "малый жезл волшебных снарядов" -msgstr[1] "малых жезла волшебных снарядов" -msgstr[2] "малых жезлов волшебных снарядов" -msgstr[3] "малые жезлы волшебных снарядов" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "«Основы техномансии»" +msgstr[1] "книги «Основы техномансии»" +msgstr[2] "книг «Основы техномансии»" +msgstr[3] "книги «Основы техномансии»" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" -msgstr[0] "большой жезл волшебного снаряда" -msgstr[1] "больших жезла волшебного снаряда" -msgstr[2] "больших жезлов волшебного снаряда" -msgstr[3] "большие жезлы волшебного снаряда" +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." +msgstr "" +"Этот толстый справочник объясняет принципы манипулирования и усиления " +"различных форм материи и энергии." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" -msgstr[0] "малый жезл огненного шара" -msgstr[1] "малых жезла огненного шара" -msgstr[2] "малых жезлов огненного шара" -msgstr[3] "малые жезлы огненного шара" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" +msgstr[0] "Руководство по техномансии для дебилов" +msgstr[1] "Руководства по техномансии для дебилов" +msgstr[2] "Руководств по техномансии для дебилов" +msgstr[3] "Руководства по техномансии для дебилов" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"призывающая заклинание при активации. Эта палочка призывает волшебную " -"ракету." +"Яркий, полный диаграмм и мультяшных рисунков справочник для изучения " +"основных заклинаний техномансии не самыми одарёнными учениками." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" -msgstr[0] "меньший жезл огненного шара" -msgstr[1] "меньших жезла огненного шара" -msgstr[2] "меньших жезлов огненного шара" -msgstr[3] "меньшие жезлы огненного шара" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "«Техномансия и электромагнитный спектр»" +msgstr[1] "книги «Техномансия и электромагнитный спектр»" +msgstr[2] "книг «Техномансия и электромагнитный спектр»" +msgstr[3] "книги «Техномансия и электромагнитный спектр»" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" -msgstr[0] "большой жезл огненного шара" -msgstr[1] "больших жезла огненного шара" -msgstr[2] "больших жезлов огненного шара" -msgstr[3] "большие жезлы огненного шара" +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "" +"Этот толстый лабораторный справочник полон информации о сочетании магии с " +"электромагнитным излучением." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" -msgstr[0] "малый жезл луча маны" -msgstr[1] "малых жезла луча маны" -msgstr[2] "малых жезлов луча маны" -msgstr[3] "малые жезлы луча маны" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +msgstr[0] "«Геопространственные системы: Ложь линейности»" +msgstr[1] "книги «Геопространственные системы: Ложь линейности»" +msgstr[2] "книг «Геопространственные системы: Ложь линейности»" +msgstr[3] "книги «Геопространственные системы: Ложь линейности»" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"призывающая заклинание при активации. Эта палочка призывает луч маны." +"Эта книга детально описывает, насколько пространство-время запутанные и " +"неевклидовые. В ней используется дюжина сменяющих друг друга разных систем " +"координат, из-за чего читать книгу непросто. Текст полон жаргонных слов, но " +"упорное изучение принесёт немного знания о порталах." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" -msgstr[0] "меньший жезл луча маны" -msgstr[1] "меньших жезла луча маны" -msgstr[2] "меньших жезлов луча маны" -msgstr[3] "меньшие жезлы луча маны" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "«Трансцендентность человеческого состояния»" +msgstr[1] "книги «Трансцендентность человеческого состояния»" +msgstr[2] "книг «Трансцендентность человеческого состояния»" +msgstr[3] "книги «Трансцендентность человеческого состояния»" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" -msgstr[0] "большой жезл луча маны" -msgstr[1] "больших жезла луча маны" -msgstr[2] "больших жезлов луча маны" -msgstr[3] "большие жезлы луча маны" +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "" +"Человек — единственное самосовершенствующееся создание. Эта книга посвящена " +"разным заклинаниям, временно повышающим некоторые чувства в надежде отыскать" +" более постоянное решение." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" -msgstr[0] "малый жезл точечной вспышки" -msgstr[1] "малых жезла точечной вспышки" -msgstr[2] "малых жезлов точечной вспышки" -msgstr[3] "малые жезлы точечной вспышки" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"призывающая заклинание при активации. Эта палочка призывает точечную " -"вспышку." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" -msgstr[0] "меньший жезл точечной вспышки" -msgstr[1] "меньших жезла точечной вспышки" -msgstr[2] "меньших жезлов точечной вспышки" -msgstr[3] "меньшие жезлы точечной вспышки" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" -msgstr[0] "большой жезл точечной вспышки" -msgstr[1] "больших жезла точечной вспышки" -msgstr[2] "больших жезлов точечной вспышки" -msgstr[3] "большие жезлы точечной вспышки" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" -msgstr[0] "малый жезл инеевого взрыва" -msgstr[1] "малых жезла инеевого взрыва" -msgstr[2] "малых жезлов инеевого взрыва" -msgstr[3] "малые жезлы инеевого взрыва" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"призывающая заклинание при активации. Эта палочка создаёт инеевый взрыв." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" -msgstr[0] "меньший жезл инеевого взрыва" -msgstr[1] "меньших жезла инеевого взрыва" -msgstr[2] "меньших жезлов инеевого взрыва" -msgstr[3] "меньшие жезлы инеевого взрыва" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "большой жезл инеевого взрыва" -msgstr[1] "больших жезла инеевого взрыва" -msgstr[2] "больших жезлов инеевого взрыва" -msgstr[3] "большие жезлы инеевого взрыва" +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" -msgstr[0] "малый жезл конуса холода" -msgstr[1] "малых жезла конуса холода" -msgstr[2] "малых жезлов конуса холода" -msgstr[3] "малые жезлы конуса холода" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" +msgstr[0] "котел очищения" +msgstr[1] "котла очищения" +msgstr[2] "котлов очищения" +msgstr[3] "котлы очищения" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"призывающая заклинание при активации. Эта палочка призывает конус холода." +"Этот котел, сделанный из хитина демона-паука, кажется, поглощает свет. Он " +"вмещает 16 литров материала и поглощает яды из него. Он может иметь другие " +"свойства, которые требуют обнаружения." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" -msgstr[0] "меньший жезл конуса холода" -msgstr[1] "меньших жезла конуса холода" -msgstr[2] "меньших жезлов конуса холода" -msgstr[3] "меньшие жезлы конуса холода" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "больший жезл конуса холода" -msgstr[1] "больших жезла конуса холода" -msgstr[2] "больших жезлов конуса холода" -msgstr[3] "большие жезлы конуса холода" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" -msgstr[0] "одноразовый малый жезл волшебного снаряда" -msgstr[1] "одноразовых малых жезла волшебного снаряда" -msgstr[2] "одноразовых малых жезлов волшебного снаряда" -msgstr[3] "одноразовые малые жезлы волшебного снаряда" - -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"создающая заклинание при активации. Эта палочка посылает магический снаряд." - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" -msgstr[0] "одноразовый малый жезл волшебного снаряда" -msgstr[1] "одноразовых малых жезла волшебного снаряда" -msgstr[2] "одноразовых малых жезлов волшебного снаряда" -msgstr[3] "одноразовые малые жезлы волшебного снаряда" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "одноразовый большой посох волшебных снарядов" -msgstr[1] "одноразовых больших посоха волшебных снарядов" -msgstr[2] "одноразовых больших посохов волшебных снарядов" -msgstr[3] "одноразовые большие посохи волшебных снарядов" +"Переносной вариант угольной кузни, магически усиленный и укреплённый хитином" +" демонического паука для переплавки магических металлов в подходящие формы." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" -msgstr[0] "одноразовый меньший жезл огненного шара" -msgstr[1] "одноразовых меньших жезла огненного шара" -msgstr[2] "одноразовых меньших жезлов огненного шара" -msgstr[3] "одноразовые меньшие жезлы огненного шара" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" +msgstr[0] "жаростойкий цемент" +msgstr[1] "жаростойкий цемент" +msgstr[2] "жаростойкий цемент" +msgstr[3] "жаростойкий цемент" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"создающая заклинание при активации. Эта палочка посылает огненный шар." - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" -msgstr[0] "одноразовый малый посох огненного шара" -msgstr[1] "одноразовых малых посоха огненного шара" -msgstr[2] "одноразовых малых посохов огненного шара" -msgstr[3] "одноразовые малые посохи огненного шара" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" -msgstr[0] "одноразовый большой посох огненного шара " -msgstr[1] "одноразовых больших посоха огненного шара " -msgstr[2] "одноразовых больших посохов огненного шара " -msgstr[3] "одноразовые большие посохи огненного шара " +"Алхимическая смесь, готовая к применению в проекте, где может потребоваться " +"вынести температуру, близкую к жару драконьего пламени." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" -msgstr[0] "одноразовый малый жезл луча маны" -msgstr[1] "одноразовых малых жезла луча маны" -msgstr[2] "одноразовых малых жезлов луча маны" -msgstr[3] "одноразовые малые жезлы луча маны" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "омеднённый браслет" +msgstr[1] "омеднённых браслета" +msgstr[2] "омеднённых браслетов" +msgstr[3] "омеднённые браслеты" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"создающая заклинание при активации. Эта палочка посылает луч маны." - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" -msgstr[0] "одноразовый малый посох луча маны" -msgstr[1] "одноразовых малых посоха луча маны" -msgstr[2] "одноразовых малых посохов луча маны" -msgstr[3] "одноразовые малые посохи луча маны" +"Браслет с выгравированными рунами. Вы ощущаете лёгкое мистическое дуновение," +" когда смотрите на него. Он пригодится для пропитывания материалов маной." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" -msgstr[0] "одноразовый большой посох луча маны" -msgstr[1] "одноразовых больших посоха луча маны" -msgstr[2] "одноразовых больших посохов луча маны" -msgstr[3] "одноразовые большие посохи луча маны" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "посеребрённый браслет" +msgstr[1] "посеребрённых браслета" +msgstr[2] "посеребрённых браслетов" +msgstr[3] "посеребрённые браслеты" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" -msgstr[0] "одноразовый малый жезл точечной вспышки" -msgstr[1] "одноразовых малых жезла точечной вспышки" -msgstr[2] "одноразовых малых жезлов точечной вспышки" -msgstr[3] "одноразовые малые жезлы точечной вспышки" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "медный венец" +msgstr[1] "медных венца" +msgstr[2] "медных венцов" +msgstr[3] "медные венцы" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"создающая заклинание при активации. Эта палочка создаёт точечную вспышку." - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" -msgstr[0] "одноразовый меньший жезл точечной вспышки" -msgstr[1] "одноразовых меньших жезла точечной вспышки" -msgstr[2] "одноразовых меньших жезлов точечной вспышки" -msgstr[3] "одноразовые меньшие жезлы точечной вспышки" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" -msgstr[0] "одноразовый большой посох точечной вспышки" -msgstr[1] "одноразовых больших посоха точечной вспышки" -msgstr[2] "одноразовых больших посоха точечной вспышки" -msgstr[3] "одноразовые большие посохи точечной вспышки" +"Деревянный обруч с медным обрамлением для ношения на голове. Когда вы его " +"надеваете и касаетесь висков, то ощущаете невероятное спокойствие." -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" -msgstr[0] "одноразовый малый жезл инеевого взрыва" -msgstr[1] "одноразовых малых жезла инеевого взрыва" -msgstr[2] "одноразовых малых жезлов инеевого взрыва" -msgstr[3] "одноразовые малые жезлы инеевого взрыва" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"создающая заклинание при активации. Эта палочка создаёт инеевый взрыв." - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" -msgstr[0] "одноразовый меньший жезл инеевого взрыва" -msgstr[1] "одноразовых меньших жезла инеевого взрыва" -msgstr[2] "одноразовых меньших жезлов инеевого взрыва" -msgstr[3] "одноразовые меньшие жезлы инеевого взрыва" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" -msgstr[0] "одноразовый большой посох инеевого взрыва" -msgstr[1] "одноразовых больших посоха инеевого взрыва" -msgstr[2] "одноразовых больших посохов инеевого взрыва" -msgstr[3] "одноразовые большие посохи инеевого взрыва" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" -msgstr[0] "одноразовый малый жезл конуса холода" -msgstr[1] "одноразовых малых жезла конуса холода" -msgstr[2] "одноразовых малых жезлов конуса холода" -msgstr[3] "одноразовые малые жезлы конуса холода" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" +msgstr[0] "малый посох мага" +msgstr[1] "малых посоха мага" +msgstr[2] "малых посохов мага" +msgstr[3] "малые посохи мага" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " -"создающая заклинание при активации. Эта палочка создаёт конус холода." - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" -msgstr[0] "одноразовый меньший жезл конуса холода" -msgstr[1] "одноразовых меньших жезла конуса холода" -msgstr[2] "одноразовых меньших жезлов конуса холода" -msgstr[3] "одноразовые меньшие жезлы конуса холода" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" -msgstr[0] "одноразовый большой посох конуса холода" -msgstr[1] "одноразовых больших посоха конуса холода" -msgstr[2] "одноразовых больших посохов конуса холода" -msgstr[3] "одноразовые большие посохи конуса холода" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" -msgstr[0] "пара волшебных каменных бронерукавиц" -msgstr[1] "пары волшебных каменных бронерукавиц" -msgstr[2] "пар волшебных каменных бронерукавиц" -msgstr[3] "пары волшебных каменных бронерукавиц" - -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "Волшебное пластичное камнеподобное вещество для защиты и урона." +"Искусно вырезанный посох, сделанный из зачарованного дерева и мифрила. Он " +"слегка светится волшебством, когда вы накладываете заклинания, но в ближнем " +"бою мало на что годится." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" -msgstr[0] "палец-зажигалка" -msgstr[1] "пальца-зажигалки" -msgstr[2] "пальцев-зажигалок" -msgstr[3] "пальцы-зажигалки" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -"Маленький огонёк, который можно держать в руке. Вы можете что-нибудь по " -"желанию поджечь." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "волшебная лампа" -msgstr[1] "волшебных лампы" -msgstr[2] "волшебных ламп" -msgstr[3] "волшебные лампы" - -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "Волшебный огонёк, подсвечивающий небольшую область." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "волшебный ночник" -msgstr[1] "волшебных ночника" -msgstr[2] "волшебных ночников" -msgstr[3] "волшебные ночники" - -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "Маленький волшебный огонёк, при котором можно читать." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" -msgstr[0] "большой волшебный ледяной щит" -msgstr[1] "больших волшебных ледяных щита" -msgstr[2] "больших волшебных ледяных щитов" -msgstr[3] "большие волшебные ледяные щиты" - -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "Лёгкий крепкий щит, целиком состоящий из волшебного льда." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" -msgstr[0] "ледяные подошвы" -msgstr[1] "пары ледяных подошв" -msgstr[2] "пар ледяных подошв" -msgstr[3] "ледяные подошвы" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "шляпа волшебника" +msgstr[1] "шляпы волшебника" +msgstr[2] "шляп волшебника" +msgstr[3] "шляпы волшебника" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -"Волшебный скользкий лёд, покрывающий ваши ступни. Позволяет быстро двигаться" -" на ровной поверхности, но на бездорожье тяжеловато." +"Синяя шляпа с острым верхом, расшитая звёздочками. Ношение ускоряет " +"восстановление маны." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" -msgstr[0] "Грозовой молот" -msgstr[1] "Грозовых молота" -msgstr[2] "Грозовых молотов" -msgstr[3] "Грозовые молоты" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" +msgstr[0] "огнемолот" +msgstr[1] "огнемолота" +msgstr[2] "огнемолотов" +msgstr[3] "огнемолоты" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" -"Искрящийся волшебный боевой молот, наполненный силой молнии, чтобы покарать " -"ваших врагов и, конечно, разнести что-нибудь вдребезги!" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "Использовать с осторожностью! Огнеопасно! Взрывоопасно!" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" -msgstr[0] "Грозовой кулак" -msgstr[1] "Грозовых кулака" -msgstr[2] "Грозовых кулаков" -msgstr[3] "Грозовые кулаки" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "волшебный кожаный ремень" +msgstr[1] "волшебных кожаных ремня" +msgstr[2] "волшебных кожаных ремней" +msgstr[3] "волшебные кожаные ремни" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" -"Ваша рука окутана искрящейся волшебной молнией, вы можете наносить ею удары " -"или защищаться в ближнем бою." +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "пояс скорости" +msgstr[1] "пояса скорости" +msgstr[2] "поясов скорости" +msgstr[3] "пояса скорости" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" -msgstr[0] "зловещий щупальцевый хлыст" -msgstr[1] "зловещих щупальцевых хлыста" -msgstr[2] "зловещих щупальцевых хлыстов" -msgstr[3] "зловещие щупальцевые хлысты" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "Мегингьорд" +msgstr[1] "Мегингьорда" +msgstr[2] "Мегингьордов" +msgstr[3] "Мегингьорды" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -"Длинное извивающееся щупальце, покрытое острыми костеподобными лезвиями и " -"шипастыми отростками." +"Мифический пояс Тора, бога грома. Ну, вроде бы он. Удваивает базовую силу " +"владельца." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" -msgstr[0] "сумка из плоти" -msgstr[1] "сумки из плоти" -msgstr[2] "сумок из плоти" -msgstr[3] "сумки из плоти" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" +msgstr[0] "малый пояс карманов" +msgstr[1] "малых пояса карманов" +msgstr[2] "малых поясов карманов" +msgstr[3] "малые пояса карманов" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -"Крупная сумка из крепкой плоти для ношения на спине. Множество крошечных " -"щупалец хватают и удерживают всё, что вы положите внутрь. Она движется и " -"сокращается, чтобы минимизировать стеснение." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" -msgstr[0] "жуткое костяное копьё" -msgstr[1] "жутких костяных копья" -msgstr[2] "жутких костяных копий" -msgstr[3] "жуткие костяные копья" +"Широкий облегающий талию пояс, покрыт множеством маленьких кармашков, " +"которые намного больше, чем выглядят. А вес их содержимого значительно " +"меньше." -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "Жуткая помесь копья и алебарды, полностью состоящая из кости." +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" +msgstr[0] "большой пояс карманов" +msgstr[1] "больших пояса карманов" +msgstr[2] "больших поясов карманов" +msgstr[3] "большие пояса карманов" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" -msgstr[0] "Древолук" -msgstr[1] "Древолука" -msgstr[2] "Древолуков" -msgstr[3] "Древолуки" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "пояс вооружённости" +msgstr[1] "пояса вооружённости" +msgstr[2] "поясов вооружённости" +msgstr[3] "пояса вооружённости" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -"Магически созданный изукрашенный лук из прочной гибкой древесины. Когда вы " -"оттягиваете тетиву, появляется такая же магически вызванная стрела." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" -msgstr[0] "семя очищения " -msgstr[1] "семени очищения " -msgstr[2] "семян очищения " -msgstr[3] "семена очищения " +"Широкий облегающий талию пояс, где вы в мгновение ока можете разместить " +"любое холодное или огнестрельное оружие, и, судя по всему, оно попадёт на " +"хранение куда-то ещё, пока вы не захотите его достать." -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "Раздавить семечко" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" +msgstr[0] "пояс железного кнута" +msgstr[1] "пояса железного кнута" +msgstr[2] "поясов железного кнута" +msgstr[3] "пояса железного кнута" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -"Вы раздавливаете семечко в ладони, и оно постепенно превращается в мелкую " -"пыль." +"Вы хватаете пояс, и у вас в руках он раскрывается в гибкий металлический " +"хлыст!" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." msgstr "" -"Волшебное семечко, которое можно раздавить и высвободить очистительную пыль," -" способную очистить до 1 галлона (3.75л) воды." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" -msgstr[0] "тусклая пыль" -msgstr[1] "тусклой пыли" -msgstr[2] "тусклой пыли" -msgstr[3] "тусклая пыль" - -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "Мелкая пыль, постепенно светящаяся всё ярче." +"Плетеный, но довольно гибкий пояс, судя по всему, сделанный из метала. Вы " +"можете активировать его, чтобы превратить в хлыст и снять шкуру с ваших " +"врагов." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" -msgstr[0] "затемняющая аура" -msgstr[1] "затемняющие ауры" -msgstr[2] "затемняющих аур" -msgstr[3] "затемняющие ауры" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" +msgstr[0] "железный кнут" +msgstr[1] "железных кнута" +msgstr[2] "железных кнутов" +msgstr[3] "железные кнуты" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" -"Полностью покрывающий вас невидимый слой магии искажает свет вокруг вашего " -"тела. Позволяет уклониться от двух дополнительных атак за ход." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" -msgstr[0] "аура сопротивления кислоте" -msgstr[1] "ауры сопротивления кислоте" -msgstr[2] "аур сопротивления кислоте" -msgstr[3] "ауры сопротивления кислоте" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "Вы сворачиваете кнут в руке, и он мгновенно превращается в пояс." -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." msgstr "" -"Полностью покрывающий вас невидимый слой магии, защищающий от кислоты." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" -msgstr[0] "аура большого сопротивления кислоте" -msgstr[1] "ауры большого сопротивления кислоте" -msgstr[2] "аур большого сопротивления кислоте" -msgstr[3] "ауры большого сопротивления кислоте" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" -msgstr[0] "ледяная броня" -msgstr[1] "ледяная броня" -msgstr[2] "ледяная броня" -msgstr[3] "ледяная броня" +"Длинный плетёный гибкий стальной кнут, сужающийся к острию. Легко способен " +"нарезать и покрошить кубиками всё, что попадает на вас. Он превращается " +"обратно в пояс." -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "Тонкий слой магического льда, покрывающий все тело." +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "пояс силы +2" +msgstr[1] "пояса силы +2" +msgstr[2] "поясов силы +2" +msgstr[3] "пояса силы +2" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" -msgstr[0] "каменная кожа" -msgstr[1] "каменная кожа" -msgstr[2] "каменная кожа" -msgstr[3] "каменная кожа" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "сапоги-скороходы" +msgstr[1] "сапога-скорохода" +msgstr[2] "сапогов-скороходов" +msgstr[3] "сапоги-скороходы" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "Тонкий слой перетекающего, почти жидкого камня, покрывающий все тело." - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" -msgstr[0] "ожог от перегрузки" -msgstr[1] "ожога от перегрузки" -msgstr[2] "ожогов от перегрузки" -msgstr[3] "ожоги от перегрузки" - -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "Ау, это сильно умнит! Может быть, само заживет?" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." +msgstr "" +"Прочные, но чрезвычайно удобные облегающие сапоги из потёртой кожи и стали. " +"Выглядят так, как будто ими очень долго пользовались, но, вероятно, выдержат" +" гораздо дольше. Наделяют способностью передвигаться с большой скоростью." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" -msgstr[0] "защитная аура" -msgstr[1] "защитные ауры" -msgstr[2] "защитных аур" -msgstr[3] "защитные ауры" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "сапоги спешки" +msgstr[1] "сапога спешки" +msgstr[2] "сапогов спешки" +msgstr[3] "сапоги спешки" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" -"Полностью покрывающий вас невидимый слой магической ауры, защищающий от " -"воздействия окружающей среды." +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "ботинки побега" +msgstr[1] "ботинка побега" +msgstr[2] "ботинок побега" +msgstr[3] "ботинки побега" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -"Этот деревянный меч пылает! Держать его вроде бы безопасно, но он скоро " -"сгорит." +"Прочные, но чрезвычайно удобные и хорошо сидящие ботинки из потертой кожи и " +"стали, эти ботинки можно активировать один раз в день, чтобы сбежать c из " +"неприятных ситуаций, телепортируют вас на значительное расстояние в " +"случайном направлении." -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" -msgstr[0] "разлагающаяся костяная дубинка" -msgstr[1] "разлагающихся костяных дубинки" -msgstr[2] "разлагающихся костяных дубинок" -msgstr[3] "разлагающиеся костяные дубинки" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "сапоги заземления" +msgstr[1] "сапога заземления" +msgstr[2] "сапогов заземления" +msgstr[3] "сапоги заземления" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -"Пульсирующая дубинка из кости, покрытая постоянно движущейся кровью, " -"жаждущей поглотить живое." +"Прочные, но чрезвычайно удобные облегающие сапоги из кожи, гравированные " +"маленькими резиновыми рунами. При ношении вы невосприимчивы к урону от " +"электричества." -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" -"Тёплая драконья кровь. Когда вы смотрите на нее, вы видите, как на её " -"поверхности появляются и исчезают движущиеся узоры, будто вы смотрите на " -"настоящий огонь." +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" +msgstr[0] "пара стальных наручей" +msgstr[1] "пары стальных наручей" +msgstr[2] "пар стальных наручей" +msgstr[3] "пары стальных наручей" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" -"Кровь существа, заражённого слизью. Маслянистая чёрная поверхность медленно " -"волнообразно движется, будто под мягким ветром." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "Комплектная средневековая защита для рук." -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" -"Кровь, переполненная волшебной энергией. Испускает тусклый синий свет." +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" +msgstr[0] "стальные наручи" +msgstr[1] "стальных наруча" +msgstr[2] "стальных наручей" +msgstr[3] "стальные наручи" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "Кристаллизованная мана" -msgstr[1] "Кристаллизованных маны" -msgstr[2] "Кристаллизованной маны" -msgstr[3] "Кристаллизованная мана" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "наручи малой защиты" +msgstr[1] "наруча малой защиты" +msgstr[2] "наручей малой защиты" +msgstr[3] "наручи малой защиты" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -"Немного кристаллизованной маны. Её можно поместить в перезаряжаемые " -"кристаллы маны, но достать обратно не выйдет." +"Лёгкие, но крайне прочные стальные наручи, украшенные изящным символом щита " +"и серебряными вставками, подчеркивающими замысловатый дизайн. Окружают ваше " +"тело лёгкой аурой, способной уменьшать получаемый урон." -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" -msgstr[0] "маленький кристалл маны" -msgstr[1] "маленьких кристалла маны" -msgstr[2] "маленьких кристаллов маны" -msgstr[3] "маленькие кристаллы маны" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" +msgstr[0] "наручи большой защиты" +msgstr[1] "наруча большой защиты" +msgstr[2] "наручей большой защиты" +msgstr[3] "наручи большой защиты" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -"Это маленький кристалл маны, специально разработанный для прикрепления к " -"кончику волшебной палочки." +"Лёгкие, но крайне прочные стальные наручи с золотыми вставками, " +"подчеркивающими замысловатый дизайн. Украшены изящным символом щита. " +"Окружают ваше тело сильной аурой, способной уменьшать получаемый урон." -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" -msgstr[0] "сырая шкура совомедведя" -msgstr[1] "сырых шкуры совомедведя" -msgstr[2] "сырых шкур совомедведя" -msgstr[3] "сырые шкуры совомедведя" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" +msgstr[0] "малые наручи молний" +msgstr[1] "пары малых наручей молний" +msgstr[2] "пар малых наручей молний" +msgstr[3] "малые наручи молний" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -"Аккуратно сложенная сыромятная шкура, снятая с совомедведя. На ней ещё " -"сохранился мех. Её можно обработать для хранения и дубления, или съесть, " -"если ваша ситуация настолько отчаянная." +"Лёгкие, но крайне прочные стальные наручи с серебряными вставками, " +"подчеркивающими замысловатый дизайн. Украшены множеством изящно вырезанных " +"на его поверхности электрических снарядов. Окружают ваше тело лёгкой аурой, " +"способной уменьшать получаемый урон электричеством, а также позволяют 3 раза" +" в день сотворить заклинание Разряда." -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" -msgstr[0] "обработанная шкура совомедведя" -msgstr[1] "обработанных шкуры совомедведя" -msgstr[2] "обработанных шкур совомедведя" -msgstr[3] "обработанные шкуры совомедведя" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" +msgstr[0] "большие наручи молний" +msgstr[1] "пары больших наручей молний" +msgstr[2] "пар больших наручей молний" +msgstr[3] "большие наручи молний" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -"Свернутая в рулон шкура совомедведя, зачищенная от лишних волос и мяса, " -"затем обработанная для предотвращения гниения. Её можно выдубить и " -"использовать превратить в пригодные для использования меховые шкурки." +"Лёгкие, но крайне прочные стальные наручи с золотыми вставками, " +"подчеркивающими замысловатый дизайн. Украшены множеством изящно вырезанных " +"на его поверхности молний. Окружают ваше тело сильной аурой, способной " +"уменьшать получаемый урон электричеством, а также позволяют 3 раза в день " +"сотворить заклинание Электрического Снаряда." -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" -msgstr[0] "мех совомедведя" -msgstr[1] "меха совомедведя" -msgstr[2] "меха совомедведя" -msgstr[3] "мех совомедведя" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" +msgstr[0] "глушитель «Тихий ветер»" +msgstr[1] "глушителя «Тихий ветер»" +msgstr[2] "глушителей «Тихий ветер»" +msgstr[3] "глушители «Тихий ветер»" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -"Небольшой свёрток меха совомедведя. Может быть использован для изготовления " -"ОЧЕНЬ тёплой одежды." +"Вместо того, чтобы полностью удалять звук, дополнительное локализованное " +"заклинание в этой трубке приглушает выстрелы до безопасного для слуха " +"уровня." -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" -msgstr[0] "кость дракона" -msgstr[1] "кости дракона" -msgstr[2] "костей дракона" -msgstr[3] "кости дракона" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" +msgstr[0] "лазерный целеуказатель с маной на планку" +msgstr[1] "лазерных целеуказателя с маной на планку" +msgstr[2] "лазерных целеуказателей с маной на планку" +msgstr[3] "лазерные целеуказатели с маной на планку" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -"Кость дракона! Уже сами по себе эти кости служат прекрасным материалом для " -"изготовления оружия. Но что-то подсказывает, что них скрываются и другие " -"секреты." +"Маленький лазер видимого глазу спектра, виден через кристалл маны, крепится " +"на RIS планку для аксессуаров оружия для ускорения и облегчения " +"прицеливания. Не имеет недостатков, кроме увеличения веса вооружения. Вы " +"можете поместить планку под ствол оружия, повернув ее." -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Мьёльнир" -msgstr[1] "Мьёльнира" -msgstr[2] "Мьёльниров" -msgstr[3] "Мьёльнир" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" +msgstr[0] "подствольный лазерный целеуказатель с маной" +msgstr[1] "подствольных лазерных целеуказателя с маной" +msgstr[2] "подствольных лазерных целеуказателей с маной" +msgstr[3] "подствольные лазерные целеуказатели с маной" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -"Мьёлнир, молот Тора. Ходят слухи, что одним ударом может сравнять горы с " -"землёй. Он украшен золотым и серебряным орнаментом." +"Маленький лазер видимого глазу спектра, виден через кристалл маны, который " +"крепится под ствол оружия для ускорения и облегчения прицеливания. Не имеет " +"недостатков, кроме увеличения веса вооружения. Вы можете поместить планку на" +" ствол оружия, повернув ее." -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "Гунгнир" -msgstr[1] "Гунгнира" -msgstr[2] "Гунгниров" -msgstr[3] "Гунгнир" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" +msgstr[0] "манаматорный прицел" +msgstr[1] "манаматорных прицела" +msgstr[2] "манаматорных прицелов" +msgstr[3] "манаматорные прицелы" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -"Гунгнир, копьё Одина. Говорят, что это копьё всегда безошибочно бьёт в цель," -" независимо от силы или умения его носителя. Оно украшено золотым и " -"серебряным орнаментом." +"Добавляет коллиматорный прицел с синей точкой из кристаллизованной маны на " +"верхнюю часть оружия, заменяя механический прицел. Увеличивает точность и " +"вес." -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" -msgstr[0] "Грам" -msgstr[1] "Грама" -msgstr[2] "Грамов" -msgstr[3] "Грам" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" +msgstr[0] "магическая маска" +msgstr[1] "магические маски" +msgstr[2] "магических масок" +msgstr[3] "магические маски" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" -"Грам, меч Сигурда. По слухам, этим мечом был убит легендарный дракон Фафнир." -" Говорят, когда-то этот меч рассёк пополам наковальню Регина. Лезвие " -"безупречно." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "Обобщенная магическая маска." -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "Леватейн" -msgstr[1] "Леватейн" -msgstr[2] "Леватейн" -msgstr[3] "Леватейн" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" +msgstr[0] "маска исчезновения" +msgstr[1] "маски исчезновения" +msgstr[2] "масок исчезновения" +msgstr[3] "маски исчезновения" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -"Леватейн, посох Локи. Говорят, что Локи сорвал его у ворот Хель. Пропитан " -"таинственной магией, магией самого бога-обманщика." +"Маска без каких-либо черт лица, с отверстиями для рта и глаз. При активации " +"заставляет всех какое-то время игнорировать ваше присутствие." -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" -msgstr[0] "боевой нож из орихалка" -msgstr[1] "боевых ножа из орихалка" -msgstr[2] "боевых ножей из орихалка" -msgstr[3] "боевые ножи из орихалка" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" +msgstr[0] "маска идеального зрения" +msgstr[1] "маски идеального зрения" +msgstr[2] "масок идеального зрения" +msgstr[3] "маски идеального зрения" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -"Боевой нож, изготовленный из орихалка вместо стали. Острее и проще в " -"содержании, чем стальной. Обладает такой же плотностью, но более тонким " -"лезвием, что несколько уменьшает вес." +"Полумаска, закрывающая глаза с большими линзами, корректирующими и сильно " +"улучшающими зрение носящего. Выглядит определенно в стиле стимпанк." -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" -msgstr[0] "длинный меч из орихалка" -msgstr[1] "длинных меча из орихалка" -msgstr[2] "длинных мечей из орихалка" -msgstr[3] "длинные мечи из орихалка" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" +msgstr[0] "дубина +1" +msgstr[1] "дубины +1" +msgstr[2] "дубин +1" +msgstr[3] "дубины +1" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" -"Длинный меч, изготовленный из орихалка вместо стали. Острее и проще в " -"содержании, чем стальной. Обладает такой же плотностью, но более тонким " -"лезвием, что несколько уменьшает вес." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "дубина +2" +msgstr[1] "дубины +2" +msgstr[2] "дубин +2" +msgstr[3] "дубины +2" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" -msgstr[0] "орихалковый пожарный топор" -msgstr[1] "орихалковых пожарных топора" -msgstr[2] "орихалковых пожарных топоров" -msgstr[3] "орихалковые пожарные топоры" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" +msgstr[0] "посох +1" +msgstr[1] "посоха +1" +msgstr[2] "посохов +1" +msgstr[3] "посохи +1" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" -"Пожарный топор, изготовленный из орихалка вместо стали. Это позволяет " -"использовать его для пробивания через куда более прочные преграды, и хорошо " -"финансируемые пожарные станции предпочитали закупать именно такие." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "посох +2" +msgstr[1] "посоха +2" +msgstr[2] "посохов +2" +msgstr[3] "посохи +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" +msgstr[0] "окованный сталью посох +1" +msgstr[1] "окованных сталью посоха +1" +msgstr[2] "окованных сталью посохов +1" +msgstr[3] "окованные сталью посохи +1" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "окованный сталью посоха +2" +msgstr[1] "окованных сталью посоха +2" +msgstr[2] "окованных сталью посохов +2" +msgstr[3] "окованные сталью посохи +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" +msgstr[0] "длинный меч +1" +msgstr[1] "длинных меча +1" +msgstr[2] "длинных мечей +1" +msgstr[3] "длинные мечи +1" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "длинный меч +2" +msgstr[1] "длинных меча +2" +msgstr[2] "длинных мечей +2" +msgstr[3] "длинные мечи +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "кувалда +1" +msgstr[1] "кувалды +1" +msgstr[2] "кувалд +1" +msgstr[3] "кувалды +1" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "кувалда +2" +msgstr[1] "кувалды +2" +msgstr[2] "кувалд +2" +msgstr[3] "кувалды +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "тяжёлая кувалда +1" +msgstr[1] "тяжёлых кувалды +1" +msgstr[2] "тяжёлых кувалд +1" +msgstr[3] "тяжёлые кувалды +1" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "тяжёлая кувалда +2" +msgstr[1] "тяжёлых кувалды +2" +msgstr[2] "тяжёлых кувалд +2" +msgstr[3] "тяжёлые кувалды +2" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" -msgstr[0] "кусок орихалка" -msgstr[1] "куска орихалка" -msgstr[2] "кусков орихалка" -msgstr[3] "куски орихалка" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "боевой молот +1" +msgstr[1] "боевых молота +1" +msgstr[2] "боевых молотов +1" +msgstr[3] "боевые молоты +1" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" -"Кусок необработанного орихалка. Для использования его необходимо " -"переработать в слиток." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "боевой молот +2" +msgstr[1] "боевых молота +2" +msgstr[2] "боевых молотов +2" +msgstr[3] "боевые молоты +2" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" -msgstr[0] "осколок орихалка" -msgstr[1] "осколки орихалка" -msgstr[2] "осколков орихалка" -msgstr[3] "осколки орихалка" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "бита +1" +msgstr[1] "биты +1" +msgstr[2] "бит +1" +msgstr[3] "биты +1" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" -"Осколок орихалка, отколовшийся от большего куска. Для использования его " -"необходимо переработать в слиток." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "бита +2" +msgstr[1] "биты +2" +msgstr[2] "бит +2" +msgstr[3] "биты +2" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" -msgstr[0] "слиток орихалка" -msgstr[1] "слитка орихалка" -msgstr[2] "слитков орихалка" -msgstr[3] "слитки орихалка" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "алюминиевая бита +1" +msgstr[1] "алюминиевых биты +1" +msgstr[2] "алюминиевых бит +1" +msgstr[3] "алюминиевые биты +1" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" -"Слиток орихалка. Размеры примерно 3х7х12 сантиметров. Готов для " -"использования в любых кузнечных задачах." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "алюминиевая бита +2" +msgstr[1] "алюминиевые биты +2" +msgstr[2] "алюминиевых бит +2" +msgstr[3] "алюминиевые биты +2" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" -msgstr[0] "жидкая ртуть" -msgstr[1] "жидкая ртуть" -msgstr[2] "жидкая ртуть" -msgstr[3] "жидкая ртуть" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "стальное копьё +1" +msgstr[1] "стальных копья +1" +msgstr[2] "стальных копий +1" +msgstr[3] "стальные копья +1" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" -"Обыкновенная жидкая ртуть. Известна тем, что используется в термометрах." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "стальное копьё +2" +msgstr[1] "стальных копья +2" +msgstr[2] "стальных копий +2" +msgstr[3] "стальные копья +2" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" -msgstr[0] "концентрированная сыворотка маны" -msgstr[1] "концентрированная сыворотка маны" -msgstr[2] "концентрированная сыворотка маны" -msgstr[3] "концентрированная сыворотка маны" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "цян +1" +msgstr[1] "цян +1" +msgstr[2] "цян +1" +msgstr[3] "цян +1" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" -"Зелье маны высокой концентрации. Вы не уверены, какие эффекты вызовет " -"употребление…" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "цян +2" +msgstr[1] "цян +2" +msgstr[2] "цян +2" +msgstr[3] "цян +2" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" -msgstr[0] "жезл огненного шара" -msgstr[1] "жезла огненного шара" -msgstr[2] "жезлов огненного шара" -msgstr[3] "жезлы огненного шара" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "алебарда +1" +msgstr[1] "алебарды +1" +msgstr[2] "алебард +1" +msgstr[3] "алебарды +1" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" -"Классика, этот жезл выпускает огненные шары без осечек. Но более опытный " -"Кельвинист мог бы это делать более эффективно." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "алебарда +2" +msgstr[1] "алебарды +2" +msgstr[2] "алебард +2" +msgstr[3] "алебарды +2" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" -msgstr[0] "жезл волшебных снарядов" -msgstr[1] "жезла волшебных снарядов" -msgstr[2] "жезлов волшебных снарядов" -msgstr[3] "жезлы волшебных снарядов" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "глефа +1" +msgstr[1] "глефы +1" +msgstr[2] "глеф +1" +msgstr[3] "глефы +1" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" -"Классика — палочка, безошибочно стреляющая волшебными ракетами. Опытный Маг " -"сумеет кастовать их эффективнее." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "глефа +2" +msgstr[1] "глефы +2" +msgstr[2] "глеф +2" +msgstr[3] "глефы +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" -msgstr[0] "Чёрные Драконы: Болотные Руины" -msgstr[1] "Чёрные Драконы: Болотные Руины" -msgstr[2] "Чёрных Драконов: Болотных Руин" -msgstr[3] "Чёрные Драконы: Болотные Руины" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "нагината +1" +msgstr[1] "нагинаты +1" +msgstr[2] "нагинат +1" +msgstr[3] "нагинаты +1" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" -"В этой книге описываются чёрные драконы — самые злобные из драконов. Обычно " -"они живут в руинах на болотах, дышат кислотой и невосприимчивы к ней. В " -"книге также указано, как приготовить его шкуру и изготовить доспехи, " -"сохраняющие часть защиты от кислоты." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "нагината +2" +msgstr[1] "нагинаты +2" +msgstr[2] "нагинат +2" +msgstr[3] "нагинаты +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" -msgstr[0] "Алхимия для чайников" -msgstr[1] "Алхимии для чайников" -msgstr[2] "Алхимий для чайников" -msgstr[3] "Алхимия для чайников" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "булава +1" +msgstr[1] "булавы +1" +msgstr[2] "булав +1" +msgstr[3] "булавы +1" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" -"Книга в бумажной обложке, посвящённая искусству жидкой магии, алкоголь в " -"список не входит." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "булава +2" +msgstr[1] "булавы +2" +msgstr[2] "булав +2" +msgstr[3] "булавы +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" -msgstr[0] "Руководство по Некромантии для Душелова" -msgstr[1] "Руководства по Некромантии для Душелова" -msgstr[2] "Руководств по Некромантии для Душелова" -msgstr[3] "Руководство по Некромантии для Душелова" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "моргенштерн +1" +msgstr[1] "моргенштерна +1" +msgstr[2] "моргенштернов +1" +msgstr[3] "моргенштерны +1" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" -"Книга в мягкой обложке об искусстве привязывания душ неживых существ к " -"куклам, а также об эмуляции их исцеляющего фактора." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "моргенштерн +2" +msgstr[1] "моргенштерна +2" +msgstr[2] "моргенштернов +2" +msgstr[3] "моргенштерны +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" -msgstr[0] "Магитек с картинками" -msgstr[1] "Магитека с картинками" -msgstr[2] "Магитека с картинками" -msgstr[3] "Магитек с картинками" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "цзянь +1" +msgstr[1] "цзянь +1" +msgstr[2] "цзянь +1" +msgstr[3] "цзянь +1" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" -"Книга в мягкой обложке, описывающее искусство сочетания современных " -"технологий и магии. На обороте приписка: «Каннит Индастриз не несет " -"ответственности за неисправности или несчастные случаи, причинённые " -"информацией из данной книги»." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "цзянь +2" +msgstr[1] "цзянь +2" +msgstr[2] "цзянь +2" +msgstr[3] "цзянь +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" -msgstr[0] "«Оружие Асгарда и за его пределами»" -msgstr[1] "«Оружие Асгарда и за его пределами»" -msgstr[2] "«Оружие Асгарда и за его пределами»" -msgstr[3] "«Оружие Асгарда и за его пределами»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "скимитар +1" +msgstr[1] "скимитара +1" +msgstr[2] "скимитаров +1" +msgstr[3] "скимитары +1" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" -"Изысканная книга, написанная скандинавскими рунами. Судя по детальным " -"иллюстрациям, она содержит информацию о создании многочисленных видов " -"оружия, используемых различными богами." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "скимитар +2" +msgstr[1] "скимитара +2" +msgstr[2] "скимитаров +2" +msgstr[3] "скимитары +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" -msgstr[0] "книга «Готовим с ядом»" -msgstr[1] "книги «Готовим с ядом»" -msgstr[2] "книг «Готовим с ядом»" -msgstr[3] "книги «Готовим с ядом»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "эсток +1" +msgstr[1] "эстока +1" +msgstr[2] "эстоков +1" +msgstr[3] "эстоки +1" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" -"Книга в кожаном переплёте с рельефным котлом на обложке. В ней написаны " -"способы волшебного очищения пищи." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "эсток +2" +msgstr[1] "эстока +2" +msgstr[2] "эстоков +2" +msgstr[3] "эстоки +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" -msgstr[0] "«Легендарные металлы»" -msgstr[1] "книги «Легендарные металлы»" -msgstr[2] "книг «Легендарные металлы»" -msgstr[3] "книги «Легендарные металлы»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "одноручный меч +1" +msgstr[1] "одноручных меча +1" +msgstr[2] "одноручных мечей +1" +msgstr[3] "одноручные мечи +1" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" -"Книга с латунной обложкой. Внутри учебник по созданию магических металлов, " -"таких, как орихалк. Занудная даже для тома по алхимии." +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "одноручный меч +2" +msgstr[1] "одноручных меча +2" +msgstr[2] "одноручных мечей +2" +msgstr[3] "одноручные мечи +2" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" -msgstr[0] "«Защита от магических созданий»" -msgstr[1] "копии «Защита от магических созданий»" -msgstr[2] "копий «Защита от магических созданий»" -msgstr[3] "копии «Защита от магических созданий»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "палаш +1" +msgstr[1] "палаша +1" +msgstr[2] "палашей +1" +msgstr[3] "палаши +1" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "палаш +2" +msgstr[1] "палаша +2" +msgstr[2] "палашей +2" +msgstr[3] "палаши +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "боевой топор +1" +msgstr[1] "боевых топора +1" +msgstr[2] "боевых топоров +1" +msgstr[3] "боевые топоры +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "боевой топор +2" +msgstr[1] "боевых топора +2" +msgstr[2] "боевых топоров +2" +msgstr[3] "боевые топоры +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "кавалерийская сабля +1" +msgstr[1] "кавалерийских сабли +1" +msgstr[2] "кавалерийских сабель +1" +msgstr[3] "кавалерийские сабли +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "кавалерийская сабля +2" +msgstr[1] "кавалерийских сабли +2" +msgstr[2] "кавалерийских сабель +2" +msgstr[3] "кавалерийские сабли +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "ломик +1" +msgstr[1] "ломика +1" +msgstr[2] "ломиков +1" +msgstr[3] "ломики +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "ломик +2" +msgstr[1] "ломика +2" +msgstr[2] "ломиков +2" +msgstr[3] "ломики +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "абордажная сабля +1" +msgstr[1] "абордажных сабли +1" +msgstr[2] "абордажных сабель +1" +msgstr[3] "абордажные сабли +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "абордажная сабля +2" +msgstr[1] "абордажных сабли +2" +msgstr[2] "абордажных сабель +2" +msgstr[3] "абордажные сабли +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "пожарный топор +1" +msgstr[1] "пожарных топора +1" +msgstr[2] "пожарных топоров +1" +msgstr[3] "пожарные топоры +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "пожарный топор +2" +msgstr[1] "пожарных топора +2" +msgstr[2] "пожарных топоров +2" +msgstr[3] "пожарные топоры +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "катана +1" +msgstr[1] "катаны +1" +msgstr[2] "катан +1" +msgstr[3] "катаны +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "катана +2" +msgstr[1] "катаны +2" +msgstr[2] "катан +2" +msgstr[3] "катаны +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "боевой нож +1" +msgstr[1] "боевых ножа +1" +msgstr[2] "боевых ножей +1" +msgstr[3] "боевые ножи +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "боевой нож +2" +msgstr[1] "боевых ножа +2" +msgstr[2] "боевых ножей +2" +msgstr[3] "боевые ножи +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "охотничий нож +1" +msgstr[1] "охотничьих ножа +1" +msgstr[2] "охотничьих ножей +1" +msgstr[3] "охотничьи ножи +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "охотничий нож +2" +msgstr[1] "охотничьих ножа +2" +msgstr[2] "охотничьих ножей +2" +msgstr[3] "охотничьи ножи +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "нож для выживания +1" +msgstr[1] "ножа для выживания +1" +msgstr[2] "ножей для выживания +1" +msgstr[3] "ножи для выживания +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "нож для выживания +2" +msgstr[1] "ножа для выживания +2" +msgstr[2] "ножей для выживания +2" +msgstr[3] "ножи для выживания +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "окопный нож +1" +msgstr[1] "окопных ножа +1" +msgstr[2] "окопных ножей +1" +msgstr[3] "окопные ножи +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "окопный нож +2" +msgstr[1] "окопных ножа +2" +msgstr[2] "окопных ножей +2" +msgstr[3] "окопные ножи +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "крис +1" +msgstr[1] "криса +1" +msgstr[2] "крисов +1" +msgstr[3] "крисы +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "крис +2" +msgstr[1] "криса +2" +msgstr[2] "крисов +2" +msgstr[3] "крисы +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "кукри +1" +msgstr[1] "кукри +1" +msgstr[2] "кукри +1" +msgstr[3] "кукри +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "кукри +2" +msgstr[1] "кукри +2" +msgstr[2] "кукри +2" +msgstr[3] "кукри +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "нодати +1" +msgstr[1] "нодати +1" +msgstr[2] "нодати +1" +msgstr[3] "нодати +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "нодати +2" +msgstr[1] "нодати +2" +msgstr[2] "нодати +2" +msgstr[3] "нодати +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "кирка +1" +msgstr[1] "кирки +1" +msgstr[2] "кирок +1" +msgstr[3] "кирки +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "кирка +2" +msgstr[1] "кирки +2" +msgstr[2] "кирок +2" +msgstr[3] "кирки +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "пика +1" +msgstr[1] "пики +1" +msgstr[2] "пик +1" +msgstr[3] "пики +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "пика +2" +msgstr[1] "пики +2" +msgstr[2] "пик +2" +msgstr[3] "пики +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "рапира +1" +msgstr[1] "рапиры +1" +msgstr[2] "рапир +1" +msgstr[3] "рапиры +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "рапира +2" +msgstr[1] "рапиры +2" +msgstr[2] "рапир +2" +msgstr[3] "рапиры +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "танто +1" +msgstr[1] "танто +1" +msgstr[2] "танто +1" +msgstr[3] "танто +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "танто +2" +msgstr[1] "танто +2" +msgstr[2] "танто +2" +msgstr[3] "танто +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "вакидзаси +1" +msgstr[1] "вакидзаси +1" +msgstr[2] "вакидзаси +1" +msgstr[3] "вакидзаси +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "вакидзаси +2" +msgstr[1] "вакидзаси +2" +msgstr[2] "вакидзаси +2" +msgstr[3] "вакидзаси +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "цвайхендер +1" +msgstr[1] "цвайхендера +1" +msgstr[2] "цвайхендеров +1" +msgstr[3] "цвайхендеры +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "цвайхендер +2" +msgstr[1] "цвайхендера +2" +msgstr[2] "цвайхендеров +2" +msgstr[3] "цвайхендеры +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "хопеш +1" +msgstr[1] "хопеша +1" +msgstr[2] "хопешей +1" +msgstr[3] "хопеши +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "хопеш +2" +msgstr[1] "хопеша +2" +msgstr[2] "хопешей +2" +msgstr[3] "хопеши +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "ксифос +1" +msgstr[1] "ксифоса +1" +msgstr[2] "ксифосов +1" +msgstr[3] "ксифосы +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "ксифос +2" +msgstr[1] "ксифоса +2" +msgstr[2] "ксифосов +2" +msgstr[3] "ксифосы +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "дао +1" +msgstr[1] "дао +1" +msgstr[2] "дао +1" +msgstr[3] "дао +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "дао +2" +msgstr[1] "дао +2" +msgstr[2] "дао +2" +msgstr[3] "дао +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "люцернский молот +1" +msgstr[1] "люцернских молота +1" +msgstr[2] "люцернских молотов +1" +msgstr[3] "люцернские молоты +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "люцернский молот +2" +msgstr[1] "люцернских молота +2" +msgstr[2] "люцернских молотов +2" +msgstr[3] "люцернские молоты +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "жезлопосох (жезл)" +msgstr[1] "жезлопосоха (жезла)" +msgstr[2] "жезлопосохов (жезлов)" +msgstr[3] "жезлопосохи (жезлы)" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "Удлинить жезл" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "Вы удлинили жезлопосох, теперь это посох." + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -"Книга в кожаной обложке с изображением щита, отбивающего струя драконьего " -"пламени. Внутри множество способ по превращению шкур и кожи монстров в " -"доспехи." +"В этом универсальном оружии используются пружины, усиленные техномансией, " +"для удержания концов посоха, когда он находятся в конфигурации жезла. " +"Активируйте, чтобы удлинить." -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" -msgstr[0] "«Руководство зачарователя»" -msgstr[1] "копии «Руководство зачарователя»" -msgstr[2] "копий «Руководство зачарователя»" -msgstr[3] "копии «Руководство зачарователя»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" +msgstr[0] "жезлопосох (посох)" +msgstr[1] "жезлопосоха (посоха)" +msgstr[2] "жезлопосохов (посохов)" +msgstr[3] "жезлопосохи (посохи)" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "Укоротить посох" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "Вы складываете жезлопосох." + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -"Объёмистый учебник по теории и практике магического усиления оружия и " -"инструментов." +"В этом универсальном оружии используются пружины, усиленные техномансией, " +"для предотвращения складывания посоха. Активируйте, чтобы укоротить." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" -msgstr[0] "свиток с заклинанием" -msgstr[1] "свитка с заклинанием" -msgstr[2] "свитков с заклинанием" -msgstr[3] "свитки с заклинанием" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" +msgstr[0] "тепловой кубик" +msgstr[1] "тепловых кубика" +msgstr[2] "тепловых кубиков" +msgstr[3] "тепловые кубики" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" -msgstr[0] "Свиток кристаллизации маны" -msgstr[1] "Свитка кристаллизации маны" -msgstr[2] "Свитков кристаллизации маны" -msgstr[3] "Свитки кристаллизации маны" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "Активировать режим факела" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." msgstr "" -"Хороший волшебник ко всему готовится заранее! Кристаллизуйте ману наперед!" +"Вы нажимаете кнопку факела, и из куба сверху вырывается большой столб " +"пламени, который излучает тепло, но ничего не сжигает." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" -msgstr[0] "Свиток Темновидения" -msgstr[1] "Свитка Темновидения" -msgstr[2] "Свитков Темновидения" -msgstr[3] "Свитки Темновидения" +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" +"Гладкий стальной кубик размером с кулак. Несколько кнопок по бокам " +"активируют питание куба." -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" +msgstr[0] "тепловой кубик (зажжён)" +msgstr[1] "тепловых кубика (зажжены)" +msgstr[2] "тепловых кубиков (зажжены)" +msgstr[3] "тепловые кубики (зажжены)" + +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "Потушить факел." + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -"У темноты нет секретов от волшебства. Измените своё зрение, чтобы видеть в " -"полной темноте!" +"Тепловой куб включен в режиме факела, в котором он излучает тепло и яркое " +"необжигающее пламя." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" -msgstr[0] "Свиток Невидимости" -msgstr[1] "Свитка Невидимости" -msgstr[2] "Свитков Невидимости" -msgstr[3] "Свитки Невидимости" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" +msgstr[0] "скелетный ключ открытия" +msgstr[1] "скелетных ключа открытия" +msgstr[2] "скелетных ключей открытия" +msgstr[3] "скелетные ключи открытия" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -"Свет не сможет иметь с вами дел, если вы этого не хотите. Станьте " -"невидимкой!" +"Маленький золотой скелетный ключ. Активируйте, чтобы открыть что-нибудь " +"закрытое." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" -msgstr[0] "Свиток Спрятанного Тела" -msgstr[1] "Свитка Спрятанного Тела" -msgstr[2] "Свитков Спрятанного Тела" -msgstr[3] "Свитки Спрятанного Тела" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" +msgstr[0] "вечногорящий факел" +msgstr[1] "вечногорящих факела" +msgstr[2] "вечногорящих факелов" +msgstr[3] "вечногорящие факелы" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -"Магическая аура искажает свет вокруг вашего тела, благодаря чему от " -"вражеских атак легче уворачиваться." +"Это деревянный факел с качественной гравировкой. По команде факел зажжется и" +" даст достаточно света. Он может гореть вечно." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" -msgstr[0] "Свиток Голографической Транспозиции" -msgstr[1] "Свитка Голографической Транспозиции" -msgstr[2] "Свитков Голографической Транспозиции" -msgstr[3] "Свитки Голографической Транспозиции" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" +msgstr[0] "бесконечная фляга" +msgstr[1] "бесконечные фляги" +msgstr[2] "бесконечных фляг" +msgstr[3] "бесконечные фляги" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" -msgstr[0] "Свиток Кары" -msgstr[1] "Свитка Кары" -msgstr[2] "Свитков Кары" -msgstr[3] "Свитки Кары" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "Вы открываете флягу и обнаруживаете, что она полна сладчайшего виски!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" -msgstr[0] "Свиток Превращения жизни" -msgstr[1] "Свитка Превращения жизни" -msgstr[2] "Свитков Превращения жизни" -msgstr[3] "Свитки Превращения жизни" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "Фляга ещё не заправлена." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" -msgstr[0] "Свиток Разум выше боли" -msgstr[1] "Свитка Разум выше боли" -msgstr[2] "Свитков Разум выше боли" -msgstr[3] "Свитки Разум выше боли" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" +msgstr[0] "зачарованный набор портного" +msgstr[1] "зачарованных набора портного" +msgstr[2] "зачарованныз наборов портного" +msgstr[3] "зачарованные наборы портного" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" -msgstr[0] "Свиток Призыва Зомби" -msgstr[1] "Свитка Призыва Зомби" -msgstr[2] "Свитков Призыва Зомби" -msgstr[3] "Свитки Призыва Зомби" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" +"Это пластиковый набор высокого качества, в котором содержатся разные иголки," +" несколько пластиковых катушек для ниток, небольшие ножницы и даже небольшой" +" нагревательный элемент для расплавления и соединения пластиковых деталей. " +"Используйте набор для модификации ваших одежды и брони. При этом " +"используется навык шитья. Он также содержит одного волшебного паучка, " +"постоянно и медленно создающего новые нитки." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" -msgstr[0] "Свиток Призыва Скелета" -msgstr[1] "Свитка Призыва Скелета" -msgstr[2] "Свитков Призыва Скелета" -msgstr[3] "Свитки Призыва Скелета" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" +msgstr[0] "ящик с паучком" +msgstr[1] "ящика с паучком" +msgstr[2] "ящиков с паучком" +msgstr[3] "ящики с паучком" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" -msgstr[0] "Свиток Призыва Парящего Диска" -msgstr[1] "Свитка Призыва Парящего Диска" -msgstr[2] "Свитков Призыва Парящего Диска" -msgstr[3] "Свитки Призыва Парящего Диска" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" +"Маленькая стеклянная коробочка с паучком, который неустанно день и ночь ткет" +" шелковую нить, скапливающуюся в отделении, из которого вы можете её " +"забрать." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" -msgstr[0] "Свиток Вызвать прогнившего когтехвата" -msgstr[1] "Свитка Вызвать прогнившего когтехвата" -msgstr[2] "Свитков Вызвать прогнившего когтехвата" -msgstr[3] "Свитки Вызвать прогнившего когтехвата" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" +msgstr[0] "волшебная читальная лампа (закрыта)" +msgstr[1] "волшебных читальных лампы (закрытых)" +msgstr[2] "волшебных читальных ламп (закрытых)" +msgstr[3] "волшебные читальные лампы (закрытые)" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" -msgstr[0] "Свиток Исцеления лёгких ран" -msgstr[1] "Свитка Исцеления лёгких ран" -msgstr[2] "Свитков Исцеления лёгких ран" -msgstr[3] "Свитки Исцеления лёгких ран" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" +"При помощи волшебства светящейся пыли и маленьких зелий маны эта крайне " +"дорогая маленькая лампа способна как минимум десятилетие излучать тусклый " +"свет, которого едва хватит для чтения. Крышка закрыта. Активируйте, чтобы " +"открыть крышку и выпустить свет." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" -msgstr[0] "Свиток Разделения боли" -msgstr[1] "Свитка Разделения боли" -msgstr[2] "Свитков Разделения боли" -msgstr[3] "Свитки Разделения боли" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" +msgstr[0] "волшебная читальная лампа" +msgstr[1] "волшебных читальных лампы" +msgstr[2] "волшебных читальных ламп" +msgstr[3] "волшебные читальные лампы" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" -msgstr[0] "Свиток Зловещего Щупальца" -msgstr[1] "Свитка Зловещего Щупальца" -msgstr[2] "Свитков Зловещего Щупальца" -msgstr[3] "Свитки Зловещего Щупальца" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" +"При помощи волшебства светящейся пыли и маленьких зелий маны эта крайне " +"дорогая маленькая лампа способна как минимум десятилетие излучать тусклый " +"свет, которого едва хватит для чтения. Активируйте, чтобы закрыть крышку и " +"спрятать свет." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" -msgstr[0] "Свиток Безобразного Улучшения" -msgstr[1] "Свитка Безобразного Улучшения" -msgstr[2] "Свитков Безобразного Улучшения" -msgstr[3] "Свитки Безобразного Улучшения" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" +msgstr[0] "M47A1 Техно-Медуза" +msgstr[1] "M47A1 Техно-Медузы" +msgstr[2] "M47A1 Техно-Медуз" +msgstr[3] "M47A1 Техно-Медузы" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" -msgstr[0] "Свиток Кислотных Брызг" -msgstr[1] "Свитка Кислотных Брызг" -msgstr[2] "Свитков Кислотных Брызг" -msgstr[3] "Свитки Кислотных Брызг" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" +"Магически зачарованный Phillips & Rodgers M47 Medusa, многокалиберный " +"револьвер, предназначенного для выживших. В то время как Техномантия " +"повышает надежность, с меньшими патронами она не так точна, как револьверы " +"специализированного калибра из-за свободного ствола." + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" +msgstr[0] "ганблейд" +msgstr[1] "ганблейда" +msgstr[2] "ганблейдов" +msgstr[3] "ганблейды" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" -msgstr[0] "Свиткок Сумки из Плоти" -msgstr[1] "Свитка Сумки из Плоти" -msgstr[2] "Свитков Сумки из Плоти" -msgstr[3] "Свитки Сумки из Плоти" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" +"Похожий на широкий меч-фалькату, этот изогнутый клинок имеет прикреплённый к" +" обуху короткоствольный помповый дробовик. Предназначен для нанесения как " +"первого, так и последнего удара." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "Свиток Призыва Костяного Копья" -msgstr[1] "Свитка Призыва Костяного Копья" -msgstr[2] "Свитков Призыва Костяного Копья" -msgstr[3] "Свитки Призыва Костяного Копья" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" +msgstr[0] "медное магическое кольцо" +msgstr[1] "медных магических кольца" +msgstr[2] "медных магических колец" +msgstr[3] "медные магические кольца" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" -msgstr[0] "Свиток Мегавзрыва" -msgstr[1] "Свитка Мегавзрыва" -msgstr[2] "Свитков Мегавзрыва" -msgstr[3] "Свитки Мегавзрыва" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "Обобщенное медное магическое кольцо." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "Свиток Магического Света" -msgstr[1] "Свитка Магического Света" -msgstr[2] "Свитков Магического Света" -msgstr[3] "Свитки Магического Света" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" +msgstr[0] "магическое кольцо" +msgstr[1] "магических кольца" +msgstr[2] "магических колец" +msgstr[3] "магические кольца" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" -msgstr[0] "Свиток Ослепляющей вспышки" -msgstr[1] "Свитка Ослепляющей вспышки" -msgstr[2] "Свитков Ослепляющей вспышки" -msgstr[3] "Свитки Ослепляющей вспышки" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "Обобщенное серебряное магическое кольцо." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "Свиток Эфирной Хватки" -msgstr[1] "Свитка Эфирной Хватки" -msgstr[2] "Свитков Эфирной Хватки" -msgstr[3] "Свитки Эфирной Хватки" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "Обобщенное золотое магическое кольцо." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" -msgstr[0] "Cвиток Защитной ауры" -msgstr[1] "Cвитка Защитной ауры" -msgstr[2] "Cвитков Защитной ауры" -msgstr[3] "Cвитки Защитной ауры" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "Обобщенное платиновое магическое кольцо." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "Свиток Растительной Хватки" -msgstr[1] "Свитка Растительной Хватки" -msgstr[2] "Свитков Растительной Хватки" -msgstr[3] "Свитки Растительной Хватки" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" +msgstr[0] "кольцо клинков" +msgstr[1] "кольца клинков" +msgstr[2] "колец клинков" +msgstr[3] "кольца клинков" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" -msgstr[0] "Свиток Корневого Удара" -msgstr[1] "Свитка Корневого Удара" -msgstr[2] "Свитков Корневого Удара" -msgstr[3] "Свитки Корневого Удара" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" +"Изысканное серебряное кольцо с выгравированными кинжалами, которое при " +"активации вызывает в вашей руке почти идеальный метательный нож." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "Свиток Древесного Копья" -msgstr[1] "Свитка Древесного Копья" -msgstr[2] "Свитков Древесного Копья" -msgstr[3] "Свитки Древесного Копья" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" +msgstr[0] "кольцо угря" +msgstr[1] "кольца угря" +msgstr[2] "колец угря" +msgstr[3] "кольца угря" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" -msgstr[0] "Свиток Природного Лука" -msgstr[1] "Свитка Природного Лука" -msgstr[2] "Свитков Природного Лука" -msgstr[3] "Свитки Природного Лука" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" +"Тонкое серебряное кольцо с изображением угря. Позволяет уклоняться от " +"дополнительной атаки за ход." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "Свиток Природного Транса" -msgstr[1] "Свитка Природного Транса" -msgstr[2] "Свитков Природного Транса" -msgstr[3] "Свитки Природного Транса" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" +msgstr[0] "кольцо двуглавого угря" +msgstr[1] "кольца двуглавого угря" +msgstr[2] "колец двуглавого угря" +msgstr[3] "кольца двуглавого угря" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" -msgstr[0] "Свиток Мешка Кошек" -msgstr[1] "Свитка Мешка Кошек" -msgstr[2] "Свитков Мешка Кошек" -msgstr[3] "Свитки Мешка Кошек" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" +"Тонкое золотое кольцо с изображением двуглавого угря. Позволяет уклоняться " +"от двух дополнительных атак за ход." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "Свиток Каменного кулака" -msgstr[1] "Свитка Каменного кулака" -msgstr[2] "Свитков Каменного кулака" -msgstr[3] "Свитки Каменного кулака" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" +msgstr[0] "кольцо силы +1" +msgstr[1] "кольца силы +1" +msgstr[2] "кольец силы +1" +msgstr[3] "кольца силы +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" -msgstr[0] "Свиток Сейсмического Удара" -msgstr[1] "Свитка Сейсмического Удара" -msgstr[2] "Свитков Сейсмического Удара" -msgstr[3] "Свитки Сейсмического Удара" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" +"Медное кольцо, которое делает вас немного сильнее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "Свиток Крепкости Камня" -msgstr[1] "Свитка Крепкости Камня" -msgstr[2] "Свитков Крепкости Камня" -msgstr[3] "Свитки Крепкости Камня" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" +msgstr[0] "кольцо силы +2" +msgstr[1] "кольца силы +2" +msgstr[2] "колец силы +2" +msgstr[3] "кольца силы +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" -msgstr[0] "Свиток Потока осколков" -msgstr[1] "Свитка Потока осколков" -msgstr[2] "Свитков Потока осколков" -msgstr[3] "Свитки Потока осколков" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" +"Серебряное кольцо, которое делает вас заметно сильнее, когда вы его " +"надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "Свиток Пронзающей Иглы" -msgstr[1] "Свитка Пронзающей Иглы" -msgstr[2] "Свитков Пронзающей Иглы" -msgstr[3] "Свитки Пронзающей Иглы" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" +msgstr[0] "кольцо силы +3" +msgstr[1] "кольца силы +3" +msgstr[2] "колец силы +3" +msgstr[3] "кольца силы +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" -msgstr[0] "Свиток Бури осколков" -msgstr[1] "Свитка Бури осколков" -msgstr[2] "Свитков Бури осколков" -msgstr[3] "Свитки Бури осколков" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" +"Золотое кольцо, которое делает вас удивительно сильнее, когда вы его " +"надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "Свиток Каменного удара" -msgstr[1] "Свитка Каменного удара" -msgstr[2] "Свитков Каменного удара" -msgstr[3] "Свитки Каменного удара" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" +msgstr[0] "кольцо силы +4" +msgstr[1] "кольца силы +4" +msgstr[2] "колец силы +4" +msgstr[3] "кольца силы +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" -msgstr[0] "Свиток Точечной Вспышки" -msgstr[1] "Свитка Точечной Вспышки" -msgstr[2] "Свитков Точечной Вспышки" -msgstr[3] "Свитки Точечной Вспышки" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" +"Платиновое кольцо, которое делает вас намного сильнее, когда вы его " +"надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "Свиток Пальца-Зажигалки" -msgstr[1] "Свитка Пальца-Зажигалки" -msgstr[2] "Свитков Пальца-Зажигалки" -msgstr[3] "Свитки Пальца-Зажигалки" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" +msgstr[0] "кольцо ловкости +1" +msgstr[1] "кольца ловкости +1" +msgstr[2] "колец ловкости +1" +msgstr[3] "кольца ловкости +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" -msgstr[0] "Свиток Ледяных Шипов" -msgstr[1] "Свитка Ледяных Шипов" -msgstr[2] "Свитков Ледяных Шипов" -msgstr[3] "Свитки Ледяных Шипов" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" +"Медное кольцо, которое делает вас чуть ловчее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "Свиток Огненного шара" -msgstr[1] "Свитка Огненного шара" -msgstr[2] "Свитков Огненного шара" -msgstr[3] "Свитки Огненного шара" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" +msgstr[0] "кольцо ловкости +2" +msgstr[1] "кольца ловкости +2" +msgstr[2] "колец ловкости +2" +msgstr[3] "кольца ловкости +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" -msgstr[0] "Свиток Конуса Холода" -msgstr[1] "Свитка Конуса Холода" -msgstr[2] "Свитков Конуса Холода" -msgstr[3] "Свитки Конуса Холода" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "Серебряное кольцо, которое делает вас ловчее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "Свиток Горящих Рук" -msgstr[1] "Свитка Горящих Рук" -msgstr[2] "Свитков Горящих Рук" -msgstr[3] "Свитки Горящих Рук" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" +msgstr[0] "кольцо ловкости +3" +msgstr[1] "кольца ловкости +3" +msgstr[2] "колец ловкости +3" +msgstr[3] "кольца ловкости +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" -msgstr[0] "Свиток Ледяных Брызг" -msgstr[1] "Свитка Ледяных Брызг" -msgstr[2] "Свитков Ледяных Брызг" -msgstr[3] "Свитки Ледяных Брызг" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" +"Золотое кольцо, которое делает вас заметно ловчее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "Свиток Леденящего Касания" -msgstr[1] "Свитка Леденящего Касания" -msgstr[2] "Свитков Леденящего Касания" -msgstr[3] "Свитки Леденящего Касания" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" +msgstr[0] "кольцо ловкости +4" +msgstr[1] "кольца ловкости +4" +msgstr[2] "колец ловкости +4" +msgstr[3] "кольца ловкости +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" -msgstr[0] "Свиток Скольжения по Льду" -msgstr[1] "Свитка Скольжения по Льду" -msgstr[2] "Свитков Скольжения по Льду" -msgstr[3] "Свитки Скольжения по Льду" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" +"Платиновое кольцо, которое делает вас намного ловчее, когда вы его " +"надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" -msgstr[0] "Свиток Инеевого Взрыва" -msgstr[1] "Свитка Инеевого Взрыва" -msgstr[2] "Свитков Инеевого Взрыва" -msgstr[3] "Свитки Инеевого Взрыва" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" +msgstr[0] "кольцо интеллекта +1" +msgstr[1] "кольца интеллекта +1" +msgstr[2] "колец интеллекта +1" +msgstr[3] "кольца интеллекта +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "Свиток Ледяного Щита" -msgstr[1] "Свитка Ледяного Щита" -msgstr[2] "Свитков Ледяного Щита" -msgstr[3] "Свитки Ледяного Щита" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "Медное кольцо, которое делает вас чуть умнее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "Свиток Ледяной Брони" -msgstr[1] "Свитка Ледяной Брони" -msgstr[2] "Свитков Ледяной Брони" -msgstr[3] "Свитки Ледяной Брони" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" +msgstr[0] "кольцо интеллекта +2" +msgstr[1] "кольца интеллекта +2" +msgstr[2] "колец интеллекта +2" +msgstr[3] "кольца интеллекта +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" -msgstr[0] "Свиток Волшебной Ракеты" -msgstr[1] "Свитка Волшебной Ракеты" -msgstr[2] "Свитков Волшебной Ракеты" -msgstr[3] "Свитки Волшебной Ракеты" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "Серебряное кольцо, которое делает вас умнее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "Свиток Двери Измерений" -msgstr[1] "Свитка Двери Измерений" -msgstr[2] "Свитков Двери Измерений" -msgstr[3] "Свитки Двери Измерений" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" +msgstr[0] "кольцо интеллекта +3" +msgstr[1] "кольца интеллекта +3" +msgstr[2] "колец интеллекта +3" +msgstr[3] "кольца интеллекта +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "Свиток Гравитационного Колодца" -msgstr[1] "Свитка Гравитационного Колодца" -msgstr[2] "Свитков Гравитационного Колодца" -msgstr[3] "Свитки Гравитационного Колодца" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" +"Золотое кольцо, которое делает вас заметно умнее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" -msgstr[0] "Свиток Взрыва Маны" -msgstr[1] "Свитка Взрыва Маны" -msgstr[2] "Свитков Взрыва Маны" -msgstr[3] "Свитки Взрыва Маны" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" +msgstr[0] "кольцо интеллекта +4" +msgstr[1] "кольца интеллекта +4" +msgstr[2] "колец интеллекта +4" +msgstr[3] "кольца интеллекта +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "Свиток Удара Маны" -msgstr[1] "Свитка Удара Маны" -msgstr[2] "Свитков Удара Маны" -msgstr[3] "Свитки Удара Маны" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" +"Платиновое кольцо, которое делает вас намного умнее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "Свиток Ускорения" -msgstr[1] "Свитка Ускорения" -msgstr[2] "Свитков Ускорения" -msgstr[3] "Свитки Ускорения" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" +msgstr[0] "кольцо восприятия +1" +msgstr[1] "кольца восприятия +1" +msgstr[2] "колец восприятия +1" +msgstr[3] "кольца восприятия +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" -msgstr[0] "Свиток Луча Маны" -msgstr[1] "Свитка Луча Маны" -msgstr[2] "Свитков Луча Маны" -msgstr[3] "Свитки Луча Маны" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" +"Медное кольцо, которое делает вас чуть внимательнее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "Свиток Побега" -msgstr[1] "Свитка Побега" -msgstr[2] "Свитков Побега" -msgstr[3] "Свитки Побега" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" +msgstr[0] "кольцо восприятия +2" +msgstr[1] "кольца восприятия +2" +msgstr[2] "колец восприятия +2" +msgstr[3] "кольца восприятия +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "Свиток Кошачьей Грации" -msgstr[1] "Свитка Кошачьей Грации" -msgstr[2] "Свитков Кошачьей Грации" -msgstr[3] "Свитки Кошачьей Грации" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" +"Серебряное кольцо, которое делает вас внимательнее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" -msgstr[0] "Свиток Орлиного Зрения" -msgstr[1] "Свитка Орлиного Зрения" -msgstr[2] "Свитков Орлиного Зрения" -msgstr[3] "Свитки Орлиного Зрения" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" +msgstr[0] "кольцо восприятия +3" +msgstr[1] "кольца восприятия +3" +msgstr[2] "колец восприятия +3" +msgstr[3] "кольца восприятия +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" -msgstr[0] "Свиток Силы Огра" -msgstr[1] "Свитка Силы Огра" -msgstr[2] "Свитков Силы Огра" -msgstr[3] "Свитки Силы Огра" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" +"Золотое кольцо, которое делает вас заметно внимательнее, когда вы его " +"надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" -msgstr[0] "Свиток Лисьей Хитрости" -msgstr[1] "Свитка Лисьей Хитрости" -msgstr[2] "Свитков Лисьей Хитрости" -msgstr[3] "Свитки Лисьей Хитрости" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" +msgstr[0] "кольцо восприятия +4" +msgstr[1] "кольца восприятия +4" +msgstr[2] "колец восприятия +4" +msgstr[3] "кольца восприятия +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" -msgstr[0] "Свиток Разряда" -msgstr[1] "Свитка Разряда" -msgstr[2] "Свитков Разряда" -msgstr[3] "Свитки Разряда" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" +"Платиновое кольцо, которое делает вас намного внимательнее, когда вы его " +"надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" -msgstr[0] "Свиток Удара Молнии" -msgstr[1] "Свитка Удара Молнии" -msgstr[2] "Свитков Удара Молнии" -msgstr[3] "Свитки Удара Молнии" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" +msgstr[0] "кольцо скорости +3" +msgstr[1] "кольца скорости +3" +msgstr[2] "колец скорости +3" +msgstr[3] "кольца скорости +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" -msgstr[0] "Свиток Удара Ветра" -msgstr[1] "Свитка Удара Ветра" -msgstr[2] "Свитков Удара Ветра" -msgstr[3] "Свитки Удара Ветра" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" +"Медное кольцо, которое делает вас немного быстрее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" -msgstr[0] "Свиток Крыльев Ветра" -msgstr[1] "Свитка Крыльев Ветра" -msgstr[2] "Свитков Крыльев Ветра" -msgstr[3] "Свитки Крыльев Ветра" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" +msgstr[0] "кольцо скорости +5" +msgstr[1] "кольца скорости +5" +msgstr[2] "колец скорости +5" +msgstr[3] "кольца скорости +5" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" -msgstr[0] "Свиток Призвать Грозовой молот" -msgstr[1] "Свитка Призвать Грозовой молот" -msgstr[2] "Свитков Призвать Грозовой молот" -msgstr[3] "Свитки Призвать Грозовой молот" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" +"Серебряное кольцо, которое делает вас быстрее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" -msgstr[0] "Свиток Кары" -msgstr[1] "Свитка Кары" -msgstr[2] "Свитков Кары" -msgstr[3] "Свитки Кары" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" +msgstr[0] "кольцо скорости +7" +msgstr[1] "кольца скорости +7" +msgstr[2] "колец скорости +7" +msgstr[3] "кольца скорости +7" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" -msgstr[0] "Свиток Святого Клинка" -msgstr[1] "Свитка Святого Клинка" -msgstr[2] "Свитков Святого Клинка" -msgstr[3] "Свитки Святого Клинка" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" +"Золотое кольцо, которое делает вас заметно быстрее, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" -msgstr[0] "Свиток Духовной Брони" -msgstr[1] "Свитка Духовной Брони" -msgstr[2] "Свитков Духовной Брони" -msgstr[3] "Свитки Духовной Брони" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" +msgstr[0] "кольцо скорости +10" +msgstr[1] "кольца скорости +10" +msgstr[2] "колец скорости +10" +msgstr[3] "кольца скорости +10" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" -msgstr[0] "Свиток Лампы" -msgstr[1] "Свитка Лампы" -msgstr[2] "Свитков Лампы" -msgstr[3] "Свитки Лампы" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" +"Платиновое кольцо, которое делает вас намного быстрее, когда вы его " +"надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" -msgstr[0] "Свиток Манатричества" -msgstr[1] "Свитка Манатричества" -msgstr[2] "Свитков Манатричества" -msgstr[3] "Свитки Манатричества" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" +msgstr[0] "кольцо защиты +2" +msgstr[1] "кольца защиты +2" +msgstr[2] "колец защиты +2" +msgstr[3] "кольца защиты +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" -msgstr[0] "Свиток Электрошока" -msgstr[1] "Свитка Электрошока" -msgstr[2] "Свитков Электрошока" -msgstr[3] "Свитки Электрошока" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" +"Медное кольцо, которое поглощает малую часть урона, когда вы его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" -msgstr[0] "Свиток Малого Квантового Тоннеля" -msgstr[1] "Свитка Малого Квантового Тоннеля" -msgstr[2] "Свитков Малого Квантового Тоннеля" -msgstr[3] "Свитки Малого Квантового Тоннеля" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" +msgstr[0] "кольцо защиты +4" +msgstr[1] "кольца защиты +4" +msgstr[2] "колец защиты +4" +msgstr[3] "кольца защиты +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" -msgstr[0] "Свиток Синаптической Стимуляции" -msgstr[1] "Свитка Синаптической Стимуляции" -msgstr[2] "Свитков Синаптической Стимуляции" -msgstr[3] "Свитки Синаптической Стимуляции" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" +"Серебряное кольцо, которое которое поглощает часть урона, когда вы его " +"надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" -msgstr[0] "Свиток Лазера" -msgstr[1] "Свитка Лазера" -msgstr[2] "Свитков Лазера" -msgstr[3] "Свитки Лазера" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" +msgstr[0] "кольцо защиты +6" +msgstr[1] "кольца защиты +6" +msgstr[2] "колец защиты +6" +msgstr[3] "кольца защиты +6" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" -msgstr[0] "Свиток Оживлённого Клинка" -msgstr[1] "Свитка Оживлённого Клинка" -msgstr[2] "Свитков Оживлённого Клинка" -msgstr[3] "Свитки Оживлённого Клинка" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" +"Золотое кольцо, которое которое поглощает заметную часть урона, когда вы его" +" надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" -msgstr[0] "Свиток Зеркального Образа" -msgstr[1] "Свитка Зеркального Образа" -msgstr[2] "Свитков Зеркального Образа" -msgstr[3] "Свитки Зеркального Образа" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" +msgstr[0] "кольцо защиты +8" +msgstr[1] "кольца защиты +8" +msgstr[2] "колец защиты +8" +msgstr[3] "кольца защиты +8" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" -msgstr[0] "Свиток Заряда Молнии" -msgstr[1] "Свитка Заряда Молнии" -msgstr[2] "Свитков Заряда Молнии" -msgstr[3] "Свитки Заряда Молнии" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" +"Платиновое кольцо, которое которое поглощает большую часть урона, когда вы " +"его надеваете." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" -msgstr[0] "Свиток Некротического Взгляда" -msgstr[1] "Свитка Некротического Взгляда" -msgstr[2] "Свитков Некротического Взгляда" -msgstr[3] "Свитки Некротического Взгляда" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" +msgstr[0] "волшебный жетон" +msgstr[1] "волшебных жетона" +msgstr[2] "волшебных жетонов" +msgstr[3] "волшебные жетоны" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" -msgstr[0] "Свиток Семян Очищения" -msgstr[1] "Свитка Семян Очищения" -msgstr[2] "Свитков Семян Очищения" -msgstr[3] "Свитки Семян Очищения" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" +msgstr[0] "жетон длинного меча" +msgstr[1] "жетона длинного меча" +msgstr[2] "жетонов длинного меча" +msgstr[3] "жетоны длинного меча" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" msgstr "" -"Вы призываете дар земли, способный очищать воду. На высоких уровнях " -"призывается больше семян." +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в блестящий новенький длинный меч!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" -msgstr[0] "Свиток Оптического Чихающего Луча" -msgstr[1] "Свитка Оптического Чихающего Луча" -msgstr[2] "Свитков Оптического Чихающего Луча" -msgstr[3] "Свитки Оптического Чихающего Луча" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " +"длинный меч." -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" +msgstr[0] "жетон меча" +msgstr[1] "жетона меча" +msgstr[2] "жетонов меча" +msgstr[3] "жетоны меча" + +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" msgstr "" -"Вы перегружаете внутренние батареи, чтобы испустить луч примерно в " -"направлении взгляда из вашего лица." +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в сияющий новенький меч!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" -msgstr[0] "Свиток Вулканических Бомб" -msgstr[1] "Свитка Вулканических Бомб" -msgstr[2] "Свитков Вулканических Бомб" -msgstr[3] "Свитки Вулканических Бомб" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " +"меч." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" -msgstr[0] "Свиток Сопротивления Кислоте" -msgstr[1] "Свитка Сопротивления Кислоте" -msgstr[2] "Свитков Сопротивления Кислоте" -msgstr[3] "Свитки Сопротивления Кислоте" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" +msgstr[0] "жетон палаша" +msgstr[1] "жетона палаша" +msgstr[2] "жетонов палаша" +msgstr[3] "жетоны палаша" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." -msgstr "Это заклинание создаёт невидимую ауру, защищающую вас от кислоты." +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в блестящий новенький палаш!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" -msgstr[0] "Свиток Грозового Шторма" -msgstr[1] "Свитка Грозового Шторма" -msgstr[2] "Свитков Грозового Шторма" -msgstr[3] "Свитки Грозового Шторма" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " +"палаш." -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" +msgstr[0] "жетон боевого топора" +msgstr[1] "жетона боевого топора" +msgstr[2] "жетонов боевого топора" +msgstr[3] "жетоны боевого топора" + +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" msgstr "" -"Этот свиток описывает, как можно значительно усилить широко употребимое " -"повелителями бури заклинание «Разряд молнии» за счёт большего расхода маны." +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в блестящий новенький боевой топор!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" -msgstr[0] "свиток жертвенного разрастания" -msgstr[1] "свитка жертвенного разрастания" -msgstr[2] "свитков жертвенного разрастания" -msgstr[3] "свитки жертвенного разрастания" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " +"боевой топор." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" -msgstr[0] "свиток жертвенного лечения" -msgstr[1] "свитка жертвенного лечения" -msgstr[2] "свитков жертвенного лечения" -msgstr[3] "свитки жертвенного лечения" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" +msgstr[0] "жетон пики" +msgstr[1] "жетона пики" +msgstr[2] "жетонов пики" +msgstr[3] "жетоны пики" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" -msgstr[0] "свиток каменной кожи" -msgstr[1] "свитка каменной кожи" -msgstr[2] "свитков каменной кожи" -msgstr[3] "свитки каменной кожи" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в блестящую новенькую пику!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "свиток колонны камня" -msgstr[1] "свитка колонны камня" -msgstr[2] "свитков колонны камня" -msgstr[3] "свитки колонны камня" +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " +"пику." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" -msgstr[0] "свиток парализующего дротика" -msgstr[1] "свитка парализующего дротика" -msgstr[2] "свитков парализующего дротика" -msgstr[3] "свитки парализующего дротика" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" +msgstr[0] "жетон булавы" +msgstr[1] "жетона булавы" +msgstr[2] "жетонов булавы" +msgstr[3] "жетоны булавы" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" -msgstr[0] "свиток внутренней защиты" -msgstr[1] "свитка внутренней защиты" -msgstr[2] "свитков внутренней защиты" -msgstr[3] "свитки внутренней защиты" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в блестящую новенькую булаву!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" -msgstr[0] "свиток плетения крови" -msgstr[1] "свитка плетения крови" -msgstr[2] "свитков плетения крови" -msgstr[3] "свитки плетения крови" +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " +"булаву." -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "свиток ионизации" -msgstr[1] "свитка ионизации" -msgstr[2] "свитков ионизации" -msgstr[3] "свитки ионизации" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" +msgstr[0] "жетон посоха" +msgstr[1] "жетона посоха" +msgstr[2] "жетонов посоха" +msgstr[3] "жетоны посоха" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" -msgstr[0] "свиток блуждающего огонька" -msgstr[1] "свитка блуждающего огонька" -msgstr[2] "свитков блуждающего огонька" -msgstr[3] "свитки блуждающего огонька" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в блестящий новенький посох!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" -msgstr[0] "свиток Стены тумана" -msgstr[1] "свитка Стены тумана" -msgstr[2] "свитков Стены тумана" -msgstr[3] "свитки Стены тумана" +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " +"посох." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" -msgstr[0] "«Руководство техноманта по дебаггингу C:DDA »" -msgstr[1] "книги «Руководство техноманта по дебаггингу C:DDA »" -msgstr[2] "книг «Руководство техноманта по дебаггингу C:DDA »" -msgstr[3] "книги «Руководство техноманта по дебаггингу C:DDA »" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" +msgstr[0] "жетон молота" +msgstr[1] "жетона молота" +msgstr[2] "жетонов молота" +msgstr[3] "жетоны молота" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "static std::string description( spell sp ) const;" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в блестящий новенький молот!" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" -msgstr[0] "«Руководство по магии для начинающих»" -msgstr[1] "книги «Руководство по магии для начинающих»" -msgstr[2] "книг «Руководство по магии для начинающих»" -msgstr[3] "книги «Руководство по магии для начинающих»" +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " +"молот." -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" +msgstr[0] "жетон набора отвёрток" +msgstr[1] "жетона набора отвёрток" +msgstr[2] "жетонов набора отвёрток" +msgstr[3] "жетоны набора отвёрток" + +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" msgstr "" -"Это скорее брошюра, нежели книга заклинаний, но в ней содержится как минимум" -" одно интересное заклинание." - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" -msgstr[0] "«Руководство по походному колдовству»" -msgstr[1] "книги «Руководство по походному колдовству»" -msgstr[2] "книг «Руководство по походному колдовству»" -msgstr[3] "книги «Руководство по походному колдовству»" +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в набор новеньких, с иголочки, отвёрток!" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." msgstr "" -"Похоже, это волшебная версия руководства с рекомендациями, что взять с собой" -" в поход. Немного увесистая, но без сомнения полезная." +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " +"отвёртки." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" -msgstr[0] "«Пиромансия для еретиков»" -msgstr[1] "книги «Пиромансия для еретиков»" -msgstr[2] "книг «Пиромансия для еретиков»" -msgstr[3] "книги «Пиромансия для еретиков»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" +msgstr[0] "жетон инструментов" +msgstr[1] "жетона инструментов" +msgstr[2] "жетонов инструментов" +msgstr[3] "жетоны инструментов" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" msgstr "" -"Обугленные остатки книги, всё ещё хранящие множество способов что-нибудь " -"поджечь." - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" -msgstr[0] "«Трактат о волшебных элементах»" -msgstr[1] "книги «Трактат о волшебных элементах»" -msgstr[2] "книг «Трактат о волшебных элементах»" -msgstr[3] "книги «Трактат о волшебных элементах»" +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в набор новеньких, с иголочки, инструментов!" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." msgstr "" -"Подробно описывает сложные диаграммы, ритуалы и жесты в разных заклинаниях." +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, в " +"инструменты." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" -msgstr[0] "«Знакомство с божественностью»" -msgstr[1] "книги «Знакомство с божественностью»" -msgstr[2] "книг «Знакомство с божественностью»" -msgstr[3] "книги «Знакомство с божественностью»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" +msgstr[0] "жетон ломика" +msgstr[1] "жетона ломика" +msgstr[2] "жетонов ломика" +msgstr[3] "жетоны ломика" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" msgstr "" -"По большей части это религиозный текст, но есть пара указаний насчёт " -"исцеления." - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" -msgstr[0] "«Руководство паладина по современному колдовству»" -msgstr[1] "книги «Руководство паладина по современному колдовству»" -msgstr[2] "книг «Руководство паладина по современному колдовству»" -msgstr[3] "книги «Руководство паладина по современному колдовству»" +"Вы произносите кодовое слово, выгравированное на монете, и она быстро " +"растёт, превращаясь в блестящий новенький ломик!" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." msgstr "" -"Несмотря на название, книга написана на средневековом языке. Читать её " -"тяжеловато, но вы можете разобрать большинство слов." +"Большая серебряная монета, которая, при произношении слова на обороте, " +"превращается в предмет, изображенный на лицевой стороне, в нашем случае, " +"ломик." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" -msgstr[0] "«Вечная хватка зимы»" -msgstr[1] "книги «Вечная хватка зимы»" -msgstr[2] "книг «Вечная хватка зимы»" -msgstr[3] "книги «Вечная хватка зимы»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" +msgstr[0] "бутылочный домкрат +1" +msgstr[1] "бутылочных домкрата +1" +msgstr[2] "бутылочных домкратов +1" +msgstr[3] "бутылочные домкраты +1" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "Эта тонкая книга выглядит почти как изо льда, она холодная на ощупь." +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" +msgstr[0] "бутылочный домкрат +2" +msgstr[1] "бутылочных домкрата +2" +msgstr[2] "бутылочных домкратов +2" +msgstr[3] "бутылочные домкраты +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" -msgstr[0] "«Том грядущего шторма»" -msgstr[1] "книги «Том грядущего шторма»" -msgstr[2] "книг «Том грядущего шторма»" -msgstr[3] "книги «Том грядущего шторма»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" +msgstr[0] "скальпель +1" +msgstr[1] "скальпеля +1" +msgstr[2] "скальпелей +1" +msgstr[3] "скальпели +1" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." -msgstr "" -"Большая книга с тиснёными молниями и штормовыми облаками, покалывает пальцы " -"при касании." +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" +msgstr[0] "скальпель +2" +msgstr[1] "скальпеля +2" +msgstr[2] "скальпелей +2" +msgstr[3] "скальпели +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" -msgstr[0] "невзрачная книга заклинаний" -msgstr[1] "невзрачные книги заклинаний" -msgstr[2] "невзрачных книг заклинаний" -msgstr[3] "невзрачные книги заклинаний" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" +msgstr[0] "нож мясника +1" +msgstr[1] "ножа мясника +1" +msgstr[2] "ножей мясника +1" +msgstr[3] "ножи мясника +1" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "Маленькая книжка с заклинаниями начинающего колдуна." +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" +msgstr[0] "нож мясника +2" +msgstr[1] "ножа мясника +2" +msgstr[2] "ножей мясника +2" +msgstr[3] "ножи мясника +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" -msgstr[0] "«О свете и уловках»" -msgstr[1] "книги «О свете и уловках»" -msgstr[2] "книг «О свете и уловках»" -msgstr[3] "книги «О свете и уловках»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" +msgstr[0] "мясницкий нож +1" +msgstr[1] "мясницких ножа +1" +msgstr[2] "мясницких ножей +1" +msgstr[3] "мясницкие ножи +1" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" -"Маленькая белая книга. Она слегка усиливает окружающий свет вокруг себя." +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" +msgstr[0] "мясницкий нож +2" +msgstr[1] "мясницких ножа +2" +msgstr[2] "мясницких ножей +2" +msgstr[3] "мясницкие ножи +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" -msgstr[0] "Книга Плоти" -msgstr[1] "Книги Плоти" -msgstr[2] "Книг Плоти" -msgstr[3] "Книги Плоти" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" +msgstr[0] "разделочный нож +1" +msgstr[1] "разделочных ножа +1" +msgstr[2] "разделочных ножей +1" +msgstr[3] "разделочные ножи +1" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." -msgstr "Маленький томик, покрытый дублёной человеческой кожей." +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" +msgstr[0] "разделочный нож +2" +msgstr[1] "разделочных ножа +2" +msgstr[2] "разделочных ножей +2" +msgstr[3] "разделочные ножи +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" -msgstr[0] "Книга Деревьев" -msgstr[1] "Книги Деревьев" -msgstr[2] "Книг Деревьев" -msgstr[3] "Книги Деревьев" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" +msgstr[0] "набор для разделки +1" +msgstr[1] "набора для разделки +1" +msgstr[2] "наборов для разделки +1" +msgstr[3] "наборы для разделки +1" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "Книга в обложке из коры." +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" +msgstr[0] "набор для разделки +2" +msgstr[1] "набора для разделки +2" +msgstr[2] "наборов для разделки +2" +msgstr[3] "наборы для разделки +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" -msgstr[0] "«Мана в качестве источника энергии»" -msgstr[1] "книги «Мана в качестве источника энергии»" -msgstr[2] "книг «Мана в качестве источника энергии»" -msgstr[3] "книги «Мана в качестве источника энергии»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" +msgstr[0] "цестус +1" +msgstr[1] "цестус +1" +msgstr[2] "цестус +1" +msgstr[3] "цестус +1" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" -"Эта книга описывает заклинания, касающиеся использования маны для избавления" -" от некоторых физиологических эффектов." +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" +msgstr[0] "цестус +2" +msgstr[1] "цестус +2" +msgstr[2] "цестус +2" +msgstr[3] "цестус +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" -msgstr[0] "Книга Боевого мага" -msgstr[1] "Книги Боевого мага" -msgstr[2] "Книг Боевого мага" -msgstr[3] "Книги Боевого мага" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" +msgstr[0] "пылающий кулак" +msgstr[1] "пылающих кулаков" +msgstr[2] "пылающих кулаков" +msgstr[3] "пылающие кулаки" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -"Обычная волшебно выглядящая колдовская книга, полная боевых заклинаний для " -"мага. Вам повезло!" +"Пластина из тяжёлого металла, покрывающая кулак и увеличивающая силу удара, " +"с крепкой прокладкой под ней для защиты руки. Наложено зачарование, " +"извергающее тёмное магическое пламя, обжигающее только врагов." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" -msgstr[0] "Книга Пустой Земли" -msgstr[1] "Книги Пустой Земли" -msgstr[2] "Книг Пустой Земли" -msgstr[3] "Книги Пустой Земли" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" +msgstr[0] "пылающий кулак +1" +msgstr[1] "пылающих кулака +1" +msgstr[2] "пылающих кулаков +1" +msgstr[3] "пылающие кулаки +1" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" -"Большая пыльная колдовская книга, постоянно покрытая, хм, пылью. Она " -"содержит силу земли." +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" +msgstr[0] "пылающий кулак +2" +msgstr[1] "пылающих кулака +2" +msgstr[2] "пылающих кулаков +2" +msgstr[3] "пылающие кулаки +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" -msgstr[0] "Том волшебного перемещения" -msgstr[1] "Тома волшебного перемещения" -msgstr[2] "Томов волшебного перемещения" -msgstr[3] "Тома волшебного перемещения" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" +msgstr[0] "ударная перчатка" +msgstr[1] "ударных перчатки" +msgstr[2] "ударных перчаток" +msgstr[3] "ударные перчатки" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -"Маленькая лёгкая книжица, которая существует не совсем полностью, ну где-то " -"на 97% Она содержит заклинания мага, посвящённые передвижению." +"Большая блестящая металлическая рукавица, покрытая магическими символами, " +"которая позволяет наносить поразительно мощные удары." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" -msgstr[0] "Смазанный свиток" -msgstr[1] "Смазанный свиток" -msgstr[2] "Смазанный свиток" -msgstr[3] "Смазанный свиток" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" +msgstr[0] "силовой цестус" +msgstr[1] "силовых цестуса" +msgstr[2] "силовых цестусов" +msgstr[3] "силовые цестусы" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -"Похоже, кто-то изобретал новое заклинание, но пролил чашку кофе и со злости " -"скомкал бумагу. Здесь определённо содержится какая-то магия, но вы не " -"уверены, что выйдет что-то хорошее." +"Металлический цестус с прикреплённым обрезом. Отсутствие ложи для поглощения" +" отдачи означает, что для стрельбы требуется некоторая сила." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" -msgstr[0] "«Некрослуги для чайников»" -msgstr[1] "книги «Некрослуги для чайников»" -msgstr[2] "книг «Некрослуги для чайников»" -msgstr[3] "книги «Некрослуги для чайников»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" +msgstr[0] "Магическая палочка" +msgstr[1] "Магических палочки" +msgstr[2] "Магических палочек" +msgstr[3] "Магические палочки" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" +msgstr[0] "одноразовый жезл" +msgstr[1] "одноразовых жезла" +msgstr[2] "одноразовых жезлов" +msgstr[3] "одноразовые жезлы" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" +msgstr[0] "малый жезл волшебных снарядов" +msgstr[1] "малых жезла волшебных снарядов" +msgstr[2] "малых жезлов волшебных снарядов" +msgstr[3] "малые жезлы волшебных снарядов" + +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." msgstr "" -"Эта книга описывает различные пути вызова нежити, чтобы сражаться за вас. " -"Нежить появляется на короткое время и рассыпается в прах." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"призывающая заклинание при активации. Эта палочка призывает волшебную " +"ракету." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" -msgstr[0] "«Основы техномансии»" -msgstr[1] "книги «Основы техномансии»" -msgstr[2] "книг «Основы техномансии»" -msgstr[3] "книги «Основы техномансии»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" +msgstr[0] "малый жезл волшебных снарядов" +msgstr[1] "малых жезла волшебных снарядов" +msgstr[2] "малых жезлов волшебных снарядов" +msgstr[3] "малые жезлы волшебных снарядов" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" +msgstr[0] "большой жезл волшебного снаряда" +msgstr[1] "больших жезла волшебного снаряда" +msgstr[2] "больших жезлов волшебного снаряда" +msgstr[3] "большие жезлы волшебного снаряда" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" +msgstr[0] "малый жезл огненного шара" +msgstr[1] "малых жезла огненного шара" +msgstr[2] "малых жезлов огненного шара" +msgstr[3] "малые жезлы огненного шара" + +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." msgstr "" -"Этот толстый справочник объясняет принципы манипулирования и усиления " -"различных форм материи и энергии." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"призывающая заклинание при активации. Эта палочка призывает волшебную " +"ракету." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" -msgstr[0] "Руководство по техномансии для дебилов" -msgstr[1] "Руководства по техномансии для дебилов" -msgstr[2] "Руководств по техномансии для дебилов" -msgstr[3] "Руководства по техномансии для дебилов" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" +msgstr[0] "меньший жезл огненного шара" +msgstr[1] "меньших жезла огненного шара" +msgstr[2] "меньших жезлов огненного шара" +msgstr[3] "меньшие жезлы огненного шара" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" +msgstr[0] "большой жезл огненного шара" +msgstr[1] "больших жезла огненного шара" +msgstr[2] "больших жезлов огненного шара" +msgstr[3] "большие жезлы огненного шара" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" +msgstr[0] "малый жезл луча маны" +msgstr[1] "малых жезла луча маны" +msgstr[2] "малых жезлов луча маны" +msgstr[3] "малые жезлы луча маны" + +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -"Яркий, полный диаграмм и мультяшных рисунков справочник для изучения " -"основных заклинаний техномансии не самыми одарёнными учениками." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"призывающая заклинание при активации. Эта палочка призывает луч маны." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" -msgstr[0] "«Техномансия и электромагнитный спектр»" -msgstr[1] "книги «Техномансия и электромагнитный спектр»" -msgstr[2] "книг «Техномансия и электромагнитный спектр»" -msgstr[3] "книги «Техномансия и электромагнитный спектр»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" +msgstr[0] "меньший жезл луча маны" +msgstr[1] "меньших жезла луча маны" +msgstr[2] "меньших жезлов луча маны" +msgstr[3] "меньшие жезлы луча маны" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" +msgstr[0] "большой жезл луча маны" +msgstr[1] "больших жезла луча маны" +msgstr[2] "больших жезлов луча маны" +msgstr[3] "большие жезлы луча маны" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" +msgstr[0] "малый жезл точечной вспышки" +msgstr[1] "малых жезла точечной вспышки" +msgstr[2] "малых жезлов точечной вспышки" +msgstr[3] "малые жезлы точечной вспышки" + +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -"Этот толстый лабораторный справочник полон информации о сочетании магии с " -"электромагнитным излучением." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"призывающая заклинание при активации. Эта палочка призывает точечную " +"вспышку." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" -msgstr[0] "«Геопространственные системы: Ложь линейности»" -msgstr[1] "книги «Геопространственные системы: Ложь линейности»" -msgstr[2] "книг «Геопространственные системы: Ложь линейности»" -msgstr[3] "книги «Геопространственные системы: Ложь линейности»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" +msgstr[0] "меньший жезл точечной вспышки" +msgstr[1] "меньших жезла точечной вспышки" +msgstr[2] "меньших жезлов точечной вспышки" +msgstr[3] "меньшие жезлы точечной вспышки" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" +msgstr[0] "большой жезл точечной вспышки" +msgstr[1] "больших жезла точечной вспышки" +msgstr[2] "больших жезлов точечной вспышки" +msgstr[3] "большие жезлы точечной вспышки" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" +msgstr[0] "малый жезл инеевого взрыва" +msgstr[1] "малых жезла инеевого взрыва" +msgstr[2] "малых жезлов инеевого взрыва" +msgstr[3] "малые жезлы инеевого взрыва" + +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -"Эта книга детально описывает, насколько пространство-время запутанные и " -"неевклидовые. В ней используется дюжина сменяющих друг друга разных систем " -"координат, из-за чего читать книгу непросто. Текст полон жаргонных слов, но " -"упорное изучение принесёт немного знания о порталах." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"призывающая заклинание при активации. Эта палочка создаёт инеевый взрыв." -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" -msgstr[0] "«Трансцендентность человеческого состояния»" -msgstr[1] "книги «Трансцендентность человеческого состояния»" -msgstr[2] "книг «Трансцендентность человеческого состояния»" -msgstr[3] "книги «Трансцендентность человеческого состояния»" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" +msgstr[0] "меньший жезл инеевого взрыва" +msgstr[1] "меньших жезла инеевого взрыва" +msgstr[2] "меньших жезлов инеевого взрыва" +msgstr[3] "меньшие жезлы инеевого взрыва" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "большой жезл инеевого взрыва" +msgstr[1] "больших жезла инеевого взрыва" +msgstr[2] "больших жезлов инеевого взрыва" +msgstr[3] "большие жезлы инеевого взрыва" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" +msgstr[0] "малый жезл конуса холода" +msgstr[1] "малых жезла конуса холода" +msgstr[2] "малых жезлов конуса холода" +msgstr[3] "малые жезлы конуса холода" + +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -"Человек — единственное самосовершенствующееся создание. Эта книга посвящена " -"разным заклинаниям, временно повышающим некоторые чувства в надежде отыскать" -" более постоянное решение." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"призывающая заклинание при активации. Эта палочка призывает конус холода." -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" -msgstr[0] "котел очищения" -msgstr[1] "котла очищения" -msgstr[2] "котлов очищения" -msgstr[3] "котлы очищения" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" +msgstr[0] "меньший жезл конуса холода" +msgstr[1] "меньших жезла конуса холода" +msgstr[2] "меньших жезлов конуса холода" +msgstr[3] "меньшие жезлы конуса холода" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" +msgstr[0] "больший жезл конуса холода" +msgstr[1] "больших жезла конуса холода" +msgstr[2] "больших жезлов конуса холода" +msgstr[3] "большие жезлы конуса холода" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" +msgstr[0] "одноразовый малый жезл волшебного снаряда" +msgstr[1] "одноразовых малых жезла волшебного снаряда" +msgstr[2] "одноразовых малых жезлов волшебного снаряда" +msgstr[3] "одноразовые малые жезлы волшебного снаряда" + +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -"Этот котел, сделанный из хитина демона-паука, кажется, поглощает свет. Он " -"вмещает 16 литров материала и поглощает яды из него. Он может иметь другие " -"свойства, которые требуют обнаружения." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"создающая заклинание при активации. Эта палочка посылает магический снаряд." -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" +msgstr[0] "одноразовый малый жезл волшебного снаряда" +msgstr[1] "одноразовых малых жезла волшебного снаряда" +msgstr[2] "одноразовых малых жезлов волшебного снаряда" +msgstr[3] "одноразовые малые жезлы волшебного снаряда" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" +msgstr[0] "одноразовый большой посох волшебных снарядов" +msgstr[1] "одноразовых больших посоха волшебных снарядов" +msgstr[2] "одноразовых больших посохов волшебных снарядов" +msgstr[3] "одноразовые большие посохи волшебных снарядов" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" +msgstr[0] "одноразовый меньший жезл огненного шара" +msgstr[1] "одноразовых меньших жезла огненного шара" +msgstr[2] "одноразовых меньших жезлов огненного шара" +msgstr[3] "одноразовые меньшие жезлы огненного шара" + +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -"Переносной вариант угольной кузни, магически усиленный и укреплённый хитином" -" демонического паука для переплавки магических металлов в подходящие формы." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"создающая заклинание при активации. Эта палочка посылает огненный шар." -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" -msgstr[0] "жаростойкий цемент" -msgstr[1] "жаростойкий цемент" -msgstr[2] "жаростойкий цемент" -msgstr[3] "жаростойкий цемент" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" +msgstr[0] "одноразовый малый посох огненного шара" +msgstr[1] "одноразовых малых посоха огненного шара" +msgstr[2] "одноразовых малых посохов огненного шара" +msgstr[3] "одноразовые малые посохи огненного шара" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" +msgstr[0] "одноразовый большой посох огненного шара " +msgstr[1] "одноразовых больших посоха огненного шара " +msgstr[2] "одноразовых больших посохов огненного шара " +msgstr[3] "одноразовые большие посохи огненного шара " + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" +msgstr[0] "одноразовый малый жезл луча маны" +msgstr[1] "одноразовых малых жезла луча маны" +msgstr[2] "одноразовых малых жезлов луча маны" +msgstr[3] "одноразовые малые жезлы луча маны" + +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -"Алхимическая смесь, готовая к применению в проекте, где может потребоваться " -"вынести температуру, близкую к жару драконьего пламени." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"создающая заклинание при активации. Эта палочка посылает луч маны." -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "броня булитта" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" +msgstr[0] "одноразовый малый посох луча маны" +msgstr[1] "одноразовых малых посоха луча маны" +msgstr[2] "одноразовых малых посохов луча маны" +msgstr[3] "одноразовые малые посохи луча маны" -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" -msgstr[0] "дубинища" -msgstr[1] "дубинищи" -msgstr[2] "дубинищей" -msgstr[3] "дубинищи" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" +msgstr[0] "одноразовый большой посох луча маны" +msgstr[1] "одноразовых больших посоха луча маны" +msgstr[2] "одноразовых больших посохов луча маны" +msgstr[3] "одноразовые большие посохи луча маны" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" +msgstr[0] "одноразовый малый жезл точечной вспышки" +msgstr[1] "одноразовых малых жезла точечной вспышки" +msgstr[2] "одноразовых малых жезлов точечной вспышки" +msgstr[3] "одноразовые малые жезлы точечной вспышки" + +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -"Толстая дубина с большой ручкой. Несмотря на то, что она очень тяжёлая, это " -"очень эффективное оружие в руках сильного противника." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"создающая заклинание при активации. Эта палочка создаёт точечную вспышку." -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" -msgstr[0] "деревянный трезубец" -msgstr[1] "деревянные трезубцы" -msgstr[2] "деревянных трезубцев" -msgstr[3] "деревянные трезубцы" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" +msgstr[0] "одноразовый меньший жезл точечной вспышки" +msgstr[1] "одноразовых меньших жезла точечной вспышки" +msgstr[2] "одноразовых меньших жезлов точечной вспышки" +msgstr[3] "одноразовые меньшие жезлы точечной вспышки" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" +msgstr[0] "одноразовый большой посох точечной вспышки" +msgstr[1] "одноразовых больших посоха точечной вспышки" +msgstr[2] "одноразовых больших посоха точечной вспышки" +msgstr[3] "одноразовые большие посохи точечной вспышки" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" +msgstr[0] "одноразовый малый жезл инеевого взрыва" +msgstr[1] "одноразовых малых жезла инеевого взрыва" +msgstr[2] "одноразовых малых жезлов инеевого взрыва" +msgstr[3] "одноразовые малые жезлы инеевого взрыва" + +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -"Деревянное оружие ближнего боя со строенный наконечником, скованным вручную." -" Можно использовать его для колющих атак в ближнем бою или как метательное " -"оружие, а в умелых руках оно может обезоружить противника." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"создающая заклинание при активации. Эта палочка создаёт инеевый взрыв." -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" -msgstr[0] "шипастый дротик" -msgstr[1] "шипастых дротика" -msgstr[2] "шипастых дротиков" -msgstr[3] "шипастые дротики" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" +msgstr[0] "одноразовый меньший жезл инеевого взрыва" +msgstr[1] "одноразовых меньших жезла инеевого взрыва" +msgstr[2] "одноразовых меньших жезлов инеевого взрыва" +msgstr[3] "одноразовые меньшие жезлы инеевого взрыва" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" +msgstr[0] "одноразовый большой посох инеевого взрыва" +msgstr[1] "одноразовых больших посоха инеевого взрыва" +msgstr[2] "одноразовых больших посохов инеевого взрыва" +msgstr[3] "одноразовые большие посохи инеевого взрыва" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" +msgstr[0] "одноразовый малый жезл конуса холода" +msgstr[1] "одноразовых малых жезла конуса холода" +msgstr[2] "одноразовых малых жезлов конуса холода" +msgstr[3] "одноразовые малые жезлы конуса холода" + +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -"Это оружие примерно метр длиной и заострено как стрела для большей точности." -" Наконечник джавелина покрыт опасно выглядящими колючками, которые могут " -"вызвать серьезное кровотечение." +"Тонкая деревянная палочка с отсеком для кристалла маны у основания, " +"создающая заклинание при активации. Эта палочка создаёт конус холода." -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "Оружие отладки, стреляет шипастыми дротиками." +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" +msgstr[0] "одноразовый меньший жезл конуса холода" +msgstr[1] "одноразовых меньших жезла конуса холода" +msgstr[2] "одноразовых меньших жезлов конуса холода" +msgstr[3] "одноразовые меньшие жезлы конуса холода" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" +msgstr[0] "одноразовый большой посох конуса холода" +msgstr[1] "одноразовых больших посоха конуса холода" +msgstr[2] "одноразовых больших посохов конуса холода" +msgstr[3] "одноразовые большие посохи конуса холода" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "складная орихалковая рама" @@ -258679,7 +258981,7 @@ msgstr[2] "складных орихалковых рам" msgstr[3] "складные орихалковые рамы" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." @@ -258687,8 +258989,8 @@ msgstr "" "Складная рама из орихалковых трубок. Не такая лёгкая, как алюминиевая, но " "значительно более прочная." -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "орихалковая рама" @@ -258697,14 +258999,18 @@ msgstr[2] "орихалковых рам" msgstr[3] "орихалковые рамы" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" "Рама из орихалка. Заметно прочнее стали, но соответственно заметно дороже." -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "броня булитта" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "демонический паук" @@ -258712,7 +259018,7 @@ msgstr[1] "демонических паука" msgstr[2] "демонических пауков" msgstr[3] "демонические пауки" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "демонический паучонок" @@ -258721,7 +259027,7 @@ msgstr[2] "демонических паучат" msgstr[3] "демонические паучата" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -258733,7 +259039,7 @@ msgstr "" " ничего похожего. Он быстрый, а с длинных клыков капает яд." #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -258745,7 +259051,7 @@ msgstr "" "ужасающими изогнутыми шипами, с которых на землю с шипением капает какая-то " "вязкая чёрная жидкость." -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "королева демонических пауков" @@ -258754,7 +259060,7 @@ msgstr[2] "королев демонических пауков" msgstr[3] "королевы демонических пауков" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -258766,19 +259072,19 @@ msgstr "" "огромное и отёкшее, в глазах горит проблеск злого разума, а между хитиновыми" " шипами пробегают магические разряды." -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "ужасное присутствие" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "противное присутствие" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "ужасающее присутствие" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "чёрный дракончик" @@ -258787,7 +259093,7 @@ msgstr[2] "чёрных дракончиков" msgstr[3] "чёрные дракончики" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " @@ -258797,7 +259103,7 @@ msgstr "" "рожки едва пробиваются из головы. Хотя он и очень молод, в его глазах уже " "заметен отблеск садизма." -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "молодой чёрный дракон" @@ -258806,7 +259112,7 @@ msgstr[2] "молодых чёрных драконов" msgstr[3] "молодые чёрные драконы" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -258820,7 +259126,7 @@ msgstr "" " воплощённое зло. Хотя этот дракон еще не вырос, он размером с взрослого " "быка." -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "взрослый чёрный дракон" @@ -258829,7 +259135,7 @@ msgstr[2] "взрослых чёрных драконов" msgstr[3] "взрослые чёрные драконы" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" @@ -258839,7 +259145,7 @@ msgstr "" "злобным зелёным светом. Его морда напоминает череп, а с кинжалоподобных " "клыков капает кислота." -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "Гоблин" @@ -258848,7 +259154,7 @@ msgstr[2] "Гоблинов" msgstr[3] "Гоблины" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" @@ -258858,7 +259164,7 @@ msgstr "" "поношенную одежду. Держит в руках дубинку, а по ухмылке видно, что он любит " "создавать проблемы и, вероятно, не откажется от драки." -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "Гоблин-пращник" @@ -258867,7 +259173,7 @@ msgstr[2] "Гоблинов-пращников" msgstr[3] "Гоблины-пращники" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " @@ -258877,7 +259183,7 @@ msgstr "" " как и оскорбления. Весьма склонен к насмешкам и изворотлив во многих " "отношениях." -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "Гоблин-вождь" @@ -258886,7 +259192,7 @@ msgstr[2] "Гоблинов-вождей" msgstr[3] "Гоблины-вожди" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " @@ -258896,7 +259202,7 @@ msgstr "" "помощью грубой силы и небольшой хитрости. Он стал намного сильнее, а его " "оружие приобрело слабый магический оттенок." -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "глиняный голем" @@ -258905,7 +259211,7 @@ msgstr[2] "глиняных големов" msgstr[3] "глиняные големы" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." @@ -258913,7 +259219,7 @@ msgstr "" "Большой человекоподобный голем из глины. У него странные пропорции, и он " "выглядит хрупким." -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "пластиковый голем" @@ -258922,7 +259228,7 @@ msgstr[2] "пластиковых големов" msgstr[3] "пластиковые големы" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -258935,7 +259241,7 @@ msgstr "" "доступности хобби по созданию големов, и пластиковые големы стали очень " "популярны." -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "каменный голем" @@ -258944,13 +259250,13 @@ msgstr[2] "каменных големов" msgstr[3] "каменные големы" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" "Большой человекоподобный голем из камня. Его кулаки похожи на две ракеты." -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "железный голем" @@ -258959,14 +259265,100 @@ msgstr[2] "железных големов" msgstr[3] "железные големы" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" "Большой человекоподобный голем из железа. Из его рта сочится ядовитый газ." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "ящеролюд-воин" @@ -258975,7 +259367,7 @@ msgstr[2] "ящеролюдов-воинов" msgstr[3] "ящеролюди-воины" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -258991,7 +259383,7 @@ msgstr "" "враждебны, хотя им нет дела до тех, кто не принадлежит к их группе, и они " "очень агрессивны, если их спровоцировать." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "ящеролюд-охотник" @@ -259000,7 +259392,7 @@ msgstr[2] "ящеролюдов-охотников" msgstr[3] "ящеролюды-охотники" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." @@ -259008,11 +259400,11 @@ msgstr "" "Охотник-ящеролюд размером поменьше воина, но столь же смертоносный со своей " "гибкостью и умением метать дротики в цель." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "Охотник швыряет в вас шипастым дротиком!" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "ящеролюд-шаман" @@ -259021,7 +259413,7 @@ msgstr[2] "ящеролюдов-шаманов" msgstr[3] "ящеролюды-шаманы" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -259036,7 +259428,7 @@ msgstr "" "далеко не все. Шаманы — друиды-заклинатели, использующие силы природы для " "борьбы с врагами и призывающий помощь при необходимости." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "ящеролюд-вождь" @@ -259045,7 +259437,7 @@ msgstr[2] "ящеролюдов-вождей" msgstr[3] "ящеролюды-вожди" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -259058,7 +259450,7 @@ msgstr "" "часто выглядит как кровавая, излишняя жесткость. Вождь крупнее и сильнее " "соплеменников и носит острый трезубец в дополнение к зубам и когтям." -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "крокодил" @@ -259067,7 +259459,7 @@ msgstr[2] "крокодилов" msgstr[3] "крокодилы" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." @@ -259075,7 +259467,7 @@ msgstr "" "Шаман-ящеролюд в прошлом и будущем, сейчас этот крупный крокодил утратил все" " человеческие черты и выглядит очень, очень опасным." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "совомедведь" @@ -259084,21 +259476,17 @@ msgstr[2] "совомедведей" msgstr[3] "совомедведи" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -"Ужасная сова-медведь, вероятно, является результатом генетических " -"экспериментов какого-то безумного волшебника. Эти существа обитают в густых " -"лесных районах умеренного климата, а также в подземных лабиринтах. Они — " -"хищники, агрессивные охотники, и все время злы. Они нападают на добычу в " -"поле зрения и будут сражаться до смерти." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "чёрная жижа" @@ -259107,7 +259495,7 @@ msgstr[2] "чёрной жижи" msgstr[3] "чёрная жижа" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." @@ -259116,12 +259504,12 @@ msgstr "" "слышите, как под ней тихо шипит земля." #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "Чёрная жижа обжигает %3$s кислотой!" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "крабгик" @@ -259130,7 +259518,7 @@ msgstr[2] "крабгиков" msgstr[3] "крабгики" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -259143,12 +259531,12 @@ msgstr "" " треугольными пластинками." #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "Крабгик пристально смотрит на %3$s!" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "совомедвежонок" @@ -259156,7 +259544,7 @@ msgstr[1] "совомедвежонка" msgstr[2] "совомедвежат" msgstr[3] "совомедвежата" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "булитт" @@ -259165,7 +259553,7 @@ msgstr[2] "булиттов" msgstr[3] "булитты" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -259179,7 +259567,7 @@ msgstr "" "людей и почти всю остальную плоть. Они тупые, злобные и всегда голодные, а " "ещё ничего не боятся." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "блуждающий огонёк" @@ -259188,7 +259576,7 @@ msgstr[2] "блуждающих огоньков" msgstr[3] "блуждающие огоньки" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" @@ -259197,7 +259585,7 @@ msgstr "" "Блуждающие огоньки могут быть жёлтыми, белыми, зелёными или синими. Их легко" " спутать со светом фонарей, особенно в туманных болотах, где они и обитают." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "тролль" @@ -259206,7 +259594,7 @@ msgstr[2] "троллей" msgstr[3] "тролли" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." @@ -259214,7 +259602,7 @@ msgstr "" "Чудовищный зеленокожий гуманоид. Тролли известны толстой шкурой и природной " "способностью к регенерации." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "кровопийца" @@ -259223,7 +259611,7 @@ msgstr[2] "кровопийц" msgstr[3] "кровопийцы" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." @@ -259231,7 +259619,7 @@ msgstr "" "Это ужасное летающее существо выглядит как нечто среднее между большой " "летучей мышью и огромнейшим комаром." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "крикун" @@ -259240,7 +259628,7 @@ msgstr[2] "крикунов" msgstr[3] "крикуны" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." @@ -259248,7 +259636,7 @@ msgstr "" "Крикун — это гриб размером с человека, который издаёт пронзительный визг, " "чтобы отогнать существ, которые его беспокоят." -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "лемур" @@ -259257,7 +259645,7 @@ msgstr[2] "лемуров" msgstr[3] "лемуры" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." @@ -259265,101 +259653,152 @@ msgstr "" "Лемур напоминает расплавленную массу плоти со слабо выраженной " "человекоподобной головой и туловищем." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "Да снизойдет благословение." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" "Я должен очистить землю сию от её проклятия. Поможешь ли ты иль станешь " "помехой для нашей миссии?" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "Здравствуй, ." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "Да снизойдет благословение. Да очистишь ты то, что нарушает покой." -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "Я должен очистить это место перед тем, как смогу продолжить." -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "А, опять ты." -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "А? *невнятно бормочет* …Ты ещё кто?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "Я занят, в чем дело?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "И оставить мою башню и мои исследования? Я так не думаю." -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "Ах, снова привет." -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "Ты тоже ищешь силу?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "Да, да… *помехи*. Разве не красиво?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "Я должен найти больше силы прежде, чем смогу уйти." -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "Маг для отладки" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "Я странствующий тестер для отладки тайной магии." -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "Маг-мастер" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "Я старый Магус. Пошел вон, щенок!" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "Техномант-ученик" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "Я ищу больше силы." -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "Целитель" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "Я очищу эту землю от проклятья." -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "Древние" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." @@ -259367,12 +259806,12 @@ msgstr "" "Чудотворцы забытых времен. Скрытые от мира до прихода Катаклизма, они " "преследуют собственные целы и безразличны к вам и вашим делам." -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "Серое Пламя" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." @@ -259380,15 +259819,15 @@ msgstr "" "Сборище проклятых катаклизмом. Они поклялись избавить мир от проклятья и не " "остановятся ни перед чем." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "Принести волшебную книгу" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "Куда я положил этот чертов…" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." @@ -259396,15 +259835,15 @@ msgstr "" "Кажется, я потерял мою книгу, «Том боевого мага». Наверное, украл " "бестолковый ученик. Принеси её мне." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "…Что? А, ты всё ещё здесь. Отправляйся искать книгу." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "Такой же бестолковый, как и прошлый ученик…" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -259415,46 +259854,46 @@ msgstr "" "поищет её где-то в городе, можешь начать с этого. О, и она называется «Том " "боевого мага». Ты ведь сможешь хотя бы прочесть название?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "Где моя книга?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "Наконец-то. Долго же ты ходишь." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "Бред какой то! Бесполезно! Пустая трата моего времени!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "Уф, за что я проклят встречать только бесполезных людей?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "Найти КБМ: Доп. аккумулятор" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "Больше мощи… больше мощи… БОЛЬШЕ МОЩИИИИИ!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" "Мне нужно больше энергии. Найди мне вместилище энергии, и я отдам тебе эту " "книгу." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "Мне плевать откуда ты это принесешь, если оно будет чистым." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "Ты тоже хочешь иметь больше силы, не так ли?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." @@ -259462,27 +259901,27 @@ msgstr "" "В магазинах электроники может быть то, что я ищу. Или можешь отломать его от" " чего-нибудь." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "Как успехи в поисках?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "Идеально. Больше силы… силы…" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "Я должен найти больше силы, эта отсрочка создаёт неудобство." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "Убить 50 зомби" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "Примешь ли ты вызов?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." @@ -259490,7 +259929,7 @@ msgstr "" "Мир скатился в хаос и смерть. Удали 50 проклятых из этого мира. Помоги с " "изгнанием этого проклятья, и ты будешь вознагражден." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." @@ -259498,13 +259937,13 @@ msgstr "" "Да снизойдет благословение. Я буду следить за твоими усилиями и судить как " "один из многих или немногих." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" "Ты не желаешь помочь с избавлением от проклятья? Возможно, ты его часть…" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." @@ -259512,33 +259951,33 @@ msgstr "" "Пробужденные скапливаются в поселениях и городах, чем ближе к центру, тем их" " больше." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" "Да снизойдет благословение. Ты один из немногих. Вместе мы будем творить " "великие дела." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "Обман есть царство проклятых. Ты меня разочаровываешь." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "Проклятье было слишком сильно?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "Убить 150 Зомби" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" "Тебе удалось доказать, что ты из немногих. Захочешь ли ты вновь быть с " "немногими?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." @@ -259546,22 +259985,21 @@ msgstr "" "Мы должны продолжить чистку. Удали 150 проклятых с этой земли, и тебя ждёт " "величие." -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -"Да снизойдет благословение. Ты настоящее свидетельство надежды для немногих." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "Понимаю. Возможно, однажды ты узришь путь назад." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "Пробужденные рыщут даже в темнейших углах. Ищи их и их уничтожай." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." @@ -259569,79 +260007,79 @@ msgstr "" "Да снизойдет благословение. Для нашего дела твоя ценность крайне велика. " "Быть может, ты и есть наше спасение." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "Вы добрались так далеко. Лишь чтобы в итоге пасть." -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "Проклятье земли сей заражает тех, кто не стремится к очищению." -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "маг" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "технолог" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "целитель" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "Эта земля не слушается ваших приказов сдвинуться." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "Яма углублена." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "Из ямы выступает больше обломков." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "Земля расступается перед вами." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "Эти камни рассыпаются в песок." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "Камень рассыпается в пыль." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "Вся пыль в воздухе оседает на землю." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "Грибок умирает." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" "Земля трясётся, неожиданно поднимается кусок неестественно гладкой каменной " "стены." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "Мёртвое дерево ожило." -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "Жизнь зарождается заново из мёртвой травы." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "Маг" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." @@ -259649,12 +260087,12 @@ msgstr "" "Старая как магия традиция. Маг специализируется на подчинении и изменении " "энергии вселенной по своему желанию." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "Анимист" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -259665,12 +260103,12 @@ msgstr "" "сосредоточения на гармонии и связи с окружающим миром. Это вовсе не значит, " "что анимисты пассивны: дикая природа довольно опасна." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "Кельвинист" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " @@ -259680,12 +260118,12 @@ msgstr "" "магию управлением температурой окружающего мира, что приводит к особенно " "мощным вспышкам леденящего холода." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "Повелитель бури" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " @@ -259695,12 +260133,12 @@ msgstr "" "с ветром и волнами, изменяющими облик мира. Благодаря мощной связи с этими " "стихиями они могут вызывать мощные силы." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "Техномант" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " @@ -259710,12 +260148,12 @@ msgstr "" "продвинутым пониманием фундаментального устройства вселенной. Они применяют " "технологию, чтобы усилить волшебство и наоборот." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "Повелитель земли" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -259726,12 +260164,12 @@ msgstr "" " и познавать их тайны. Для Мастера-повелителя земли заклинания так же вечны," " как и образующие их камни, а время измеряется в геологических эрах." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "Биомант" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -259743,12 +260181,12 @@ msgstr "" "способности мерзкими и отвратительными, но никто не ставит под сомнение их " "могущество и уж тем более гибкость в любой ситуации." -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "Друид" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -259759,43 +260197,43 @@ msgstr "" "принадлежит к этому миру так же, как и к человеческому." #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "Тронутый маной" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "Ваши лей-линии полнятся маной." #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "Щелчок силы исходит изнутри." #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "Поднялся к метафизическому." #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "Поднялась к метафизическому." #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "Магия в вас. Магия это вы." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "Затвердевание маны" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." @@ -259804,7 +260242,7 @@ msgstr "" " естественным образом получать кристаллизованную ману." #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." @@ -259812,12 +260250,12 @@ msgstr "" "Ваши руки светятся от энергии маны. Вы можете испускать самонаводящиеся " "заряды с кончиков пальцев." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "Незаметное заклинание" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " @@ -259827,12 +260265,12 @@ msgstr "" " лей-линии больше не прикованы к вашим рукам. Стеснение рук больше не виляет" " на шанс провала заклинания." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "Тихое заклинание" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." @@ -259840,33 +260278,33 @@ msgstr "" "Вам больше не нужен голос, чтобы диктовать свою волю миру. Стеснение рта " "больше не влияет на шанс провала заклинаний." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "Слабый" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "Ваше тело неестесвенно слабо. -2 Силы" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "Свечение маны" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" "Ваше тело излучает неиспользованную ману в виде тепла и света, придавая вам " "мягкое свечение." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "Сифон маны" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -259877,7 +260315,7 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." @@ -259885,128 +260323,128 @@ msgstr "" "Насилие наполняет ваши лей-линии. Когда вы попадает по врагу рукопашной " "атакой, есть шанс восполнить немного маны." -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "Вытягивание маны" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "Вихрь маны" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "Небольшая эффективность маны" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "Вы способны хранить в своём теле немного больше маны, чем обычно." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "Эффективность маны" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "Вы способны хранить в своём теле больше маны, чем обычно." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "Хорошая эффективность маны" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "Вы способны хранить в своём теле намного больше маны, чем обычно." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "Небольшая неэффективность маны" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "Вы способны хранить в своём теле немного меньше маны, чем обычно." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "Неэффективность маны" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "Вы способны хранить в своём теле меньше маны, чем обычно." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "Значительная неэффективность маны" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "Вы способны хранить в своём теле намного меньше маны, чем обычно." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "Небольшое восстановление маны" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "Ваше естественное восстановление маны немного быстрее обычного." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "Восстановление маны" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "Ваше естественное восстановление маны быстрее обычного." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "Хорошее восстановление маны" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "Ваше естественное восстановление маны намного быстрее обычного." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "Плохое восстановление маны" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "Ваше естественное восстановление маны немного медленнее обычного." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "Очень плохое восстановление маны" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "Ваше естественное восстановление маны медленнее обычного." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "Ужасное восстановление маны" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "Ваше естественное восстановление маны намного медленнее обычного." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "Небольшая чувствительность к мане" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." @@ -260014,12 +260452,12 @@ msgstr "" "Вы чувствуете ману в своём теле немного лучше обычного, что позволяет вам " "черпать больше внутренних запасов." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "Чувствительность к мане" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." @@ -260027,12 +260465,12 @@ msgstr "" "Вы чувствуете ману в своём теле лучше обычного, что позволяет вам черпать " "больше внутренних запасов." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "Хорошая чувствительность к мане" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." @@ -260040,38 +260478,38 @@ msgstr "" "Вы чувствуете ману в своём теле намного лучше обычного, что позволяет вам " "черпать больше внутренних запасов." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "Плохая чувствительность к мане" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "Вы плохо чувствуете ману в своём теле, что снижает доступные запасы." -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "Очень плохая чувствительность к мане" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "Ужасная чувствительность к мане" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "Отладочная заклинательная мутация" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "Даёт все отладочные заклинания на максимальном уровне." #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " @@ -260081,11 +260519,11 @@ msgstr "" "другие детали, и её можно соединять с другими рамами для увеличения размера " "транспортного средства." -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "Парящий диск" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "колесо маны" @@ -260094,24 +260532,24 @@ msgstr[2] "колес маны" msgstr[3] "колеса маны" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "Колонна энергии маны, позволяющая парящему диску двигаться." -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "рама из маны" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "Мана, принявшая форму, способная парить и переносить предметы." -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "энергия маны" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "базовая мощность маны" @@ -260120,15 +260558,15 @@ msgstr[2] "базовая мощность маны" msgstr[3] "базовая мощность маны" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "Если вы это видите, то это баг." -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "волшебная дверь" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." @@ -260136,34 +260574,54 @@ msgstr "" "Круг загадочных символов, вырезанных на металлической стене и привлекающих " "ваш взгляд своими неземными формами." -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "магическая лавка" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "крыша магической лавки" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "старый книжный магазин" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "Болото" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "башня волшебника" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "академия магии" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "Лагерь гоблинов" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Ручная установка бионик" @@ -267668,6 +268126,10 @@ msgstr "Активация / Изучение" msgid "Toggle safe fuel mod" msgstr "Переключить безопасный топливный режим" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "Переключить режим автозапуска" @@ -267860,10 +268322,6 @@ msgstr "Выбросить предмет на соседнюю клетку" msgid "View/Activate Bionics" msgstr "Просмотр и управление бионикой" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "Просмотр и управление мутациями" @@ -274174,11 +274632,9 @@ msgstr " БИОНИКА " msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" -"[%s] переназначить, [%s] " -"переключить вкладку, [%s] переключить режим экономии " -"топлива, [%s] переключить режим автозапуска." #: src/bionics_ui.cpp #, c-format @@ -274249,6 +274705,10 @@ msgstr "ВКЛ" msgid "(incapacitated)" msgstr "(без сознания)" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "(режим экономии топлива включён)" @@ -275136,6 +275596,10 @@ msgstr "У %s нет свободной руки, чтобы надеть это msgid "Can't wear more than one %s!" msgstr "Нельзя надевать на себя больше одного %s!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -291407,7 +291871,12 @@ msgid "Test which group?" msgstr "Какую группу протестировать?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -297565,8 +298034,14 @@ msgstr "" " NONE" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" -msgstr "ОШИБКА: неверная строка типа урона. Используется none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" +msgstr "" #: src/magic.cpp #, c-format @@ -302871,11 +303346,12 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "%1$s швыряет %2$s на землю!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" -msgstr "Зомби ударил ваш %1$s и нанёс %2$d урона…" +msgid "The %1$s kicks your %2$s for %3$d damage…" +msgstr "" #: src/monattack.cpp #, c-format @@ -307228,7 +307704,7 @@ msgstr "Настройки мира" msgid "Android" msgstr "Андроид" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -315303,6 +315779,11 @@ msgstr "Сеялка транспорта (%s) выключилась по пр msgid "Your %s winks out of existence." msgstr "Ваш %s растворяется прочь из бытия." +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -315444,6 +315925,16 @@ msgstr "Двигатель (%s) жужжит и не заводится." msgid "Your %s is not fast enough to keep up with the %s" msgstr "Ваш %s недостаточно быстрый, чтобы успевать за %s" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -316047,11 +316538,6 @@ msgstr "Вы тщательно сложили %s в компактное сос msgid "You let go of %s as you fold it." msgstr "Вы отпускаете %s в сложенном виде." -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "сложенный %s" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/sr.po b/lang/po/sr.po index d4fedbfb5f1d..597060daf2b6 100644 --- a/lang/po/sr.po +++ b/lang/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Timur Borisov, 2023\n" "Language-Team: Serbian (https://app.transifex.com/bn-team/teams/113585/sr/)\n" "MIME-Version: 1.0\n" @@ -7554,6 +7554,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10870,7 +10881,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11318,75 +11329,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11400,51 +11427,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12187,12 +12252,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12234,6 +12299,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12691,7 +12927,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12726,7 +12962,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12763,7 +12999,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12933,7 +13169,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13051,7 +13287,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13126,7 +13362,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13308,7 +13544,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14493,7 +14729,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14502,22 +14738,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14530,7 +14766,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14542,7 +14778,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14555,7 +14791,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14573,7 +14809,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14582,12 +14818,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14647,7 +14883,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15071,7 +15307,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19354,12 +19590,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19384,18 +19620,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19404,7 +19640,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19412,12 +19648,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19442,18 +19678,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19461,19 +19697,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19496,12 +19732,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20258,15 +20494,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20274,7 +20510,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20282,6 +20518,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27526,7 +27790,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27644,7 +27907,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27712,7 +27974,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27734,7 +27995,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27743,7 +28003,6 @@ msgstr[2] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27752,7 +28011,6 @@ msgstr[2] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27772,8 +28030,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -27807,7 +28064,6 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -27815,7 +28071,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27860,7 +28115,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27879,7 +28133,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -27925,7 +28178,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -27938,7 +28190,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -27947,7 +28198,6 @@ msgstr[2] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -27960,7 +28210,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28326,7 +28575,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28369,6 +28619,20 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28448,7 +28712,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28478,7 +28743,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28826,7 +29092,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -28937,8 +29202,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29192,7 +29458,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29220,7 +29486,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29348,7 +29614,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29409,7 +29674,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29736,7 +30000,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "lomi se staklo!" @@ -29823,7 +30087,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29850,7 +30114,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -30019,7 +30283,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30356,7 +30620,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30373,7 +30637,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30387,7 +30650,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30403,7 +30665,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30426,7 +30687,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30581,7 +30841,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31444,7 +31703,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -31862,7 +32120,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -32006,7 +32263,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -32032,7 +32288,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32581,9 +32836,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32618,7 +32885,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32635,7 +32901,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -33134,7 +33399,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -33150,7 +33414,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33167,7 +33430,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33235,7 +33497,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33274,7 +33535,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34765,7 +35025,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -35155,7 +35415,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "pesak" @@ -35412,7 +35671,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "beton" @@ -37057,7 +37315,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37695,7 +37952,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38729,7 +38985,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "" @@ -39651,7 +39906,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -39829,6 +40083,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -39896,7 +40186,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "TEKST ISPISAN USLED GREŠKE." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -39909,7 +40198,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "Mala količina konca; korisna za dopunjavanje pribora za šivenje." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -39922,7 +40210,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Žilice životinjskog porekla koje je moguće iskoristiti pri šivenju." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -39936,7 +40223,6 @@ msgstr "" "Izdržljiva vrpca biljnog porekla koju je moguće iskoristiti pri šivenju." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -39962,7 +40248,6 @@ msgid "A cleansing agent made into bars." msgstr "Higijensko sredstvo u upotrebnoj količini." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -39975,7 +40260,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Vrlo izdržljiva samolepljiva traka neograničenih metoda upotrebe." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -39988,7 +40272,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Komadići tankog papira korisni pri zavijanju cigareta." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -40041,7 +40324,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40311,7 +40593,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40362,7 +40643,6 @@ msgid "" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40604,7 +40884,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "" @@ -40641,7 +40920,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -40984,7 +41262,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -43153,7 +43430,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "" @@ -43168,7 +43444,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "cement" @@ -43187,7 +43462,6 @@ msgstr "" "reaguje sa vodom!" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "krečnjak" @@ -43203,7 +43477,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "živi kreč" @@ -43229,7 +43502,6 @@ msgstr "" " da nastane staklo. Pored toga je potreban za dobijanje cementa." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "" @@ -43258,7 +43530,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -43271,7 +43542,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -43286,7 +43556,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -43703,7 +43972,6 @@ msgstr "" "jednostavnih jedinjenja za gorivo raketa i vatrometa." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -43718,7 +43986,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -44127,7 +44394,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -44180,7 +44446,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -45900,7 +46165,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -45914,7 +46178,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -46069,7 +46332,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -46082,7 +46344,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -46095,7 +46356,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -46108,7 +46368,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -46121,7 +46380,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -46134,7 +46392,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -46147,7 +46404,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -46184,7 +46440,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "" @@ -46199,7 +46454,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -46212,7 +46466,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -46245,7 +46498,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -46261,7 +46513,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -46276,7 +46527,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -46292,7 +46542,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -46375,7 +46624,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -46388,7 +46636,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -46403,7 +46650,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -46419,7 +46665,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -46474,7 +46719,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -46490,7 +46734,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -46505,7 +46748,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -46518,7 +46760,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -46534,7 +46775,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -46599,7 +46839,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -46655,7 +46894,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -46668,7 +46906,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -46682,7 +46919,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -46695,7 +46931,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -46738,7 +46973,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -46751,7 +46985,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -46766,7 +46999,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -46778,9 +47010,7 @@ msgstr[2] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -46795,9 +47025,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -46812,7 +47040,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -46827,7 +47054,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -46842,7 +47068,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -46857,7 +47082,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -46879,7 +47103,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -46894,7 +47117,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -46909,7 +47131,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -46923,9 +47144,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -46941,7 +47160,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -46956,7 +47174,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" @@ -46964,7 +47181,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" @@ -46972,7 +47188,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -46988,7 +47203,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -47004,9 +47218,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -47022,9 +47234,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -47039,9 +47249,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -47056,9 +47264,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -47073,9 +47279,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -47090,9 +47294,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -47107,9 +47309,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -47154,7 +47354,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -47167,7 +47366,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -47180,7 +47378,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -47193,7 +47390,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -47208,7 +47404,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -47223,7 +47418,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -47238,7 +47432,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -47253,7 +47446,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -47268,7 +47460,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -47284,7 +47475,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -47300,7 +47490,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -47315,7 +47504,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -47363,7 +47551,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -47376,7 +47563,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -47391,7 +47577,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -47406,7 +47591,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -47434,7 +47618,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -47447,7 +47630,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -47476,7 +47658,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -47511,7 +47692,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -47527,7 +47707,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -47553,7 +47732,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -47566,7 +47744,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -47582,7 +47759,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -47598,7 +47774,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -47632,7 +47807,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -47647,7 +47821,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -47683,7 +47856,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -47697,7 +47869,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" @@ -47705,7 +47876,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -47720,7 +47890,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -47733,7 +47902,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -47746,7 +47914,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "malter" @@ -47759,7 +47926,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "Određena količina maltera, spremna za upotrebu u građevini." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -47784,7 +47950,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -47799,7 +47964,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -47814,7 +47978,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -47827,7 +47990,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -47840,7 +48002,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -47855,7 +48016,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -47868,7 +48028,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -47881,7 +48040,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -47894,7 +48052,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -47907,7 +48064,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -47920,7 +48076,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -47933,7 +48088,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -47946,7 +48100,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -47959,7 +48112,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -47972,7 +48124,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -47985,7 +48136,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -47998,7 +48148,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -48011,7 +48160,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -48024,7 +48172,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -48037,7 +48184,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -48053,7 +48199,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -48095,7 +48240,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -48108,7 +48252,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -48123,7 +48266,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -48136,7 +48278,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -48157,7 +48298,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -48211,7 +48351,7 @@ msgstr[2] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -48334,7 +48474,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -48364,7 +48503,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -48377,7 +48515,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -48390,7 +48527,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -48403,7 +48539,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -48419,7 +48554,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -48435,7 +48569,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -48451,7 +48584,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -48509,7 +48641,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -48534,7 +48665,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -48547,7 +48677,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -48693,7 +48822,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -48707,9 +48835,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -48723,9 +48849,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -48739,9 +48863,8 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" @@ -48749,7 +48872,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -48764,7 +48886,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -48781,7 +48902,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -48843,7 +48963,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -48851,7 +48970,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -48859,7 +48977,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -49062,7 +49179,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -49229,7 +49345,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -49244,7 +49359,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -49259,7 +49373,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -49274,7 +49387,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -49287,7 +49399,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -49302,7 +49413,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -49317,7 +49427,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -49332,7 +49441,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -49345,7 +49453,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -49358,7 +49465,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -49875,7 +49981,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -49888,7 +49993,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -49901,7 +50005,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -49914,7 +50017,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -49927,7 +50029,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -49940,7 +50041,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -49953,7 +50053,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -49966,7 +50065,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -49982,7 +50080,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -50661,7 +50758,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -50695,7 +50792,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -54569,7 +54666,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -55210,7 +55306,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -55224,7 +55321,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -55238,7 +55336,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -55253,7 +55352,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -55788,7 +55888,7 @@ msgstr[2] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -56050,7 +56150,7 @@ msgstr[2] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -56060,14 +56160,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -58831,7 +58931,7 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -67289,7 +67389,7 @@ msgstr[2] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -75679,8 +75779,8 @@ msgstr[2] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -75828,7 +75928,7 @@ msgstr[2] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -75849,7 +75949,7 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -77791,8 +77891,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -77801,7 +77900,6 @@ msgstr[2] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -78014,8 +78112,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -89695,6 +89792,21 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -94239,7 +94351,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -94254,7 +94365,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -94302,7 +94412,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -94338,7 +94447,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -94353,7 +94461,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -95018,7 +95125,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -95031,7 +95137,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -95044,7 +95149,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -95057,7 +95161,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -95139,7 +95242,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -95152,7 +95254,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -95167,7 +95268,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -95180,7 +95280,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -95193,7 +95292,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -95208,7 +95306,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -95247,7 +95344,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -95291,7 +95387,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -95334,7 +95429,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -95347,7 +95441,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -95361,7 +95454,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -95376,7 +95468,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -95391,7 +95482,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -95406,7 +95496,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -95424,7 +95513,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -95438,7 +95526,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -95452,7 +95539,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -95467,7 +95553,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -95482,7 +95567,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -95497,7 +95581,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -95847,7 +95930,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -95860,7 +95942,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "konac" @@ -97211,7 +97292,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -100378,7 +100459,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -100720,7 +100801,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -100906,7 +100987,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -101033,7 +101114,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -105482,7 +105563,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -105490,7 +105570,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -105505,7 +105584,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -105520,7 +105598,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -105535,7 +105612,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -105552,7 +105628,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -105568,7 +105643,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -105584,7 +105658,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -105600,7 +105673,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -109326,7 +109398,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -109341,7 +109412,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -109363,7 +109433,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -109377,7 +109446,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -109391,7 +109459,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -109500,7 +109567,6 @@ msgid "A roll of purple carpet." msgstr "Rolna ljubičastog tepiha." #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -109515,7 +109581,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -109528,7 +109593,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -109542,7 +109606,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -109558,7 +109621,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -109573,7 +109635,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -109588,7 +109649,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -109604,7 +109664,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "bizmut" @@ -109617,7 +109676,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "zlato" @@ -109633,7 +109691,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" @@ -109641,7 +109698,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -109658,7 +109714,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "olovo" @@ -109673,7 +109728,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -109688,7 +109742,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "srebro" @@ -109703,7 +109756,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -109716,7 +109768,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -109731,7 +109782,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -109744,7 +109794,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -109759,7 +109808,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -109772,7 +109820,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -109787,7 +109834,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -109827,7 +109873,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -109892,7 +109937,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -109966,7 +110010,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -109996,7 +110039,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -110012,8 +110054,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -110028,7 +110068,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -110043,7 +110082,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -110058,7 +110096,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -110073,7 +110110,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -110086,7 +110122,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -110099,7 +110134,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -110114,7 +110148,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -110128,8 +110161,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -110145,7 +110177,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -110161,7 +110192,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -110178,7 +110208,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -110194,7 +110223,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -110233,7 +110261,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -110251,7 +110278,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -110279,7 +110305,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -110294,7 +110319,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -110336,7 +110360,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -110353,7 +110376,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -110368,7 +110390,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -110383,7 +110404,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -110396,7 +110416,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -110409,7 +110428,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -110422,7 +110440,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -110438,7 +110455,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -110453,7 +110469,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -110480,7 +110495,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -110495,7 +110509,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -110585,7 +110598,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -110600,7 +110612,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -110629,7 +110640,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -110709,7 +110719,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -110724,7 +110733,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -110740,7 +110748,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -110756,7 +110763,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -110774,7 +110780,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -110791,7 +110796,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -110822,7 +110826,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -110837,7 +110840,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -110852,7 +110854,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -110879,7 +110880,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -110894,7 +110894,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -110910,7 +110909,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -110923,7 +110921,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -110978,7 +110975,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -110994,7 +110990,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -111007,7 +111002,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -111022,7 +111016,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -111109,7 +111102,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -111126,6 +111118,23 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -111134,7 +111143,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -111184,7 +111192,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -111218,7 +111225,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -111235,7 +111241,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -111251,7 +111256,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -111270,7 +111274,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -111299,7 +111302,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -111315,7 +111317,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -111331,7 +111332,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -111360,7 +111360,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -111375,9 +111374,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -111395,7 +111392,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -111412,7 +111408,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -111430,7 +111425,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -111464,7 +111458,6 @@ msgstr[1] "" msgstr[2] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -111497,7 +111490,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -111530,7 +111522,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -111547,7 +111538,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -111632,7 +111622,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -111647,7 +111636,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -111672,7 +111660,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -111688,7 +111675,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -111704,7 +111690,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -111722,7 +111707,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -111740,7 +111724,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -111756,7 +111739,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -111773,7 +111755,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -112807,7 +112788,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -112822,7 +112802,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -112839,7 +112818,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -112856,7 +112834,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -112872,7 +112849,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -112888,7 +112864,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -112904,7 +112879,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -112921,7 +112895,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -112961,7 +112934,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -112992,7 +112964,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -113031,7 +113002,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -113061,7 +113031,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -113076,7 +113045,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -113136,7 +113104,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -113151,7 +113118,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -113184,7 +113150,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -113197,7 +113162,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -113210,7 +113174,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -113225,7 +113188,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -113240,7 +113202,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -113255,7 +113216,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -113274,7 +113234,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -113303,7 +113262,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -113333,7 +113291,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -113348,7 +113305,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -113395,7 +113351,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -113410,7 +113365,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -113424,7 +113378,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -113439,7 +113392,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -113472,7 +113424,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -113488,7 +113439,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -113515,7 +113465,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -113531,7 +113480,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -113576,7 +113524,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -113599,7 +113546,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -113624,7 +113570,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -113634,7 +113579,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -113649,7 +113594,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -113661,7 +113605,7 @@ msgstr[2] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -113715,7 +113659,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -113760,7 +113703,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -113931,7 +113873,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -114078,7 +114019,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -114122,7 +114062,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -114178,7 +114117,7 @@ msgstr[2] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -114186,7 +114125,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -114202,7 +114141,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -114214,7 +114153,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -114287,7 +114225,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -114333,7 +114270,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -114364,7 +114300,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -114377,7 +114312,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -114405,7 +114339,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -114421,7 +114354,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -114455,7 +114387,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -114470,7 +114401,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -114486,7 +114416,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -114509,7 +114438,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -114524,7 +114452,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -114539,7 +114466,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -114554,7 +114480,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -114572,7 +114497,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -114609,7 +114533,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -114648,7 +114571,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -114663,7 +114585,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -114703,7 +114624,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -114847,7 +114767,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -114888,7 +114807,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -114909,7 +114827,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -114937,7 +114854,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -114993,7 +114909,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -115031,7 +114946,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -115132,7 +115046,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -115182,7 +115095,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -115354,7 +115266,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -115496,7 +115407,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -115512,7 +115422,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -115528,7 +115437,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -115541,7 +115449,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -115554,7 +115461,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -115569,7 +115475,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -115584,7 +115489,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -115599,7 +115503,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -115641,7 +115544,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -115657,7 +115559,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -115698,7 +115599,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -115727,7 +115627,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -115742,7 +115641,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -115819,7 +115717,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -115838,7 +115735,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -115866,7 +115762,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -115882,7 +115777,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -115898,7 +115792,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -115928,7 +115821,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -115943,7 +115835,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -115956,7 +115847,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -115971,7 +115861,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -115986,7 +115875,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -116041,7 +115929,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -116057,7 +115944,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -116075,7 +115961,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -116090,7 +115975,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -116105,7 +115989,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -116121,7 +116004,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -116138,7 +116020,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -116157,7 +116038,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -116175,7 +116055,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -116190,7 +116069,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -116219,7 +116097,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -116236,7 +116113,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -116254,7 +116130,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -116273,7 +116148,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -116292,7 +116166,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -116313,7 +116186,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -116331,7 +116203,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -116392,7 +116263,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -116407,7 +116277,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -116420,7 +116289,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -116491,7 +116359,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -116504,7 +116371,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -116517,7 +116383,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -116533,7 +116398,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -116546,7 +116410,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -116562,7 +116425,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -116577,7 +116439,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -116593,7 +116454,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -116617,7 +116477,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -116634,8 +116493,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -116667,8 +116525,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -116685,7 +116542,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -116698,7 +116554,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -116711,7 +116566,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -116755,7 +116609,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -116783,7 +116636,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -116824,7 +116676,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -116839,7 +116690,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -116878,7 +116728,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -116899,7 +116748,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -116945,7 +116793,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -116965,7 +116812,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -117019,7 +116865,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -117048,7 +116893,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -117083,7 +116927,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -117105,7 +116948,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -117134,7 +116976,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -117173,7 +117014,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -117217,7 +117057,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -117246,7 +117085,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -117353,7 +117191,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -117366,7 +117203,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -117375,7 +117211,6 @@ msgstr[2] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -117521,7 +117356,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -117536,7 +117370,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -117551,7 +117384,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -117566,7 +117398,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -117582,7 +117413,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -117595,7 +117425,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -117610,7 +117439,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -117626,7 +117454,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -117641,7 +117468,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -117655,7 +117481,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -117670,7 +117495,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -117686,7 +117510,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -117714,7 +117537,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -117745,7 +117567,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -117760,7 +117581,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -117775,7 +117595,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -117788,7 +117607,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -117803,7 +117621,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -117816,7 +117633,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -117832,7 +117648,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -117847,7 +117662,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -117864,7 +117678,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -117880,7 +117693,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -117895,7 +117707,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -117910,7 +117721,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -117925,7 +117735,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -117958,7 +117767,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -117973,7 +117781,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -117988,7 +117795,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -118006,7 +117812,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -118019,7 +117824,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -118034,7 +117838,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -118049,7 +117852,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -118065,7 +117867,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -118094,7 +117895,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -118109,7 +117909,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -118124,7 +117923,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -118140,7 +117938,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -118172,7 +117969,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -118187,7 +117983,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -118218,7 +118013,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -118233,7 +118027,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -118248,7 +118041,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -118263,7 +118055,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -118280,7 +118071,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -118295,7 +118085,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -118311,7 +118100,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -119639,6 +119427,18 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -119994,7 +119794,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -120442,6 +120241,14 @@ msgstr[2] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -120789,6 +120596,32 @@ msgstr[2] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -121635,13 +121468,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -121961,13 +121787,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -122521,7 +122340,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -122545,7 +122364,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -126693,7 +126512,7 @@ msgstr[2] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -126702,7 +126521,7 @@ msgstr[2] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -136714,9 +136533,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -137449,9 +137268,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -137467,9 +137286,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -137497,25 +137316,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -137535,9 +137354,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -143774,7 +143593,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -153441,17 +153260,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -154651,7 +154470,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -160341,9 +160160,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -169631,7 +169450,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -169999,7 +169817,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -170021,7 +169839,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -172774,7 +172591,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -172821,7 +172637,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -172946,6 +172762,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -172959,7 +172782,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -173000,7 +172823,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -182737,7 +182560,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -182816,6 +182639,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -184534,6 +184364,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -184603,7 +184451,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -184671,6 +184519,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -184816,7 +184668,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -185159,7 +185011,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -192072,7 +191923,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -192080,8 +191931,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -193055,9 +192906,9 @@ msgstr[2] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -193071,7 +192922,7 @@ msgstr[2] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -211046,74 +210897,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -211123,177 +210906,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -212516,116 +212128,135 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -212633,38 +212264,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -212672,95 +212304,105 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -212768,24 +212410,72 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -212793,25 +212483,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -212819,25 +212509,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -212845,7 +212535,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -212853,7 +212543,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -212863,7 +212553,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -212873,7 +212563,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -212883,7 +212573,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -212893,7 +212583,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -212902,7 +212592,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -212911,7 +212601,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -212921,7 +212611,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -212930,18 +212620,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -212950,7 +212640,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -212958,18 +212648,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -212979,7 +212669,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -212988,18 +212678,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -213007,25 +212697,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -213033,59 +212723,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -213094,7 +212816,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -213103,25 +212825,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -213133,7 +212855,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -213144,25 +212866,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -213172,7 +212894,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -213182,592 +212904,645 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -213779,245 +213554,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -214025,487 +213773,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -214513,321 +214281,365 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -214835,20 +214647,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -214856,74 +214668,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -214931,21 +214743,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -214953,105 +214765,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -215059,16 +214895,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -215076,74 +214912,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -215151,350 +214987,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -215502,7 +215338,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -215510,7 +215346,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -215518,49 +215354,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" @@ -215568,13 +215368,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" @@ -215582,13 +215382,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" @@ -215596,13 +215396,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -215610,59 +215410,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -215670,14 +215424,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" @@ -215685,13 +215439,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -215700,43 +215454,13 @@ msgstr[2] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -215744,14 +215468,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" @@ -215759,15 +215483,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -215775,47 +215498,47 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -215823,14 +215546,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -215839,13 +215562,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" @@ -215853,13 +215576,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" @@ -215867,13 +215590,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -215882,13 +215605,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -215897,13 +215620,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -215912,13 +215635,13 @@ msgstr[2] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -215926,38 +215649,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -215965,13 +215663,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" @@ -215979,14 +215677,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -215994,24 +215692,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -216019,13 +215717,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -216034,12 +215732,12 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -216048,12 +215746,12 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" @@ -216061,13 +215759,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" @@ -216075,13 +215773,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" @@ -216089,14 +215787,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" @@ -216104,14 +215802,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -216120,20 +215818,20 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -216142,13 +215840,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -216157,13 +215855,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -216172,13 +215870,13 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -216187,14 +215885,14 @@ msgstr[2] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" @@ -216202,14 +215900,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" @@ -216217,14 +215915,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" @@ -216232,14 +215930,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" @@ -216247,14 +215945,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -216263,12 +215961,12 @@ msgstr[2] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -216276,7 +215974,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -216284,13 +215982,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -216298,180 +215996,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" @@ -216479,13 +216010,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" @@ -216493,13 +216024,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" @@ -216507,13 +216038,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" @@ -216521,13 +216052,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" @@ -216535,13 +216066,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" @@ -216549,13 +216080,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" @@ -216563,13 +216094,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" @@ -216577,13 +216108,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" @@ -216591,14 +216122,143 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" @@ -216606,7 +216266,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -216615,7 +216275,7 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" @@ -216623,11 +216283,11 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" @@ -216635,12 +216295,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" @@ -216648,14 +216308,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" @@ -216663,12 +216323,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" @@ -216676,13 +216336,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" @@ -216690,14 +216350,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -216705,13 +216365,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -216719,13 +216379,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -216733,13 +216393,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -216747,4579 +216407,5205 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "" + +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "" + +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "" + +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" + +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" + +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." msgstr "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." msgstr "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" - -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" - -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -221327,14 +221613,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -221342,20 +221628,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -221363,7 +221653,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -221372,7 +221662,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -221380,7 +221670,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -221388,7 +221678,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -221396,19 +221686,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -221416,14 +221706,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -221431,7 +221721,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -221440,7 +221730,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -221448,14 +221738,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -221463,14 +221753,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -221478,14 +221768,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -221493,14 +221783,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -221508,13 +221798,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -221522,7 +221812,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -221530,7 +221820,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -221538,12 +221828,12 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -221551,13 +221841,94 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -221565,7 +221936,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -221576,7 +221947,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -221584,17 +221955,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -221602,7 +221973,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -221612,7 +221983,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -221620,7 +221991,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -221629,7 +222000,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -221637,13 +222008,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -221651,16 +222022,17 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -221668,19 +222040,19 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -221688,7 +222060,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -221697,19 +222069,19 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -221717,7 +222089,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -221726,7 +222098,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -221734,14 +222106,14 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -221749,13 +222121,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -221763,13 +222135,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -221777,13 +222149,13 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -221791,144 +222163,192 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -221936,222 +222356,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -222159,48 +222579,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -222208,12 +222628,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -222221,12 +222641,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -222234,103 +222654,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -222339,204 +222759,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -222544,24 +222964,24 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" @@ -222569,48 +222989,68 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -229106,6 +229546,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -229298,10 +229742,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -235324,6 +235764,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -235392,6 +235833,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -236248,6 +236693,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -251872,7 +252321,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -257850,7 +258304,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -263006,10 +263466,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -267213,7 +267674,7 @@ msgstr "" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -274814,6 +275275,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -274955,6 +275421,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -275547,11 +276023,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/tr.po b/lang/po/tr.po index 8d447d21db46..e15991e44198 100644 --- a/lang/po/tr.po +++ b/lang/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Raina Lute, 2024\n" "Language-Team: Turkish (https://app.transifex.com/bn-team/teams/113585/tr/)\n" "MIME-Version: 1.0\n" @@ -7542,6 +7542,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10857,7 +10868,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11305,75 +11316,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "" @@ -11387,51 +11414,89 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "" @@ -12174,12 +12239,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12221,6 +12286,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12678,7 +12914,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12713,7 +12949,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12750,7 +12986,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12919,7 +13155,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13037,7 +13273,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13112,7 +13348,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13294,7 +13530,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14479,7 +14715,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14488,22 +14724,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14516,7 +14752,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14528,7 +14764,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14541,7 +14777,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14559,7 +14795,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14568,12 +14804,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14633,7 +14869,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15056,7 +15292,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19311,12 +19547,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19341,18 +19577,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19361,7 +19597,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19369,12 +19605,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19399,18 +19635,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19418,19 +19654,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19453,12 +19689,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20215,15 +20451,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20231,7 +20467,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20239,6 +20475,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27456,7 +27720,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27573,7 +27836,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27639,7 +27901,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27660,7 +27921,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27668,7 +27928,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27676,7 +27935,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27695,8 +27953,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "" @@ -27729,14 +27986,12 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" msgstr[1] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27779,7 +28034,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27797,7 +28051,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -27842,7 +28095,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -27854,7 +28106,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -27862,7 +28113,6 @@ msgstr[1] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -27874,7 +28124,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28239,7 +28488,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28281,6 +28531,19 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28358,7 +28621,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28388,7 +28652,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28734,7 +28999,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -28843,8 +29107,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29093,7 +29358,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29121,7 +29386,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29244,7 +29509,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29304,7 +29568,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29627,7 +29890,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29714,7 +29977,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29741,7 +30004,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -29910,7 +30173,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30247,7 +30510,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30264,7 +30527,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30277,7 +30539,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30292,7 +30553,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30314,7 +30574,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30464,7 +30723,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31317,7 +31575,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "" @@ -31733,7 +31990,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -31875,7 +32131,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -31900,7 +32155,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32445,9 +32699,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32481,7 +32747,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32497,7 +32762,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -32995,7 +33259,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -33010,7 +33273,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33026,7 +33288,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33092,7 +33353,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33130,7 +33390,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34617,7 +34876,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -35003,7 +35262,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35259,7 +35517,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -36900,7 +37157,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37537,7 +37793,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38570,7 +38825,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "" @@ -39492,7 +39746,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -39669,6 +39922,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -39732,7 +40021,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "Bunu görüyorsanız bir hata oluştu." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "" @@ -39745,7 +40033,6 @@ msgstr "" "Dikiş setini tekrar doldurmak için kullanılabilecek az miktarda iplik." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -39757,7 +40044,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Bir cesetten sert bir tendon kesildi, iplik olarak kullanılabilir." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -39769,7 +40055,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "Bitkiden alınmış sağlam lif. İplik olarak kullanılabilir." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "" @@ -39792,7 +40077,6 @@ msgid "A cleansing agent made into bars." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -39804,7 +40088,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Oldukça güçlü bir banttan oluşan bir rulo. Çoğu yerde kullanılabilir." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -39817,7 +40100,6 @@ msgstr "" "Bunlar sigaranın yuvarlanması için tasarlanmış ince kağıt şeritleridir." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -39864,7 +40146,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40109,7 +40390,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40154,7 +40434,6 @@ msgid "" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40372,7 +40651,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "" @@ -40406,7 +40684,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -40735,7 +41012,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "" @@ -42766,7 +43042,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "" @@ -42780,7 +43055,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -42795,7 +43069,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -42810,7 +43083,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -42833,7 +43105,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "" @@ -42860,7 +43131,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" @@ -42872,7 +43142,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -42886,7 +43155,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -43261,7 +43529,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -43275,7 +43542,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -43642,7 +43908,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -43691,7 +43956,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -45277,7 +45541,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -45290,7 +45553,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -45430,7 +45692,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -45442,7 +45703,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -45454,7 +45714,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -45466,7 +45725,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -45478,7 +45736,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -45490,7 +45747,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -45502,7 +45758,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -45537,7 +45792,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "" @@ -45551,7 +45805,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "" @@ -45563,7 +45816,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -45594,7 +45846,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "" @@ -45609,7 +45860,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -45623,7 +45873,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -45638,7 +45887,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -45715,7 +45963,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -45727,7 +45974,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -45741,7 +45987,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -45756,7 +46001,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -45807,7 +46051,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -45822,7 +46065,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -45836,7 +46078,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -45848,7 +46089,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -45863,7 +46103,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -45924,7 +46163,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -45976,7 +46214,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -45988,7 +46225,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -46001,7 +46237,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -46013,7 +46248,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -46053,7 +46287,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -46065,7 +46298,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -46079,7 +46311,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -46090,9 +46321,7 @@ msgstr[1] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -46106,9 +46335,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -46122,7 +46349,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -46136,7 +46362,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -46150,7 +46375,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -46164,7 +46388,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -46185,7 +46408,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -46199,7 +46421,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -46213,7 +46434,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -46226,9 +46446,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -46243,7 +46461,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -46257,21 +46474,18 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -46286,7 +46500,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -46301,9 +46514,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -46318,9 +46529,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -46334,9 +46543,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -46350,9 +46557,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -46366,9 +46571,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -46382,9 +46585,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -46398,9 +46599,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -46442,7 +46641,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -46454,7 +46652,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -46466,7 +46663,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -46478,7 +46674,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -46492,7 +46687,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -46506,7 +46700,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -46520,7 +46713,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -46534,7 +46726,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -46548,7 +46739,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -46563,7 +46753,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -46578,7 +46767,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -46592,7 +46780,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "" @@ -46637,7 +46824,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -46649,7 +46835,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -46663,7 +46848,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -46677,7 +46861,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -46703,7 +46886,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -46715,7 +46897,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -46742,7 +46923,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "" @@ -46775,7 +46955,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -46790,7 +46969,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -46814,7 +46992,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -46826,7 +47003,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -46841,7 +47017,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -46856,7 +47031,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -46888,7 +47062,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -46902,7 +47075,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -46936,7 +47108,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -46949,14 +47120,12 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -46970,7 +47139,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -46982,7 +47150,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -46994,7 +47161,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -47006,7 +47172,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -47030,7 +47195,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -47044,7 +47208,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -47058,7 +47221,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -47070,7 +47232,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -47082,7 +47243,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -47096,7 +47256,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -47108,7 +47267,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -47120,7 +47278,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -47132,7 +47289,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -47144,7 +47300,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -47156,7 +47311,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -47168,7 +47322,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -47180,7 +47333,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -47192,7 +47344,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -47204,7 +47355,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -47216,7 +47366,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -47228,7 +47377,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -47240,7 +47388,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -47252,7 +47399,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -47264,7 +47410,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -47279,7 +47424,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -47318,7 +47462,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "" @@ -47330,7 +47473,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -47344,7 +47486,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -47356,7 +47497,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -47376,7 +47516,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -47427,7 +47566,7 @@ msgstr[1] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -47543,7 +47682,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "" @@ -47571,7 +47709,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -47583,7 +47720,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -47595,7 +47731,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -47607,7 +47742,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -47622,7 +47756,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -47637,7 +47770,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -47652,7 +47784,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -47706,7 +47837,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -47729,7 +47859,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -47741,7 +47870,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "" @@ -47876,7 +48004,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -47889,9 +48016,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -47904,9 +48029,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -47919,16 +48042,14 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -47942,7 +48063,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -47958,7 +48078,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -48016,21 +48135,18 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" msgstr[1] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -48220,7 +48336,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -48378,7 +48493,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -48392,7 +48506,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -48406,7 +48519,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -48420,7 +48532,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -48432,7 +48543,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -48446,7 +48556,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -48460,7 +48569,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -48474,7 +48582,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -48486,7 +48593,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -48498,7 +48604,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -48981,7 +49086,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -48993,7 +49097,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -49005,7 +49108,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -49017,7 +49119,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -49029,7 +49130,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -49041,7 +49141,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -49053,7 +49152,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -49065,7 +49163,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -49080,7 +49177,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -49725,7 +49821,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -49758,7 +49854,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -53303,7 +53399,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -53900,7 +53995,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "" @@ -53913,7 +54009,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -53926,7 +54023,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -53940,7 +54038,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -54439,7 +54538,7 @@ msgstr[1] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -54684,7 +54783,7 @@ msgstr[1] "" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -54694,14 +54793,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -57271,7 +57370,7 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -65124,7 +65223,7 @@ msgstr[1] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -73014,8 +73113,8 @@ msgstr[1] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -73144,7 +73243,7 @@ msgstr[1] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -73163,7 +73262,7 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -74955,8 +75054,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -74964,7 +75062,6 @@ msgstr[1] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -75162,8 +75259,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -85969,6 +86065,20 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -90166,7 +90276,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -90180,7 +90289,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -90226,7 +90334,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -90261,7 +90368,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -90275,7 +90381,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -90882,7 +90987,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -90894,7 +90998,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "" @@ -90906,7 +91009,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -90918,7 +91020,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -90999,7 +91100,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -91011,7 +91111,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -91025,7 +91124,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "" @@ -91037,7 +91135,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "" @@ -91049,7 +91146,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -91063,7 +91159,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "" @@ -91099,7 +91194,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -91142,7 +91236,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -91184,7 +91277,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "" @@ -91196,7 +91288,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "" @@ -91209,7 +91300,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "" @@ -91223,7 +91313,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -91237,7 +91326,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -91251,7 +91339,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "" @@ -91268,7 +91355,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -91281,7 +91367,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -91294,7 +91379,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -91308,7 +91392,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -91322,7 +91405,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -91336,7 +91418,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -91661,7 +91742,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -91673,7 +91753,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "" @@ -92929,7 +93008,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -95885,7 +95964,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -96208,7 +96287,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -96382,7 +96461,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -96500,7 +96579,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -100627,14 +100706,12 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" msgstr[1] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "" @@ -100648,7 +100725,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "" @@ -100662,7 +100738,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -100676,7 +100751,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -100692,7 +100766,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -100707,7 +100780,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -100722,7 +100794,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -100737,7 +100808,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -104195,7 +104265,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "" @@ -104209,7 +104278,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -104230,7 +104298,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -104243,7 +104310,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -104256,7 +104322,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -104358,7 +104423,6 @@ msgid "A roll of purple carpet." msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -104372,7 +104436,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -104384,7 +104447,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "" @@ -104397,7 +104459,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -104412,7 +104473,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -104426,7 +104486,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -104440,7 +104499,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -104455,7 +104513,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -104467,7 +104524,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -104482,14 +104538,12 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" msgstr[1] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -104505,7 +104559,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "" @@ -104519,7 +104572,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -104533,7 +104585,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "" @@ -104547,7 +104598,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -104559,7 +104609,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -104573,7 +104622,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -104585,7 +104633,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -104599,7 +104646,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -104611,7 +104657,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -104625,7 +104670,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -104661,7 +104705,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "" @@ -104722,7 +104765,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "" @@ -104791,7 +104833,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "" @@ -104819,7 +104860,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -104834,8 +104874,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "" @@ -104849,7 +104887,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -104863,7 +104900,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -104877,7 +104913,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -104891,7 +104926,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -104903,7 +104937,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "" @@ -104915,7 +104948,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "" @@ -104929,7 +104961,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -104942,8 +104973,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "" @@ -104958,7 +104988,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -104973,7 +105002,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -104989,7 +105017,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -105004,7 +105031,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -105040,7 +105066,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -105057,7 +105082,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -105083,7 +105107,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -105097,7 +105120,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -105137,7 +105159,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "" @@ -105153,7 +105174,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -105167,7 +105187,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -105181,7 +105200,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -105193,7 +105211,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -105205,7 +105222,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -105217,7 +105233,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -105232,7 +105247,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -105246,7 +105260,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -105272,7 +105285,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -105286,7 +105298,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -105372,7 +105383,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -105386,7 +105396,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "" @@ -105413,7 +105422,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -105489,7 +105497,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -105503,7 +105510,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -105518,7 +105524,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -105533,7 +105538,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -105550,7 +105554,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -105566,7 +105569,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -105595,7 +105597,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -105609,7 +105610,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -105623,7 +105623,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -105649,7 +105648,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -105663,7 +105661,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -105678,7 +105675,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -105690,7 +105686,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -105742,7 +105737,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -105757,7 +105751,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -105769,7 +105762,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -105783,7 +105775,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -105868,7 +105859,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -105884,6 +105874,22 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -105892,7 +105898,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -105941,7 +105946,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -105974,7 +105978,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -105990,7 +105993,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -106005,7 +106007,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -106023,7 +106024,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "" @@ -106051,7 +106051,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -106066,7 +106065,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -106081,7 +106079,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -106108,7 +106105,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -106122,9 +106118,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -106141,7 +106135,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -106157,7 +106150,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -106174,7 +106166,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -106206,7 +106197,6 @@ msgstr[0] "" msgstr[1] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "" @@ -106237,7 +106227,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -106268,7 +106257,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "" @@ -106284,7 +106272,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "" @@ -106366,7 +106353,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "" @@ -106380,7 +106366,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -106404,7 +106389,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -106419,7 +106403,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "" @@ -106434,7 +106417,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -106451,7 +106433,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "" @@ -106468,7 +106449,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -106483,7 +106463,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "" @@ -106499,7 +106478,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "" @@ -107476,7 +107454,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -107490,7 +107467,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -107506,7 +107482,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -107522,7 +107497,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -107537,7 +107511,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "" @@ -107552,7 +107525,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "" @@ -107567,7 +107539,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "" @@ -107583,7 +107554,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "" @@ -107622,7 +107592,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -107652,7 +107621,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -107689,7 +107657,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -107717,7 +107684,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -107731,7 +107697,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "" @@ -107787,7 +107752,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -107801,7 +107765,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -107832,7 +107795,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -107844,7 +107806,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -107856,7 +107817,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -107870,7 +107830,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -107884,7 +107843,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -107898,7 +107856,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -107916,7 +107873,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -107943,7 +107899,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -107971,7 +107926,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -107985,7 +107939,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -108028,7 +107981,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "" @@ -108042,7 +107994,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -108055,7 +108006,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -108069,7 +108019,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -108099,7 +108048,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -108114,7 +108062,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -108139,7 +108086,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -108154,7 +108100,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -108197,7 +108142,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -108219,7 +108163,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -108243,7 +108186,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "" @@ -108252,7 +108194,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -108267,7 +108209,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "" @@ -108278,7 +108219,7 @@ msgstr[1] "" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -108330,7 +108271,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -108373,7 +108313,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -108535,7 +108474,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -108673,7 +108611,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "" @@ -108715,7 +108652,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -108768,7 +108704,7 @@ msgstr[1] "" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -108776,7 +108712,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -108792,7 +108728,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -108804,7 +108740,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -108873,7 +108808,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -108916,7 +108850,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "" @@ -108945,7 +108878,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -108957,7 +108889,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "" @@ -108983,7 +108914,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -108998,7 +108928,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -109031,7 +108960,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -109045,7 +108973,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "" @@ -109060,7 +108987,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -109082,7 +109008,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -109096,7 +109021,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -109110,7 +109034,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -109124,7 +109047,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -109141,7 +109063,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -109177,7 +109098,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -109214,7 +109134,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -109228,7 +109147,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -109266,7 +109184,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -109402,7 +109319,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -109440,7 +109356,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "" @@ -109460,7 +109375,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -109486,7 +109400,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -109538,7 +109451,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -109575,7 +109487,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -109670,7 +109581,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "" @@ -109717,7 +109627,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -109877,7 +109786,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -110008,7 +109916,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -110023,7 +109930,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "" @@ -110038,7 +109944,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -110050,7 +109955,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -110062,7 +109966,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -110076,7 +109979,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -110090,7 +109992,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -110104,7 +110005,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -110143,7 +110043,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -110158,7 +110057,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -110196,7 +110094,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -110223,7 +110120,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -110237,7 +110133,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -110313,7 +110208,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -110331,7 +110225,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -110357,7 +110250,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -110372,7 +110264,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -110387,7 +110278,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -110415,7 +110305,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -110429,7 +110318,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -110441,7 +110329,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -110455,7 +110342,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -110469,7 +110355,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -110521,7 +110406,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -110536,7 +110420,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -110553,7 +110436,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -110567,7 +110449,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -110581,7 +110462,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -110596,7 +110476,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -110612,7 +110491,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -110630,7 +110508,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -110647,7 +110524,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -110661,7 +110537,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -110688,7 +110563,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -110704,7 +110578,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -110721,7 +110594,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -110739,7 +110611,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -110757,7 +110628,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -110777,7 +110647,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -110794,7 +110663,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -110851,7 +110719,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -110865,7 +110732,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -110877,7 +110743,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -110943,7 +110808,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -110955,7 +110819,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -110967,7 +110830,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -110982,7 +110844,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -110994,7 +110855,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -111009,7 +110869,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -111023,7 +110882,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -111038,7 +110896,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -111061,7 +110918,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "" @@ -111077,8 +110933,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -111108,8 +110963,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "" @@ -111125,7 +110979,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -111137,7 +110990,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -111149,7 +111001,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -111190,7 +111041,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -111216,7 +111066,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -111254,7 +111103,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -111268,7 +111116,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -111306,7 +111153,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -111326,7 +111172,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -111371,7 +111216,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -111390,7 +111234,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -111443,7 +111286,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -111471,7 +111313,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -111505,7 +111346,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -111526,7 +111366,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -111553,7 +111392,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -111590,7 +111428,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -111632,7 +111469,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -111659,7 +111495,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -111758,7 +111593,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -111770,7 +111604,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -111778,7 +111611,6 @@ msgstr[1] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -111915,7 +111747,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -111929,7 +111760,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -111943,7 +111773,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -111957,7 +111786,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -111972,7 +111800,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -111984,7 +111811,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -111998,7 +111824,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -112013,7 +111838,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -112027,7 +111851,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -112040,7 +111863,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -112054,7 +111876,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "" @@ -112069,7 +111890,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -112095,7 +111915,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "" @@ -112124,7 +111943,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -112138,7 +111956,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -112152,7 +111969,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -112164,7 +111980,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -112178,7 +111993,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -112190,7 +112004,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "" @@ -112205,7 +112018,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -112219,7 +112031,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -112235,7 +112046,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -112250,7 +112060,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "" @@ -112264,7 +112073,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -112278,7 +112086,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -112292,7 +112099,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -112323,7 +112129,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -112337,7 +112142,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "" @@ -112351,7 +112155,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -112368,7 +112171,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -112380,7 +112182,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -112394,7 +112195,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -112408,7 +112208,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -112423,7 +112222,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -112450,7 +112248,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -112464,7 +112261,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -112478,7 +112274,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -112493,7 +112288,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -112523,7 +112317,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "" @@ -112537,7 +112330,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -112566,7 +112358,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -112580,7 +112371,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -112594,7 +112384,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -112608,7 +112397,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -112624,7 +112412,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -112638,7 +112425,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -112653,7 +112439,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -113883,6 +113668,17 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -114212,7 +114008,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -114628,6 +114423,13 @@ msgstr[1] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -114951,6 +114753,30 @@ msgstr[1] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -115781,13 +115607,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -116107,13 +115926,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -116667,7 +116479,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -116691,7 +116503,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -120566,7 +120378,7 @@ msgstr[1] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -120574,7 +120386,7 @@ msgstr[1] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -130382,9 +130194,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -131117,9 +130929,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -131135,9 +130947,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -131165,25 +130977,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -131203,9 +131015,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -137442,7 +137254,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -147109,17 +146921,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -148319,7 +148131,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -154006,9 +153818,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -162919,7 +162731,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -163287,7 +163098,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -163309,7 +163120,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -166062,7 +165872,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -166109,7 +165918,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -166234,6 +166043,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -166247,7 +166063,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -166288,7 +166104,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -176025,7 +175841,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -176104,6 +175920,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -177822,6 +177645,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -177891,7 +177732,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -177959,6 +177800,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -178104,7 +177949,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -178447,7 +178292,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -185133,7 +184977,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -185141,8 +184985,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -186066,9 +185910,9 @@ msgstr[1] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -186081,7 +185925,7 @@ msgstr[1] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -203057,74 +202901,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -203134,177 +202910,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -204517,115 +204122,134 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -204633,157 +204257,213 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" msgstr[1] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "" + +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" msgstr[1] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -204791,25 +204471,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -204817,25 +204497,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -204843,7 +204523,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -204851,7 +204531,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -204861,7 +204541,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -204871,7 +204551,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -204881,7 +204561,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -204891,7 +204571,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -204900,7 +204580,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -204909,7 +204589,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -204919,7 +204599,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -204928,18 +204608,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -204948,7 +204628,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -204956,18 +204636,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -204977,7 +204657,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -204986,18 +204666,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -205005,25 +204685,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -205031,59 +204711,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205092,7 +204804,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -205101,25 +204813,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205131,7 +204843,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -205142,25 +204854,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205170,7 +204882,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -205180,588 +204892,640 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -205773,245 +205537,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -206019,808 +205756,872 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" msgstr[1] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -206828,20 +206629,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -206849,74 +206650,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -206924,21 +206725,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -206946,105 +206747,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -207052,16 +206877,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -207069,74 +206894,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -207144,357 +206969,357 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -207502,175 +207327,99 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -207678,113 +207427,84 @@ msgstr[1] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -207792,14 +207512,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -207807,39 +207527,39 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -207847,13 +207567,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -207861,13 +207581,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -207875,114 +207595,90 @@ msgstr[1] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -207990,12 +207686,12 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -208003,66 +207699,66 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -208070,19 +207766,19 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -208090,13 +207786,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -208104,13 +207800,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -208118,13 +207814,13 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -208132,70 +207828,70 @@ msgstr[1] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -208203,12 +207899,12 @@ msgstr[1] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -208216,313 +207912,278 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" msgstr[1] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -208531,4326 +208192,4913 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" msgstr[1] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." msgstr "" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "" -msgstr[1] "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" -msgstr[1] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" msgstr "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" - -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" - -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." msgstr "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" - -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." msgstr "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" msgstr[0] "" msgstr[1] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." msgstr "" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." msgstr "" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." msgstr "" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" msgstr "" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." msgstr "" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." msgstr "" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"A small gold skeleton key. You can activate it to unlock locked things." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." msgstr "" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "" -msgstr[1] "" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "" +msgstr[1] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" msgstr[1] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -212859,7 +213107,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -212867,14 +213115,14 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" msgstr[1] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -212882,40 +213130,40 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" msgstr[1] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -212924,83 +213172,83 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" msgstr[1] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" msgstr[1] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" msgstr[1] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" msgstr[1] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -213008,39 +213256,115 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" msgstr[1] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" msgstr[1] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -213051,31 +213375,31 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -213085,14 +213409,14 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" msgstr[1] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -213101,62 +213425,63 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" msgstr[1] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" msgstr[1] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" msgstr[1] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" msgstr[1] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -213165,25 +213490,25 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" msgstr[1] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" msgstr[1] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -213192,204 +213517,249 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" msgstr[1] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" msgstr[1] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" msgstr[1] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" msgstr[1] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" msgstr[1] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -213397,222 +213767,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -213620,48 +213990,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -213669,12 +214039,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -213682,12 +214052,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -213695,103 +214065,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -213800,276 +214170,296 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" msgstr[1] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" msgstr[1] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "" @@ -220365,6 +220755,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -220557,10 +220951,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -226557,6 +226947,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -226625,6 +227016,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -227467,6 +227862,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -243050,7 +243449,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -249016,7 +249420,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -254159,10 +254569,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -258354,7 +258765,7 @@ msgstr "" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -265938,6 +266349,11 @@ msgstr "" msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -266079,6 +266495,16 @@ msgstr "" msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -266671,11 +267097,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/uk.po b/lang/po/uk.po index 33addb220e3b..674f59cb0283 100644 --- a/lang/po/uk.po +++ b/lang/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Ukrainian (https://app.transifex.com/bn-team/teams/113585/uk/)\n" "MIME-Version: 1.0\n" @@ -7591,6 +7591,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10912,7 +10923,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11360,75 +11371,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "БОЄПРИПАСИ" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "ЗБРОЯ" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "ІНСТРУМЕНТИ" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "ОДЯГ" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "ЇЖА" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "ПРЕПАРАТИ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "КНИГИ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "МАПИ" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "МУТАГЕНИ" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "ДЕТАЛІ МАШИН" @@ -11442,51 +11469,89 @@ msgstr "ДЕТАЛІ МАШИН" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "ІНШЕ" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "ПАЛИВО" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "НАСІННЯ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "ХІМІКАТИ" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "ЗАПЧАСТИНИ" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "КАМІННЯ" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "МАПИ" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "НАДЯГНУТІ РЕЧІ" @@ -12231,12 +12296,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12278,6 +12343,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12735,7 +12971,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12770,7 +13006,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12807,7 +13043,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12978,7 +13214,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13096,7 +13332,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13171,7 +13407,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13353,7 +13589,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14538,7 +14774,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14547,22 +14783,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14575,7 +14811,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14587,7 +14823,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14600,7 +14836,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14618,7 +14854,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14627,12 +14863,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14692,7 +14928,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15117,7 +15353,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19418,12 +19654,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19448,18 +19684,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19468,7 +19704,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19476,12 +19712,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19506,18 +19742,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19525,19 +19761,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19560,12 +19796,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20322,15 +20558,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20338,7 +20574,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20346,6 +20582,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27617,7 +27881,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27736,7 +27999,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27806,7 +28068,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27829,7 +28090,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27839,7 +28099,6 @@ msgstr[3] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27849,7 +28108,6 @@ msgstr[3] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27870,8 +28128,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "ведмежий капкан" @@ -27906,7 +28163,6 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -27915,7 +28171,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27962,7 +28217,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27982,7 +28236,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -28029,7 +28282,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -28043,7 +28295,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -28053,7 +28304,6 @@ msgstr[3] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -28067,7 +28317,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28434,7 +28683,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28478,6 +28728,21 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28559,7 +28824,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28589,7 +28855,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28939,7 +29206,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -29052,8 +29318,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29312,7 +29579,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29340,7 +29607,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29473,7 +29740,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29535,7 +29801,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29866,7 +30131,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29953,7 +30218,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29980,7 +30245,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -30149,7 +30414,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30486,7 +30751,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30503,7 +30768,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30518,7 +30782,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30535,7 +30798,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30559,7 +30821,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30719,7 +30980,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31592,7 +31852,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "водоочисник" @@ -32012,7 +32271,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -32158,7 +32416,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -32185,7 +32442,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32738,9 +32994,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32776,7 +33044,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32794,7 +33061,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -33294,7 +33560,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -33311,7 +33576,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33331,7 +33595,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33401,7 +33664,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33441,7 +33703,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34936,7 +35197,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -35333,7 +35594,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35591,7 +35851,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -37240,7 +37499,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37879,7 +38137,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38914,7 +39171,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "суцільний камінь" @@ -39839,7 +40095,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -40018,6 +40273,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -40093,7 +40384,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ЯКЩО ВИ ЦЕ БАЧИТЕ, ТО ЦЕ ПРОГРАМНА ПОМИЛКА." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "нитка" @@ -40109,7 +40399,6 @@ msgstr "" "набору." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -40123,7 +40412,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Міцне сухожилля, що може бути використане як нитка." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -40137,7 +40425,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "Міцні тонкі рослинні волокна, можуть слугувати за нитки." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "пряжа" @@ -40166,7 +40453,6 @@ msgid "A cleansing agent made into bars." msgstr "Миючий засіб, у формі брусків." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -40180,7 +40466,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Моток армованої клейкої стрічки. Має безліч використань." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -40194,7 +40479,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Це тонкі паперові смужки для скручування цигарок." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -40252,7 +40536,6 @@ msgstr[2] "водяниста плутонієва суспензія" msgstr[3] "водяниста плутонієва суспензія" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40554,7 +40837,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40614,7 +40896,6 @@ msgstr "" "видалення забруднень з повітря чи води." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40875,7 +41156,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "трут" @@ -40915,7 +41195,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -41272,7 +41551,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "УДЖ" @@ -43579,7 +43857,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "глиба сірки" @@ -43595,7 +43872,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -43612,7 +43888,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -43629,7 +43904,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -43654,7 +43928,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "ґрунт" @@ -43685,7 +43958,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "кам'яна сіль" @@ -43699,7 +43971,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "Пригоршня кристалів кам'яної соли. Можна очистити до кухонної солі." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -43715,7 +43986,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -44152,7 +44422,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -44168,7 +44437,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -44594,7 +44862,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -44651,7 +44918,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -46505,7 +46771,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -46520,7 +46785,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -46690,7 +46954,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -46704,7 +46967,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -46718,7 +46980,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -46732,7 +46993,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -46746,7 +47006,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -46760,7 +47019,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -46774,7 +47032,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -46813,7 +47070,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "сталевий ланцюг" @@ -46829,7 +47085,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "шматок хітину" @@ -46843,7 +47098,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -46878,7 +47132,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "шматок біосиліфікованого хітину" @@ -46895,7 +47148,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -46911,7 +47163,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -46928,7 +47179,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -47020,7 +47270,6 @@ msgstr "" "викопні рештки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -47034,7 +47283,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -47050,7 +47298,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -47067,7 +47314,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -47126,7 +47372,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -47143,7 +47388,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -47159,7 +47403,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -47173,7 +47416,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -47190,7 +47432,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -47259,7 +47500,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -47319,7 +47559,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -47333,7 +47572,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -47348,7 +47586,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -47362,7 +47599,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -47408,7 +47644,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -47422,7 +47657,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -47438,7 +47672,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -47451,9 +47684,7 @@ msgstr[3] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -47469,9 +47700,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -47487,7 +47716,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -47503,7 +47731,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -47519,7 +47746,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -47535,7 +47761,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -47558,7 +47783,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -47574,7 +47798,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -47590,7 +47813,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -47605,9 +47827,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -47624,7 +47844,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -47640,7 +47859,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" @@ -47649,7 +47867,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" @@ -47658,7 +47875,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -47675,7 +47891,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -47692,9 +47907,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -47711,9 +47924,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -47729,9 +47940,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -47747,9 +47956,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -47765,9 +47972,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -47783,9 +47988,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -47801,9 +48004,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -47851,7 +48052,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -47865,7 +48065,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -47879,7 +48078,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -47893,7 +48091,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -47909,7 +48106,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -47925,7 +48121,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -47941,7 +48136,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -47957,7 +48151,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -47973,7 +48166,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -47990,7 +48182,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -48007,7 +48198,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -48023,7 +48213,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "перегоріла біоніка" @@ -48074,7 +48263,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -48088,7 +48276,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -48104,7 +48291,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -48120,7 +48306,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -48150,7 +48335,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -48164,7 +48348,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -48195,7 +48378,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "ганчірка" @@ -48232,7 +48414,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -48249,7 +48430,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -48277,7 +48457,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -48291,7 +48470,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -48308,7 +48486,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -48325,7 +48502,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -48361,7 +48537,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -48377,7 +48552,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -48415,7 +48589,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -48430,7 +48603,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" @@ -48439,7 +48611,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -48455,7 +48626,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -48469,7 +48639,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -48483,7 +48652,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -48497,7 +48665,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -48523,7 +48690,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -48539,7 +48705,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -48555,7 +48720,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -48569,7 +48733,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -48583,7 +48746,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -48599,7 +48761,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -48613,7 +48774,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -48627,7 +48787,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -48641,7 +48800,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -48655,7 +48813,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -48669,7 +48826,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -48683,7 +48839,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -48697,7 +48852,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -48711,7 +48865,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -48725,7 +48878,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -48739,7 +48891,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -48753,7 +48904,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -48767,7 +48917,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -48781,7 +48930,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -48795,7 +48943,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -48812,7 +48959,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -48857,7 +49003,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "подушка" @@ -48871,7 +49016,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Подушка, на яку можна покласти голову під час сну." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -48887,7 +49031,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -48901,7 +49044,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -48923,7 +49065,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -48980,7 +49121,7 @@ msgstr[3] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -49110,7 +49251,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "кредитка" @@ -49142,7 +49282,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -49156,7 +49295,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Ця карта дає вам невеличку знижку при купівлі палива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -49170,7 +49308,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Ця карта дає вам гарну знижку при купівлі палива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -49184,7 +49321,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "Ця карта дає вам чудову знижку при купівлі палива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -49201,7 +49337,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -49218,7 +49353,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -49235,7 +49369,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -49297,7 +49430,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -49324,7 +49456,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -49338,7 +49469,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "пластиковий квітковий горщик" @@ -49495,7 +49625,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -49510,9 +49639,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -49527,9 +49654,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -49544,9 +49669,8 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" @@ -49555,7 +49679,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -49571,7 +49694,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -49589,7 +49711,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -49655,7 +49776,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -49664,7 +49784,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -49673,7 +49792,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -49887,7 +50005,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -50063,7 +50180,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -50079,7 +50195,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -50095,7 +50210,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -50111,7 +50225,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -50125,7 +50238,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -50141,7 +50253,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -50157,7 +50268,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -50173,7 +50283,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -50187,7 +50296,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -50201,7 +50309,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -50752,7 +50859,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -50766,7 +50872,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -50780,7 +50885,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -50794,7 +50898,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -50808,7 +50911,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -50822,7 +50924,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -50836,7 +50937,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -50850,7 +50950,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -50867,7 +50966,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -51582,7 +51680,7 @@ msgstr[3] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -51617,7 +51715,7 @@ msgstr[3] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -55704,7 +55802,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -56387,7 +56484,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "колчан" @@ -56402,7 +56500,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -56417,7 +56516,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -56433,7 +56533,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -57006,7 +57107,7 @@ msgstr[3] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -57285,7 +57386,7 @@ msgstr[3] "шкіряний ремінь" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -57295,14 +57396,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -60260,7 +60361,7 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -69329,7 +69430,7 @@ msgstr[3] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -78237,8 +78338,8 @@ msgstr[3] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -78405,7 +78506,7 @@ msgstr[3] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -78428,7 +78529,7 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -80522,8 +80623,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -80533,7 +80633,6 @@ msgstr[3] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -80761,8 +80860,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -93328,6 +93426,22 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -98219,7 +98333,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -98235,7 +98348,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -98285,7 +98397,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -98322,7 +98433,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -98338,7 +98448,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -99053,7 +99162,6 @@ msgstr[2] "звичайних каструль" msgstr[3] "звичайна каструля" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -99067,7 +99175,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "керамічна миска" @@ -99081,7 +99188,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -99095,7 +99201,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -99178,7 +99283,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -99192,7 +99296,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -99208,7 +99311,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "олов'яна миска" @@ -99222,7 +99324,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "склянка" @@ -99236,7 +99337,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -99252,7 +99352,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "скляна миска" @@ -99294,7 +99393,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -99339,7 +99437,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -99383,7 +99480,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "каструля" @@ -99397,7 +99493,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "чавунна каструля" @@ -99412,7 +99507,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "мідна каструля" @@ -99428,7 +99522,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -99444,7 +99537,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -99460,7 +99552,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "каструля для консервації" @@ -99484,7 +99575,6 @@ msgstr "" " кришки." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -99499,7 +99589,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -99514,7 +99603,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -99530,7 +99618,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -99546,7 +99633,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -99562,7 +99648,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -99939,7 +100024,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -99953,7 +100037,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "довга шворка" @@ -101399,7 +101482,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -104777,7 +104860,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -105138,7 +105221,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -105336,7 +105419,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -105472,7 +105555,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -110243,7 +110326,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -110252,7 +110334,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "ніж м'ясника" @@ -110268,7 +110349,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "ніж для стейка" @@ -110284,7 +110364,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -110300,7 +110379,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -110318,7 +110396,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -110335,7 +110412,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -110352,7 +110428,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -110369,7 +110444,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -114336,7 +114410,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "уламок скла" @@ -114352,7 +114425,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -114375,7 +114447,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -114390,7 +114461,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -114405,7 +114475,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -114521,7 +114590,6 @@ msgid "A roll of purple carpet." msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -114537,7 +114605,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -114551,7 +114618,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "труба" @@ -114566,7 +114632,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -114583,7 +114648,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -114599,7 +114663,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -114615,7 +114678,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -114632,7 +114694,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -114646,7 +114707,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -114663,7 +114723,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" @@ -114672,7 +114731,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -114690,7 +114748,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "свинець" @@ -114708,7 +114765,6 @@ msgstr "" "пластичності, він має широке застосування, включно із виробництвом набоїв." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -114724,7 +114780,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "срібло" @@ -114740,7 +114795,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -114754,7 +114808,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -114770,7 +114823,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -114784,7 +114836,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -114800,7 +114851,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -114814,7 +114864,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -114830,7 +114879,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -114874,7 +114922,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "керамічний уламок" @@ -114943,7 +114990,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "гострий камінь" @@ -115024,7 +115070,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "шматок пластмаси" @@ -115056,7 +115101,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -115073,8 +115117,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "пластиковий лист" @@ -115090,7 +115132,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -115106,7 +115147,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -115122,7 +115162,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -115138,7 +115177,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -115152,7 +115190,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "товстий дрючок" @@ -115166,7 +115203,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "довга ломака" @@ -115182,7 +115218,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -115197,8 +115232,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "дошка" @@ -115215,7 +115249,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -115232,7 +115265,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -115250,7 +115282,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -115267,7 +115298,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -115309,7 +115339,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -115328,7 +115357,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -115358,7 +115386,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -115374,7 +115401,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -115418,7 +115444,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "вугільний водоочисник" @@ -115436,7 +115461,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -115452,7 +115476,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -115468,7 +115491,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -115482,7 +115504,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -115496,7 +115517,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -115510,7 +115530,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -115527,7 +115546,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -115543,7 +115561,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -115571,7 +115588,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -115587,7 +115603,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -115681,7 +115696,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -115697,7 +115711,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "бензиновий примус" @@ -115731,7 +115744,6 @@ msgstr "" "їжі. Може бути використана лише один раз." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -115815,7 +115827,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -115831,7 +115842,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -115848,7 +115858,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -115865,7 +115874,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -115884,7 +115892,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -115902,7 +115909,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -115939,7 +115945,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -115955,7 +115960,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -115971,7 +115975,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -115999,7 +116002,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -116015,7 +116017,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -116032,7 +116033,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -116046,7 +116046,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -116104,7 +116103,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -116121,7 +116119,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -116135,7 +116132,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -116151,7 +116147,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -116240,7 +116235,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -116258,6 +116252,24 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -116266,7 +116278,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -116317,7 +116328,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -116352,7 +116362,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -116370,7 +116379,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -116387,7 +116395,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -116407,7 +116414,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "сотовий телефон" @@ -116441,7 +116447,6 @@ msgstr "" "його, щоб включити спалах. Також у ньому є годинник із будильником." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -116458,7 +116463,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -116475,7 +116479,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -116506,7 +116509,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -116522,9 +116524,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -116543,7 +116543,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -116561,7 +116560,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -116580,7 +116578,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -116616,7 +116613,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "mp3-плеєр (вимк)" @@ -116651,7 +116647,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -116686,7 +116681,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "портативна ігрова приставка" @@ -116704,7 +116698,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "смартфон" @@ -116792,7 +116785,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "вібратор" @@ -116808,7 +116800,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -116834,7 +116825,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -116851,7 +116841,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "ломик" @@ -116868,7 +116857,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -116887,7 +116875,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "саморобна відмичка" @@ -116906,7 +116893,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -116923,7 +116909,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "саморобний ломик" @@ -116941,7 +116926,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "слюсарні відмички" @@ -118032,7 +118016,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -118048,7 +118031,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -118066,7 +118048,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -118084,7 +118065,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -118101,7 +118081,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "запальничка" @@ -118118,7 +118097,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "збільшувальне скло" @@ -118137,7 +118115,6 @@ msgstr "" "вогню у сонячні дні." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "коробок сірників" @@ -118155,7 +118132,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "запальничка багаторазова" @@ -118196,7 +118172,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -118228,7 +118203,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -118269,7 +118243,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -118301,7 +118274,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -118317,7 +118289,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "пожежний багор" @@ -118381,7 +118352,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -118397,7 +118367,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -118432,7 +118401,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -118446,7 +118414,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -118460,7 +118427,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -118476,7 +118442,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -118492,7 +118457,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -118508,7 +118472,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -118528,7 +118491,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -118559,7 +118521,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -118591,7 +118552,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -118607,7 +118567,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -118658,7 +118617,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "палиця-копачка" @@ -118674,7 +118632,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -118689,7 +118646,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -118705,7 +118661,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -118741,7 +118696,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -118758,7 +118712,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -118787,7 +118740,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -118804,7 +118756,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -118858,7 +118809,6 @@ msgstr "" "щоб вимкнути" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -118882,7 +118832,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -118908,7 +118857,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "атомна підсвітка для читання" @@ -118919,7 +118867,7 @@ msgstr[3] "атомна підсвітка для читання" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -118934,7 +118882,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "атомна підсвітка для читання (накрите)" @@ -118947,7 +118894,7 @@ msgstr[3] "атомна підсвітка для читання (накрите #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -119003,7 +118950,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -119050,7 +118996,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -119236,7 +119181,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -119392,7 +119336,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "підсвітка для читання" @@ -119442,7 +119385,6 @@ msgstr "" "темряві. Зараз увімкнена." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -119501,7 +119443,7 @@ msgstr[3] "смолоскип" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -119509,7 +119451,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -119525,7 +119467,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -119537,7 +119479,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -119614,7 +119555,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -119666,7 +119606,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "скальпель" @@ -119699,7 +119638,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -119713,7 +119651,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "термометр" @@ -119743,7 +119680,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -119760,7 +119696,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -119795,7 +119730,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -119811,7 +119745,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "болторіз" @@ -119828,7 +119761,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -119852,7 +119784,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -119868,7 +119799,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -119884,7 +119814,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -119900,7 +119829,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -119919,7 +119847,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -119957,7 +119884,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -119998,7 +119924,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -120014,7 +119939,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -120056,7 +119980,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -120208,7 +120131,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -120252,7 +120174,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "туристичний килимок із хутра" @@ -120274,7 +120195,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -120304,7 +120224,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -120364,7 +120283,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -120403,7 +120321,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -120510,7 +120427,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "туристичний килимок" @@ -120563,7 +120479,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -120747,7 +120662,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -120900,7 +120814,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -120917,7 +120830,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "собачий свисток" @@ -120934,7 +120846,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -120948,7 +120859,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -120962,7 +120872,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -120978,7 +120887,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -120994,7 +120902,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -121010,7 +120917,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -121055,7 +120961,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -121072,7 +120977,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -121116,7 +121020,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -121147,7 +121050,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -121163,7 +121065,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -121241,7 +121142,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -121261,7 +121161,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -121291,7 +121190,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -121308,7 +121206,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -121325,7 +121222,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -121357,7 +121253,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -121373,7 +121268,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -121387,7 +121281,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -121403,7 +121296,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -121419,7 +121311,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -121477,7 +121368,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -121494,7 +121384,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -121513,7 +121402,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -121529,7 +121417,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -121545,7 +121432,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -121562,7 +121448,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -121580,7 +121465,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -121600,7 +121484,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -121619,7 +121502,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -121635,7 +121517,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -121666,7 +121547,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -121684,7 +121564,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -121703,7 +121582,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -121723,7 +121601,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -121743,7 +121620,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -121765,7 +121641,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -121784,7 +121659,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -121849,7 +121723,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -121865,7 +121738,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -121879,7 +121751,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -121955,7 +121826,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -121969,7 +121839,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -121983,7 +121852,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -122000,7 +121868,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -122014,7 +121881,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -122031,7 +121897,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -122047,7 +121912,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -122064,7 +121928,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -122089,7 +121952,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "дерев'яна голка" @@ -122107,8 +121969,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -122142,8 +122003,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "набір кравця" @@ -122161,7 +122021,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -122175,7 +122034,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -122189,7 +122047,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -122236,7 +122093,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -122266,7 +122122,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -122310,7 +122165,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -122326,7 +122180,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -122366,7 +122219,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -122388,7 +122240,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -122435,7 +122286,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -122456,7 +122306,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -122511,7 +122360,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -122541,7 +122389,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -122577,7 +122424,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -122600,7 +122446,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -122631,7 +122476,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -122672,7 +122516,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -122718,7 +122561,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -122749,7 +122591,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -122864,7 +122705,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -122878,7 +122718,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -122888,7 +122727,6 @@ msgstr[3] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -123043,7 +122881,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -123059,7 +122896,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -123075,7 +122911,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -123091,7 +122926,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -123108,7 +122942,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -123122,7 +122955,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -123138,7 +122970,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -123155,7 +122986,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -123171,7 +123001,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -123186,7 +123015,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -123202,7 +123030,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "електричний відбійний молоток" @@ -123219,7 +123046,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -123249,7 +123075,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "молоток" @@ -123282,7 +123107,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -123300,7 +123124,6 @@ msgstr "" "виснажить." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -123316,7 +123139,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -123330,7 +123152,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -123346,7 +123167,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -123360,7 +123180,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "відбійний молоток" @@ -123380,7 +123199,6 @@ msgstr "" "твердій породі біля вас." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -123396,7 +123214,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -123414,7 +123231,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -123431,7 +123247,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "саморобний молоток" @@ -123447,7 +123262,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -123463,7 +123277,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -123479,7 +123292,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -123514,7 +123326,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -123530,7 +123341,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "мультитул" @@ -123546,7 +123356,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -123565,7 +123374,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -123579,7 +123387,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -123595,7 +123402,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -123611,7 +123417,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -123628,7 +123433,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -123662,7 +123466,6 @@ msgstr "" "інструментом." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -123678,7 +123481,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -123694,7 +123496,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -123711,7 +123512,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -123745,7 +123545,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "ящик з інструментами" @@ -123761,7 +123560,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -123794,7 +123592,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -123810,7 +123607,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -123826,7 +123622,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -123842,7 +123637,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -123860,7 +123654,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -123876,7 +123669,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -123893,7 +123685,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -125329,6 +125120,19 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -125710,7 +125514,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -126190,6 +125993,15 @@ msgstr[3] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -126561,6 +126373,34 @@ msgstr[3] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -127423,13 +127263,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "КАМІННЯ" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -127749,13 +127582,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -128309,7 +128135,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -128333,7 +128159,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -132754,7 +132580,7 @@ msgstr[3] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -132764,7 +132590,7 @@ msgstr[3] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -142982,9 +142808,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -143717,9 +143543,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -143735,9 +143561,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -143765,25 +143591,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -143803,9 +143629,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -150054,7 +149880,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -159721,17 +159547,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -160931,7 +160757,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -166629,9 +166455,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -176264,7 +176090,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -176632,7 +176457,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -176654,7 +176479,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -179407,7 +179231,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -179454,7 +179277,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -179579,6 +179402,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "ІНСТРУМЕНТИ" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -179592,7 +179422,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -179633,7 +179463,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -189373,7 +189203,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -189452,6 +189282,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -191173,6 +191010,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -191242,7 +191097,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -191310,6 +191165,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -191455,7 +191314,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -191798,7 +191657,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -198944,7 +198802,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -198952,8 +198810,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -199977,9 +199835,9 @@ msgstr[3] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -199994,7 +199852,7 @@ msgstr[3] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -218968,74 +218826,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -219045,177 +218835,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -220448,117 +220067,136 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -220566,38 +220204,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -220606,95 +220245,105 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -220703,24 +220352,75 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -220728,25 +220428,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -220754,25 +220454,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -220780,7 +220480,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -220788,7 +220488,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -220798,7 +220498,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -220808,7 +220508,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -220818,7 +220518,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -220828,7 +220528,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -220837,7 +220537,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -220846,7 +220546,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -220856,7 +220556,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -220865,18 +220565,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -220885,7 +220585,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -220893,18 +220593,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -220914,7 +220614,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -220923,18 +220623,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -220942,25 +220642,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -220968,59 +220668,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -221029,7 +220761,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -221038,25 +220770,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -221068,7 +220800,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -221079,25 +220811,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -221107,7 +220839,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -221117,12 +220849,12 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" @@ -221130,7 +220862,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" @@ -221138,7 +220870,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" @@ -221146,7 +220878,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" @@ -221154,559 +220886,613 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -221718,245 +221504,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -221964,487 +221723,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -222453,321 +222232,365 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -222775,20 +222598,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -222796,74 +222619,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -222871,21 +222694,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -222893,105 +222716,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -222999,16 +222846,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -223016,74 +222863,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -223091,350 +222938,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -223443,7 +223290,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -223451,7 +223298,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -223460,52 +223307,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" @@ -223514,13 +223322,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" @@ -223529,13 +223337,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" @@ -223544,13 +223352,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -223559,62 +223367,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -223623,14 +223382,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" @@ -223639,13 +223398,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -223655,45 +223414,13 @@ msgstr[3] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -223702,14 +223429,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" @@ -223718,15 +223445,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -223735,13 +223461,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" @@ -223749,8 +223475,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" @@ -223758,8 +223484,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" @@ -223767,11 +223493,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" @@ -223779,7 +223505,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -223787,14 +223513,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -223804,13 +223530,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" @@ -223819,13 +223545,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" @@ -223834,13 +223560,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -223850,13 +223576,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -223866,13 +223592,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -223882,13 +223608,13 @@ msgstr[3] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -223897,39 +223623,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -223938,13 +223638,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" @@ -223953,14 +223653,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -223969,24 +223669,24 @@ msgstr[2] "" msgstr[3] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -223995,13 +223695,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -224011,12 +223711,12 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -224026,12 +223726,12 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" @@ -224040,13 +223740,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" @@ -224055,13 +223755,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" @@ -224070,14 +223770,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" @@ -224086,14 +223786,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -224103,13 +223803,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" @@ -224117,7 +223817,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -224127,13 +223827,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -224143,13 +223843,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -224159,13 +223859,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -224175,14 +223875,14 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" @@ -224191,14 +223891,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" @@ -224207,14 +223907,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" @@ -224223,14 +223923,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" @@ -224239,14 +223939,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -224256,12 +223956,12 @@ msgstr[3] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -224269,7 +223969,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -224278,13 +223978,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -224293,328 +223993,287 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer rune" +msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Biomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." +"This magical pebble has an insignia of rended flesh and bones on it. It is " +"necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer rune" +msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Technomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." +"This magical pebble has an insignia of clockwork and gears on it. It is " +"necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus rune" +msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." +"This magical pebble has an insignia of crystal and mana orbs on it. It is " +"necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper rune" +msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Earthshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." +"This magical pebble has an insignia of steel and rocks on it. It is " +"necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist rune" +msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Kelvinist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of ice and flames on it. It is " +"necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper rune" +msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Stormshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." +"This magical pebble has an insignia of lightning and storm clouds on it. It" +" is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid rune" +msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Druid rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of nature and trees on it. It is " +"necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist rune" +msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Animist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." +"This magical pebble has an insignia of summoners on it. It is necessary for" +" Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" +#: data/mods/Magical_Nights/items/class_items.json +msgid "alchemist rune" +msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'alchemist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." +"This magical pebble has an insignia of alchemy and potions on it. While " +"versatile in use, the lack of attunement to any school prevents creation of " +"more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Biomancer rune" -msgid_plural "Biomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of rended flesh and bones on it. It is " -"necessary for Biomancers to channel magic into their crafts." +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Technomancer rune" -msgid_plural "Technomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of clockwork and gears on it. It is " -"necessary for Technomancers to channel magic into their crafts." +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Magus rune" -msgid_plural "Magi runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of crystal and mana orbs on it. It is " -"necessary for Magi to channel magic into their crafts." +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Earthshaper rune" -msgid_plural "Earthshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of steel and rocks on it. It is " -"necessary for Earthshapers to channel magic into their crafts." +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Kelvinist rune" -msgid_plural "Kelvinist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of ice and flames on it. It is " -"necessary for Kelvinists to channel magic into their crafts." +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Stormshaper rune" -msgid_plural "Stormshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of lightning and storm clouds on it. It" -" is necessary for Stormshapers to channel magic into their crafts." +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Druid rune" -msgid_plural "Druid runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of nature and trees on it. It is " -"necessary for Druids to channel magic into their crafts." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Animist rune" -msgid_plural "Animist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of summoners on it. It is necessary for" -" Animists to channel magic into their crafts." +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "alchemist rune" -msgid_plural "alchemist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of alchemy and potions on it. While " -"versatile in use, the lack of attunement to any school prevents creation of " -"more advanced recipes." +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" @@ -224623,7 +224282,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -224632,7 +224291,7 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" @@ -224641,11 +224300,11 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" @@ -224654,12 +224313,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" @@ -224668,14 +224327,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" @@ -224684,12 +224343,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" @@ -224698,13 +224357,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" @@ -224713,14 +224372,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -224729,13 +224388,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -224744,13 +224403,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -224759,13 +224418,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -224774,4994 +224433,5663 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json -msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" + +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" -msgstr "" - -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "" + +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"You squeeze the seed in your palm, and it begins to turn to a fine dust." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" + +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" -msgstr[0] "" +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" - -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" - -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" - -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" - -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" - -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" - -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" + +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "" + +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" - -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" - -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -229770,14 +230098,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -229786,13 +230114,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" @@ -229800,7 +230132,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -229809,7 +230141,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -229818,7 +230150,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -229826,7 +230158,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -229835,7 +230167,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -229843,19 +230175,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -229864,14 +230196,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -229880,7 +230212,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -229889,7 +230221,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -229898,14 +230230,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -229914,14 +230246,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -229930,14 +230262,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -229946,14 +230278,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -229962,13 +230294,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -229977,7 +230309,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -229985,7 +230317,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -229994,12 +230326,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -230008,13 +230340,99 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -230023,7 +230441,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -230034,7 +230452,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -230043,17 +230461,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -230062,7 +230480,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -230072,7 +230490,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -230081,7 +230499,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -230090,7 +230508,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -230099,13 +230517,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -230114,16 +230532,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -230132,19 +230551,19 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -230153,7 +230572,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -230162,12 +230581,12 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" @@ -230175,7 +230594,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -230184,7 +230603,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -230193,7 +230612,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -230202,14 +230621,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -230218,13 +230637,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -230233,13 +230652,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -230248,13 +230667,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -230263,144 +230682,195 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -230408,222 +230878,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -230631,48 +231101,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -230680,12 +231150,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -230693,12 +231163,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -230706,103 +231176,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -230811,204 +231281,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -231017,24 +231487,24 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" @@ -231043,48 +231513,68 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Ручне встановлення біоніки" @@ -237785,6 +238275,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -237977,10 +238471,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -244029,6 +244519,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -244097,6 +244588,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -244967,6 +245462,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -260642,7 +261141,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -266632,7 +267136,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -271807,10 +272317,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -276028,7 +276539,7 @@ msgstr "" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -283652,6 +284163,11 @@ msgstr "Сіялка транспорту (%s) відключилася чере msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -283793,6 +284309,16 @@ msgstr "Двигун (%s) видає дзижчання і не запускає msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -284385,11 +284911,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/uk_UA.po b/lang/po/uk_UA.po index 0d7606af4b36..20bde8e03871 100644 --- a/lang/po/uk_UA.po +++ b/lang/po/uk_UA.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" "Last-Translator: Coolthulhu , 2024\n" "Language-Team: Ukrainian (Ukraine) (https://app.transifex.com/bn-team/teams/113585/uk_UA/)\n" "MIME-Version: 1.0\n" @@ -7591,6 +7591,17 @@ msgstr "" msgid "You can see through everything!" msgstr "" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "" + #: data/json/effects.json msgid "Took Xanax" msgstr "" @@ -10912,7 +10923,7 @@ msgstr "" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "" @@ -11360,75 +11371,91 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "БОЄПРИПАСИ" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "ЗБРОЯ" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "ІНСТРУМЕНТИ" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "ОДЯГ" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "ЇЖА" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "ПРЕПАРАТИ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "КНИГИ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "МАПИ" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "МУТАГЕНИ" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "ДЕТАЛІ МАШИН" @@ -11442,51 +11469,89 @@ msgstr "ДЕТАЛІ МАШИН" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "ІНШЕ" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "ПАЛИВО" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "НАСІННЯ" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "ХІМІКАТИ" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "ЗАПЧАСТИНИ" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "КАМІННЯ" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "" +#: data/json/item_category.json +msgid "MAPS" +msgstr "МАПИ" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "НАДЯГНУТІ РЕЧІ" @@ -12231,12 +12296,12 @@ msgstr "" msgid "Destination for corpses" msgstr "" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "" @@ -12278,6 +12343,177 @@ msgid "" "action." msgstr "" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "" @@ -12735,7 +12971,7 @@ msgid "" "Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "" @@ -12770,7 +13006,7 @@ msgid "" "+2 Accuracy." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "" @@ -12807,7 +13043,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" @@ -12978,7 +13214,7 @@ msgid "" "+1.0 Dodging skill" msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "" @@ -13096,7 +13332,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "" @@ -13171,7 +13407,7 @@ msgid "" "Blocked damage decreased by 50% of Strength." msgstr "" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "" @@ -13353,7 +13589,7 @@ msgid "" msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "" @@ -14538,7 +14774,7 @@ msgid "Resin" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "" @@ -14547,22 +14783,22 @@ msgid "gouged" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "" @@ -14575,7 +14811,7 @@ msgid "bent" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "" @@ -14587,7 +14823,7 @@ msgstr "" msgid "Biosilicified Chitin" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "" @@ -14600,7 +14836,7 @@ msgid "Brass" msgstr "" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "" @@ -14618,7 +14854,7 @@ msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "" @@ -14627,12 +14863,12 @@ msgid "torn" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "" @@ -14692,7 +14928,7 @@ msgstr "" msgid "bruised" msgstr "" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "" @@ -15117,7 +15353,7 @@ msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19418,12 +19654,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "" @@ -19448,18 +19684,18 @@ msgid "" "you." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19468,7 +19704,7 @@ msgid "" msgstr "" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19476,12 +19712,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "" @@ -19506,18 +19742,18 @@ msgid "" " come to eat your brains." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19525,19 +19761,19 @@ msgid "" msgstr "" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "" @@ -19560,12 +19796,12 @@ msgid "" "what to do about the ravenous undead." msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "" @@ -20322,15 +20558,15 @@ msgstr "" #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" +msgid "Skater Boy (Rollerblades)" msgstr "" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" +msgid "Skater Girl (Rollerblades)" msgstr "" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20338,7 +20574,7 @@ msgid "" "can't roll." msgstr "" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20346,6 +20582,34 @@ msgid "" "can't roll." msgstr "" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -27617,7 +27881,6 @@ msgid "awl" msgstr "" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "" @@ -27736,7 +27999,6 @@ msgstr "" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "" @@ -27806,7 +28068,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "" @@ -27829,7 +28090,6 @@ msgid "Crunch!" msgstr "" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "" @@ -27839,7 +28099,6 @@ msgstr[3] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "" @@ -27849,7 +28108,6 @@ msgstr[3] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "" @@ -27870,8 +28128,7 @@ msgid "microlab shifting hall" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "ведмежий капкан" @@ -27906,7 +28163,6 @@ msgid "tripwire" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "" @@ -27915,7 +28171,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "" @@ -27962,7 +28217,6 @@ msgid "Swinnng!" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "" @@ -27982,7 +28236,6 @@ msgid "buried land mine" msgstr "" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "" @@ -28029,7 +28282,6 @@ msgid "ledge" msgstr "" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "" @@ -28043,7 +28295,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "" @@ -28053,7 +28304,6 @@ msgstr[3] "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "" @@ -28067,7 +28317,6 @@ msgstr "" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "" @@ -28434,7 +28683,8 @@ msgstr "" msgid "Thunder Storm" msgstr "" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "" @@ -28478,6 +28728,21 @@ msgid "" "showing you a top-down view of your position with the surroundings revealed." msgstr "" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28559,7 +28824,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "" @@ -28589,7 +28855,8 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "" @@ -28939,7 +29206,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "" @@ -29052,8 +29318,9 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "" @@ -29312,7 +29579,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "" @@ -29340,7 +29607,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "" @@ -29473,7 +29740,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "" @@ -29535,7 +29801,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "" @@ -29866,7 +30131,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "" @@ -29953,7 +30218,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -29980,7 +30245,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "" @@ -30149,7 +30414,7 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "" @@ -30486,7 +30751,7 @@ msgstr "" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "" @@ -30503,7 +30768,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "" @@ -30518,7 +30782,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "" @@ -30535,7 +30798,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "" @@ -30559,7 +30821,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "" @@ -30719,7 +30980,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "" @@ -31592,7 +31852,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "водоочисник" @@ -32012,7 +32271,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "" @@ -32158,7 +32416,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "" @@ -32185,7 +32442,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "" @@ -32738,9 +32994,21 @@ msgid "" " heavy things." msgstr "" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "" @@ -32776,7 +33044,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "" @@ -32794,7 +33061,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "" @@ -33294,7 +33560,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "" @@ -33311,7 +33576,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "" @@ -33331,7 +33595,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "" @@ -33401,7 +33664,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "" @@ -33441,7 +33703,6 @@ msgstr "" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "" @@ -34936,7 +35197,7 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "" @@ -35333,7 +35594,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "" @@ -35591,7 +35851,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "" @@ -37240,7 +37499,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "" @@ -37879,7 +38137,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "" @@ -38914,7 +39171,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "суцільний камінь" @@ -39839,7 +40095,6 @@ msgstr "" #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "" @@ -40018,6 +40273,42 @@ msgstr "" msgid "The lower end of rail track leading up." msgstr "" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -40093,7 +40384,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ЯКЩО ВИ ЦЕ БАЧИТЕ, ТО ЦЕ ПРОГРАМНА ПОМИЛКА." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "нитка" @@ -40109,7 +40399,6 @@ msgstr "" "набору." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "" @@ -40123,7 +40412,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "Міцне сухожилля, що може бути використане як нитка." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "" @@ -40137,7 +40425,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "Міцні тонкі рослинні волокна, можуть слугувати за нитки." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "пряжа" @@ -40166,7 +40453,6 @@ msgid "A cleansing agent made into bars." msgstr "Миючий засіб, у формі брусків." #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "" @@ -40180,7 +40466,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Моток армованої клейкої стрічки. Має безліч використань." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "" @@ -40194,7 +40479,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "Це тонкі паперові смужки для скручування цигарок." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "" @@ -40252,7 +40536,6 @@ msgstr[2] "водяниста плутонієва суспензія" msgstr[3] "водяниста плутонієва суспензія" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "" @@ -40554,7 +40837,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "" @@ -40614,7 +40896,6 @@ msgstr "" "видалення забруднень з повітря чи води." #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "" @@ -40875,7 +41156,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "трут" @@ -40915,7 +41195,6 @@ msgid "A metal die used to play various role-playing games" msgstr "" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "" @@ -41272,7 +41551,6 @@ msgstr "" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "УДЖ" @@ -43579,7 +43857,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "глиба сірки" @@ -43595,7 +43872,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "" @@ -43612,7 +43888,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "" @@ -43629,7 +43904,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "" @@ -43654,7 +43928,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "ґрунт" @@ -43685,7 +43958,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "кам'яна сіль" @@ -43699,7 +43971,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "Пригоршня кристалів кам'яної соли. Можна очистити до кухонної солі." #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" @@ -43715,7 +43986,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "" @@ -44152,7 +44422,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "" @@ -44168,7 +44437,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "" @@ -44594,7 +44862,6 @@ msgid "" msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "" @@ -44651,7 +44918,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "" @@ -46505,7 +46771,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "" @@ -46520,7 +46785,6 @@ msgstr "" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "" @@ -46690,7 +46954,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "" @@ -46704,7 +46967,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "" @@ -46718,7 +46980,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "" @@ -46732,7 +46993,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "" @@ -46746,7 +47006,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "" @@ -46760,7 +47019,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "" @@ -46774,7 +47032,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "" @@ -46813,7 +47070,6 @@ msgid "A token, representing fertilization of a plant." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "сталевий ланцюг" @@ -46829,7 +47085,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "шматок хітину" @@ -46843,7 +47098,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "" @@ -46878,7 +47132,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "шматок біосиліфікованого хітину" @@ -46895,7 +47148,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "" @@ -46911,7 +47163,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "" @@ -46928,7 +47179,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "" @@ -47020,7 +47270,6 @@ msgstr "" "викопні рештки." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "" @@ -47034,7 +47283,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "" @@ -47050,7 +47298,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" @@ -47067,7 +47314,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "" @@ -47126,7 +47372,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "" @@ -47143,7 +47388,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "" @@ -47159,7 +47403,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "" @@ -47173,7 +47416,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "" @@ -47190,7 +47432,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "" @@ -47259,7 +47500,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "" @@ -47319,7 +47559,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "" @@ -47333,7 +47572,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "" @@ -47348,7 +47586,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "" @@ -47362,7 +47599,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "" @@ -47408,7 +47644,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "" @@ -47422,7 +47657,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "" @@ -47438,7 +47672,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "" @@ -47451,9 +47684,7 @@ msgstr[3] "" msgid "A broken laptop, basically a paperweight now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "" @@ -47469,9 +47700,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "" @@ -47487,7 +47716,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "" @@ -47503,7 +47731,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "" @@ -47519,7 +47746,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "" @@ -47535,7 +47761,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "" @@ -47558,7 +47783,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "" @@ -47574,7 +47798,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "" @@ -47590,7 +47813,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "" @@ -47605,9 +47827,7 @@ msgid "" " parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "" @@ -47624,7 +47844,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "" @@ -47640,7 +47859,6 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "" @@ -47649,7 +47867,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "" @@ -47658,7 +47875,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "" @@ -47675,7 +47891,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "" @@ -47692,9 +47907,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "" @@ -47711,9 +47924,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "" @@ -47729,9 +47940,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "" @@ -47747,9 +47956,7 @@ msgid "" "be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "" @@ -47765,9 +47972,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "" @@ -47783,9 +47988,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "" @@ -47801,9 +48004,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "" @@ -47851,7 +48052,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "" @@ -47865,7 +48065,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "" @@ -47879,7 +48078,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "" @@ -47893,7 +48091,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "" @@ -47909,7 +48106,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "" @@ -47925,7 +48121,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "" @@ -47941,7 +48136,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "" @@ -47957,7 +48151,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "" @@ -47973,7 +48166,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "" @@ -47990,7 +48182,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "" @@ -48007,7 +48198,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "" @@ -48023,7 +48213,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "перегоріла біоніка" @@ -48074,7 +48263,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "" @@ -48088,7 +48276,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "" @@ -48104,7 +48291,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "" @@ -48120,7 +48306,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "" @@ -48150,7 +48335,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "" @@ -48164,7 +48348,6 @@ msgid "A small fan, used to propel air around a room." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "" @@ -48195,7 +48378,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "ганчірка" @@ -48232,7 +48414,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "" @@ -48249,7 +48430,6 @@ msgid "" msgstr "" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "" @@ -48277,7 +48457,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "" @@ -48291,7 +48470,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "" @@ -48308,7 +48486,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" @@ -48325,7 +48502,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "" @@ -48361,7 +48537,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "" @@ -48377,7 +48552,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "" @@ -48415,7 +48589,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" @@ -48430,7 +48603,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "" @@ -48439,7 +48611,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" @@ -48455,7 +48626,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "" @@ -48469,7 +48639,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "" @@ -48483,7 +48652,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "" @@ -48497,7 +48665,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "" @@ -48523,7 +48690,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "" @@ -48539,7 +48705,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" @@ -48555,7 +48720,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" @@ -48569,7 +48733,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "" @@ -48583,7 +48746,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" @@ -48599,7 +48761,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "" @@ -48613,7 +48774,6 @@ msgid "A sparkling diamond." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "" @@ -48627,7 +48787,6 @@ msgid "A sparkling garnet." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "" @@ -48641,7 +48800,6 @@ msgid "A sparkling amethyst." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "" @@ -48655,7 +48813,6 @@ msgid "A sparkling aquamarine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "" @@ -48669,7 +48826,6 @@ msgid "A sparkling emerald." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "" @@ -48683,7 +48839,6 @@ msgid "A sparkling alexandrite." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "" @@ -48697,7 +48852,6 @@ msgid "A lustrous pearl." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "" @@ -48711,7 +48865,6 @@ msgid "A sparkling ruby." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "" @@ -48725,7 +48878,6 @@ msgid "A sparkling peridot." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "" @@ -48739,7 +48891,6 @@ msgid "A sparkling sapphire." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "" @@ -48753,7 +48904,6 @@ msgid "A lustrous opal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "" @@ -48767,7 +48917,6 @@ msgid "A sparkling tourmaline." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "" @@ -48781,7 +48930,6 @@ msgid "A sparkling citrine." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "" @@ -48795,7 +48943,6 @@ msgid "A sparkling blue topaz." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "" @@ -48812,7 +48959,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "" @@ -48857,7 +49003,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "подушка" @@ -48871,7 +49016,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "Подушка, на яку можна покласти голову під час сну." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "" @@ -48887,7 +49031,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "" @@ -48901,7 +49044,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "" @@ -48923,7 +49065,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "" @@ -48980,7 +49121,7 @@ msgstr[3] "" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "" @@ -49110,7 +49251,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "кредитка" @@ -49142,7 +49282,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "" @@ -49156,7 +49295,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "Ця карта дає вам невеличку знижку при купівлі палива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "" @@ -49170,7 +49308,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "Ця карта дає вам гарну знижку при купівлі палива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "" @@ -49184,7 +49321,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "Ця карта дає вам чудову знижку при купівлі палива." #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "" @@ -49201,7 +49337,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "" @@ -49218,7 +49353,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "" @@ -49235,7 +49369,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "" @@ -49297,7 +49430,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "" @@ -49324,7 +49456,6 @@ msgid "A twisted shard of jagged metal." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "" @@ -49338,7 +49469,6 @@ msgid "A nice looking clay pot used for planting." msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "пластиковий квітковий горщик" @@ -49495,7 +49625,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "" @@ -49510,9 +49639,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "" @@ -49527,9 +49654,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "" @@ -49544,9 +49669,8 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "" @@ -49555,7 +49679,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "" @@ -49571,7 +49694,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "" @@ -49589,7 +49711,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "" @@ -49655,7 +49776,6 @@ msgid "" msgstr "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "" @@ -49664,7 +49784,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "" @@ -49673,7 +49792,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "" @@ -49887,7 +50005,6 @@ msgid "" msgstr "" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "" @@ -50063,7 +50180,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "" @@ -50079,7 +50195,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "" @@ -50095,7 +50210,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "" @@ -50111,7 +50225,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "" @@ -50125,7 +50238,6 @@ msgid "Allows for storage and recovery of information." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "" @@ -50141,7 +50253,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" @@ -50157,7 +50268,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "" @@ -50173,7 +50283,6 @@ msgid "" msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "" @@ -50187,7 +50296,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "" @@ -50201,7 +50309,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "" @@ -50752,7 +50859,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "" @@ -50766,7 +50872,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" @@ -50780,7 +50885,6 @@ msgid "A piece of hacking software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" @@ -50794,7 +50898,6 @@ msgid "A piece of medical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" @@ -50808,7 +50911,6 @@ msgid "A piece of mathematical software." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "" @@ -50822,7 +50924,6 @@ msgid "Medical data on zombie blood." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "" @@ -50836,7 +50937,6 @@ msgid "Research archives from a government laboratory." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "" @@ -50850,7 +50950,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "" @@ -50867,7 +50966,6 @@ msgid "" msgstr "" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "" @@ -51582,7 +51680,7 @@ msgstr[3] "" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "" @@ -51617,7 +51715,7 @@ msgstr[3] "" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "" @@ -55704,7 +55802,6 @@ msgid "" msgstr "" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "" @@ -56387,7 +56484,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "колчан" @@ -56402,7 +56500,8 @@ msgid "" "store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "" @@ -56417,7 +56516,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "" @@ -56433,7 +56533,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "" @@ -57006,7 +57107,7 @@ msgstr[3] "" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "" @@ -57285,7 +57386,7 @@ msgstr[3] "шкіряний ремінь" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "" @@ -57295,14 +57396,14 @@ msgstr "" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "" @@ -60260,7 +60361,7 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -69329,7 +69430,7 @@ msgstr[3] "" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "" @@ -78237,8 +78338,8 @@ msgstr[3] "" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "" @@ -78405,7 +78506,7 @@ msgstr[3] "" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -78428,7 +78529,7 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "" @@ -80522,8 +80623,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "" @@ -80533,7 +80633,6 @@ msgstr[3] "" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -80761,8 +80860,7 @@ msgid "" msgstr "" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "" @@ -93328,6 +93426,22 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -98219,7 +98333,6 @@ msgid "generic item template" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "" @@ -98235,7 +98348,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "" @@ -98285,7 +98397,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "" @@ -98322,7 +98433,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "" @@ -98338,7 +98448,6 @@ msgid "" msgstr "" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "" @@ -99053,7 +99162,6 @@ msgstr[2] "звичайних каструль" msgstr[3] "звичайна каструля" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "" @@ -99067,7 +99175,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "керамічна миска" @@ -99081,7 +99188,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "" @@ -99095,7 +99201,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "" @@ -99178,7 +99283,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "" @@ -99192,7 +99296,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "" @@ -99208,7 +99311,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "олов'яна миска" @@ -99222,7 +99324,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "склянка" @@ -99236,7 +99337,6 @@ msgid "A tall drinking glass." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "" @@ -99252,7 +99352,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "скляна миска" @@ -99294,7 +99393,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "" @@ -99339,7 +99437,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "" @@ -99383,7 +99480,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "каструля" @@ -99397,7 +99493,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "чавунна каструля" @@ -99412,7 +99507,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "мідна каструля" @@ -99428,7 +99522,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "" @@ -99444,7 +99537,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "" @@ -99460,7 +99552,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "каструля для консервації" @@ -99484,7 +99575,6 @@ msgstr "" " кришки." #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "" @@ -99499,7 +99589,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "" @@ -99514,7 +99603,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "" @@ -99530,7 +99618,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "" @@ -99546,7 +99633,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "" @@ -99562,7 +99648,6 @@ msgid "" msgstr "" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "" @@ -99939,7 +100024,6 @@ msgid "" msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "" @@ -99953,7 +100037,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "довга шворка" @@ -101399,7 +101482,7 @@ msgstr "" #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "" @@ -104777,7 +104860,7 @@ msgstr "" #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "" @@ -105138,7 +105221,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "" @@ -105336,7 +105419,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "" @@ -105472,7 +105555,7 @@ msgid "" msgstr "" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "" @@ -110243,7 +110326,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "" @@ -110252,7 +110334,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "ніж м'ясника" @@ -110268,7 +110349,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "ніж для стейка" @@ -110284,7 +110364,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "" @@ -110300,7 +110379,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "" @@ -110318,7 +110396,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "" @@ -110335,7 +110412,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "" @@ -110352,7 +110428,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "" @@ -110369,7 +110444,6 @@ msgid "" msgstr "" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "" @@ -114336,7 +114410,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "уламок скла" @@ -114352,7 +114425,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "" @@ -114375,7 +114447,6 @@ msgid "" msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "" @@ -114390,7 +114461,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "" @@ -114405,7 +114475,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "" @@ -114521,7 +114590,6 @@ msgid "A roll of purple carpet." msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "" @@ -114537,7 +114605,6 @@ msgid "" msgstr "" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "" @@ -114551,7 +114618,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "труба" @@ -114566,7 +114632,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "" @@ -114583,7 +114648,6 @@ msgstr "" #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "" @@ -114599,7 +114663,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "" @@ -114615,7 +114678,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "" @@ -114632,7 +114694,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" @@ -114646,7 +114707,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "" @@ -114663,7 +114723,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "" @@ -114672,7 +114731,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "" @@ -114690,7 +114748,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "свинець" @@ -114708,7 +114765,6 @@ msgstr "" "пластичності, він має широке застосування, включно із виробництвом набоїв." #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" @@ -114724,7 +114780,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "срібло" @@ -114740,7 +114795,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "" @@ -114754,7 +114808,6 @@ msgid "A small sheet of metal." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "" @@ -114770,7 +114823,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "" @@ -114784,7 +114836,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "" @@ -114800,7 +114851,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" @@ -114814,7 +114864,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "" @@ -114830,7 +114879,6 @@ msgid "" msgstr "" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "" @@ -114874,7 +114922,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "керамічний уламок" @@ -114943,7 +114990,6 @@ msgid "" msgstr "" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "гострий камінь" @@ -115024,7 +115070,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "шматок пластмаси" @@ -115056,7 +115101,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" @@ -115073,8 +115117,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "пластиковий лист" @@ -115090,7 +115132,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "" @@ -115106,7 +115147,6 @@ msgid "" msgstr "" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "" @@ -115122,7 +115162,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "" @@ -115138,7 +115177,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" @@ -115152,7 +115190,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "товстий дрючок" @@ -115166,7 +115203,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "довга ломака" @@ -115182,7 +115218,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "" @@ -115197,8 +115232,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "дошка" @@ -115215,7 +115249,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "" @@ -115232,7 +115265,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "" @@ -115250,7 +115282,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "" @@ -115267,7 +115298,6 @@ msgid "" msgstr "" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "" @@ -115309,7 +115339,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "" @@ -115328,7 +115357,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "" @@ -115358,7 +115386,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "" @@ -115374,7 +115401,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "" @@ -115418,7 +115444,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "вугільний водоочисник" @@ -115436,7 +115461,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "" @@ -115452,7 +115476,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "" @@ -115468,7 +115491,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "" @@ -115482,7 +115504,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "" @@ -115496,7 +115517,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "" @@ -115510,7 +115530,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "" @@ -115527,7 +115546,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "" @@ -115543,7 +115561,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "" @@ -115571,7 +115588,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "" @@ -115587,7 +115603,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "" @@ -115681,7 +115696,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "" @@ -115697,7 +115711,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "бензиновий примус" @@ -115731,7 +115744,6 @@ msgstr "" "їжі. Може бути використана лише один раз." #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "" @@ -115815,7 +115827,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "" @@ -115831,7 +115842,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "" @@ -115848,7 +115858,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "" @@ -115865,7 +115874,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "" @@ -115884,7 +115892,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "" @@ -115902,7 +115909,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "" @@ -115939,7 +115945,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "" @@ -115955,7 +115960,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "" @@ -115971,7 +115975,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "" @@ -115999,7 +116002,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "" @@ -116015,7 +116017,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "" @@ -116032,7 +116033,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "" @@ -116046,7 +116046,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "" @@ -116104,7 +116103,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "" @@ -116121,7 +116119,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "" @@ -116135,7 +116132,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "" @@ -116151,7 +116147,6 @@ msgid "" msgstr "" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "" @@ -116240,7 +116235,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "" @@ -116258,6 +116252,24 @@ msgstr "" msgid "This is a bicycle folded into a relatively portable package." msgstr "" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -116266,7 +116278,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "" @@ -116317,7 +116328,6 @@ msgid "" msgstr "" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "" @@ -116352,7 +116362,6 @@ msgid "Folded plastic chair on a metal frame, deploy to sit down." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "" @@ -116370,7 +116379,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "" @@ -116387,7 +116395,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "" @@ -116407,7 +116414,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "сотовий телефон" @@ -116441,7 +116447,6 @@ msgstr "" "його, щоб включити спалах. Також у ньому є годинник із будильником." #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "" @@ -116458,7 +116463,6 @@ msgid "You stop lighting up the screen." msgstr "" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "" @@ -116475,7 +116479,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "" @@ -116506,7 +116509,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "" @@ -116522,9 +116524,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "" @@ -116543,7 +116543,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "" @@ -116561,7 +116560,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "" @@ -116580,7 +116578,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "" @@ -116616,7 +116613,6 @@ msgstr[2] "" msgstr[3] "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "mp3-плеєр (вимк)" @@ -116651,7 +116647,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "" @@ -116686,7 +116681,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "портативна ігрова приставка" @@ -116704,7 +116698,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "смартфон" @@ -116792,7 +116785,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "вібратор" @@ -116808,7 +116800,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "" @@ -116834,7 +116825,6 @@ msgid "" msgstr "" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "" @@ -116851,7 +116841,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "ломик" @@ -116868,7 +116857,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "" @@ -116887,7 +116875,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "саморобна відмичка" @@ -116906,7 +116893,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "" @@ -116923,7 +116909,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "саморобний ломик" @@ -116941,7 +116926,6 @@ msgid "" msgstr "" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "слюсарні відмички" @@ -118032,7 +118016,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "" @@ -118048,7 +118031,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "" @@ -118066,7 +118048,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "" @@ -118084,7 +118065,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "" @@ -118101,7 +118081,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "запальничка" @@ -118118,7 +118097,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "збільшувальне скло" @@ -118137,7 +118115,6 @@ msgstr "" "вогню у сонячні дні." #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "коробок сірників" @@ -118155,7 +118132,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "запальничка багаторазова" @@ -118196,7 +118172,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "" @@ -118228,7 +118203,6 @@ msgid "" msgstr "" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "" @@ -118269,7 +118243,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "" @@ -118301,7 +118274,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "" @@ -118317,7 +118289,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "пожежний багор" @@ -118381,7 +118352,6 @@ msgid "" msgstr "" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "" @@ -118397,7 +118367,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "" @@ -118432,7 +118401,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "" @@ -118446,7 +118414,6 @@ msgid "A simple fishing hook." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "" @@ -118460,7 +118427,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "" @@ -118476,7 +118442,6 @@ msgid "" msgstr "" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "" @@ -118492,7 +118457,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "" @@ -118508,7 +118472,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "" @@ -118528,7 +118491,6 @@ msgid "" msgstr "" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "" @@ -118559,7 +118521,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "" @@ -118591,7 +118552,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "" @@ -118607,7 +118567,6 @@ msgid "" msgstr "" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "" @@ -118658,7 +118617,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "палиця-копачка" @@ -118674,7 +118632,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "" @@ -118689,7 +118646,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "" @@ -118705,7 +118661,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "" @@ -118741,7 +118696,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "" @@ -118758,7 +118712,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "" @@ -118787,7 +118740,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "" @@ -118804,7 +118756,6 @@ msgid "" msgstr "" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "" @@ -118858,7 +118809,6 @@ msgstr "" "щоб вимкнути" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "" @@ -118882,7 +118832,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "" @@ -118908,7 +118857,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "атомна підсвітка для читання" @@ -118919,7 +118867,7 @@ msgstr[3] "атомна підсвітка для читання" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "" @@ -118934,7 +118882,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "атомна підсвітка для читання (накрите)" @@ -118947,7 +118894,7 @@ msgstr[3] "атомна підсвітка для читання (накрите #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "" @@ -119003,7 +118950,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "" @@ -119050,7 +118996,6 @@ msgid "You turn the lamp off." msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "" @@ -119236,7 +119181,6 @@ msgid "" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "" @@ -119392,7 +119336,6 @@ msgid "The %s is extinguished" msgstr "" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "підсвітка для читання" @@ -119442,7 +119385,6 @@ msgstr "" "темряві. Зараз увімкнена." #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "" @@ -119501,7 +119443,7 @@ msgstr[3] "смолоскип" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "" @@ -119509,7 +119451,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "" @@ -119525,7 +119467,7 @@ msgstr "" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "" @@ -119537,7 +119479,6 @@ msgid "" msgstr "" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "" @@ -119614,7 +119555,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "" @@ -119666,7 +119606,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "скальпель" @@ -119699,7 +119638,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "" @@ -119713,7 +119651,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "термометр" @@ -119743,7 +119680,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "" @@ -119760,7 +119696,6 @@ msgid "" msgstr "" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "" @@ -119795,7 +119730,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "" @@ -119811,7 +119745,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "болторіз" @@ -119828,7 +119761,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "" @@ -119852,7 +119784,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "" @@ -119868,7 +119799,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "" @@ -119884,7 +119814,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "" @@ -119900,7 +119829,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "" @@ -119919,7 +119847,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "" @@ -119957,7 +119884,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "" @@ -119998,7 +119924,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "" @@ -120014,7 +119939,6 @@ msgid "" msgstr "" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "" @@ -120056,7 +119980,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "" @@ -120208,7 +120131,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "" @@ -120252,7 +120174,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "туристичний килимок із хутра" @@ -120274,7 +120195,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "" @@ -120304,7 +120224,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "" @@ -120364,7 +120283,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "" @@ -120403,7 +120321,6 @@ msgid "You turn off the heater." msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "" @@ -120510,7 +120427,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "туристичний килимок" @@ -120563,7 +120479,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "" @@ -120747,7 +120662,6 @@ msgid "" msgstr "" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "" @@ -120900,7 +120814,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "" @@ -120917,7 +120830,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "собачий свисток" @@ -120934,7 +120846,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "" @@ -120948,7 +120859,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" @@ -120962,7 +120872,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "" @@ -120978,7 +120887,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "" @@ -120994,7 +120902,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "" @@ -121010,7 +120917,6 @@ msgid "" msgstr "" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "" @@ -121055,7 +120961,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "" @@ -121072,7 +120977,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "" @@ -121116,7 +121020,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "" @@ -121147,7 +121050,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "" @@ -121163,7 +121065,6 @@ msgid "" msgstr "" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "" @@ -121241,7 +121142,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "" @@ -121261,7 +121161,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "" @@ -121291,7 +121190,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "" @@ -121308,7 +121206,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "" @@ -121325,7 +121222,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "" @@ -121357,7 +121253,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "" @@ -121373,7 +121268,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "" @@ -121387,7 +121281,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "" @@ -121403,7 +121296,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "" @@ -121419,7 +121311,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "" @@ -121477,7 +121368,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "" @@ -121494,7 +121384,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "" @@ -121513,7 +121402,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "" @@ -121529,7 +121417,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "" @@ -121545,7 +121432,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "" @@ -121562,7 +121448,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "" @@ -121580,7 +121465,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "" @@ -121600,7 +121484,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "" @@ -121619,7 +121502,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "" @@ -121635,7 +121517,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "" @@ -121666,7 +121547,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "" @@ -121684,7 +121564,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "" @@ -121703,7 +121582,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "" @@ -121723,7 +121601,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "" @@ -121743,7 +121620,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "" @@ -121765,7 +121641,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "" @@ -121784,7 +121659,6 @@ msgid "" msgstr "" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "" @@ -121849,7 +121723,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "" @@ -121865,7 +121738,6 @@ msgid "" msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "" @@ -121879,7 +121751,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "" @@ -121955,7 +121826,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "" @@ -121969,7 +121839,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "" @@ -121983,7 +121852,6 @@ msgid "A plastic ball point pen." msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "" @@ -122000,7 +121868,6 @@ msgid "" msgstr "" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "" @@ -122014,7 +121881,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "" @@ -122031,7 +121897,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "" @@ -122047,7 +121912,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "" @@ -122064,7 +121928,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "" @@ -122089,7 +121952,6 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "дерев'яна голка" @@ -122107,8 +121969,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "" @@ -122142,8 +122003,7 @@ msgid "" msgstr "" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "набір кравця" @@ -122161,7 +122021,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "" @@ -122175,7 +122034,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "" @@ -122189,7 +122047,6 @@ msgid "This is a simple scrub brush." msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "" @@ -122236,7 +122093,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "" @@ -122266,7 +122122,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "" @@ -122310,7 +122165,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "" @@ -122326,7 +122180,6 @@ msgid "" msgstr "" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "" @@ -122366,7 +122219,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "" @@ -122388,7 +122240,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "" @@ -122435,7 +122286,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" @@ -122456,7 +122306,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" @@ -122511,7 +122360,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "" @@ -122541,7 +122389,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "" @@ -122577,7 +122424,6 @@ msgid "" msgstr "" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "" @@ -122600,7 +122446,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "" @@ -122631,7 +122476,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "" @@ -122672,7 +122516,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "" @@ -122718,7 +122561,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "" @@ -122749,7 +122591,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "" @@ -122864,7 +122705,6 @@ msgid "" msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "" @@ -122878,7 +122718,6 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "" @@ -122888,7 +122727,6 @@ msgstr[3] "" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -123043,7 +122881,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "" @@ -123059,7 +122896,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "" @@ -123075,7 +122911,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "" @@ -123091,7 +122926,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "" @@ -123108,7 +122942,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "" @@ -123122,7 +122955,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "" @@ -123138,7 +122970,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "" @@ -123155,7 +122986,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "" @@ -123171,7 +123001,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "" @@ -123186,7 +123015,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "" @@ -123202,7 +123030,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "електричний відбійний молоток" @@ -123219,7 +123046,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "" @@ -123249,7 +123075,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "молоток" @@ -123282,7 +123107,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "" @@ -123300,7 +123124,6 @@ msgstr "" "виснажить." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "" @@ -123316,7 +123139,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "" @@ -123330,7 +123152,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "" @@ -123346,7 +123167,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "" @@ -123360,7 +123180,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "відбійний молоток" @@ -123380,7 +123199,6 @@ msgstr "" "твердій породі біля вас." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "" @@ -123396,7 +123214,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "" @@ -123414,7 +123231,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "" @@ -123431,7 +123247,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "саморобний молоток" @@ -123447,7 +123262,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "" @@ -123463,7 +123277,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "" @@ -123479,7 +123292,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "" @@ -123514,7 +123326,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "" @@ -123530,7 +123341,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "мультитул" @@ -123546,7 +123356,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "" @@ -123565,7 +123374,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "" @@ -123579,7 +123387,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "" @@ -123595,7 +123402,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "" @@ -123611,7 +123417,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "" @@ -123628,7 +123433,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "" @@ -123662,7 +123466,6 @@ msgstr "" "інструментом." #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "" @@ -123678,7 +123481,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "" @@ -123694,7 +123496,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "" @@ -123711,7 +123512,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "" @@ -123745,7 +123545,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "ящик з інструментами" @@ -123761,7 +123560,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "" @@ -123794,7 +123592,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "" @@ -123810,7 +123607,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "" @@ -123826,7 +123622,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "" @@ -123842,7 +123637,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "" @@ -123860,7 +123654,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "" @@ -123876,7 +123669,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "" @@ -123893,7 +123685,6 @@ msgid "" msgstr "" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "" @@ -125329,6 +125120,19 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -125710,7 +125514,6 @@ msgid "" msgstr "" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" @@ -126190,6 +125993,15 @@ msgstr[3] "" msgid "A crude wooden table." msgstr "" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -126561,6 +126373,34 @@ msgstr[3] "" msgid "A set of casters, like on a shopping cart." msgstr "" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -127423,13 +127263,6 @@ msgstr "" msgid "FERTILIZER" msgstr "" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "КАМІННЯ" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -127749,13 +127582,6 @@ msgstr "" msgid "PLASTIC" msgstr "" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -128309,7 +128135,7 @@ msgstr "" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "" @@ -128333,7 +128159,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "" @@ -132754,7 +132580,7 @@ msgstr[3] "" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "" @@ -132764,7 +132590,7 @@ msgstr[3] "" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "" @@ -142982,9 +142808,9 @@ msgstr "" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "" @@ -143717,9 +143543,9 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "" @@ -143735,9 +143561,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "" @@ -143765,25 +143591,25 @@ msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "" @@ -143803,9 +143629,9 @@ msgid "You've seen other survivors?" msgstr "" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "" @@ -150054,7 +149880,7 @@ msgstr "" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "" @@ -159721,17 +159547,17 @@ msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "" @@ -160931,7 +160757,7 @@ msgid "" msgstr "" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "" @@ -166629,9 +166455,9 @@ msgstr "" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "" @@ -176264,7 +176090,6 @@ msgid "" msgstr "" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "" @@ -176632,7 +176457,7 @@ msgid "island" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "" @@ -176654,7 +176479,6 @@ msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "" @@ -179407,7 +179231,6 @@ msgid "scrap yard" msgstr "" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "" @@ -179454,7 +179277,7 @@ msgstr "" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "" @@ -179579,6 +179402,13 @@ msgstr "" msgid "CBMS" msgstr "" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "ІНСТРУМЕНТИ" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -179592,7 +179422,7 @@ msgstr "" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "" @@ -179633,7 +179463,7 @@ msgstr "" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "" @@ -189373,7 +189203,7 @@ msgstr "" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -189452,6 +189282,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "" @@ -191173,6 +191010,24 @@ msgid "" "chair or grocery cart." msgstr "" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "" @@ -191242,7 +191097,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "" @@ -191310,6 +191165,10 @@ msgstr "" msgid "Carbon Fiber Bicycle" msgstr "" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "" @@ -191455,7 +191314,7 @@ msgid "Wheelbarrow" msgstr "" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" +msgid "Wheelchair" msgstr "" #: data/json/vehicles/carts.json @@ -191798,7 +191657,6 @@ msgid "Tour Bus" msgstr "" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "" @@ -198944,7 +198802,7 @@ msgid "Holographic Flash Explosion" msgstr "" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "" @@ -198952,8 +198810,8 @@ msgstr "" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -199977,9 +199835,9 @@ msgstr[3] "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -199994,7 +199852,7 @@ msgstr[3] "" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -218968,74 +218826,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "" @@ -219045,177 +218835,6 @@ msgstr "" msgid "Massively overhauls item categories to allow better sorting." msgstr "" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "" @@ -220448,117 +220067,136 @@ msgstr "" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" msgstr "" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" msgstr "" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "" + +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." msgstr "" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." msgstr "" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " "and has been decorated with several protection runes - mostly ornamental." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -220566,38 +220204,39 @@ msgid "" " been controlled with an app, if there was any power anymore." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "" @@ -220606,95 +220245,105 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " "can resmelt the magical metals into their workable, ingot form." msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" msgstr "" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" msgstr "" -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "" + +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "" @@ -220703,24 +220352,75 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -220728,25 +220428,25 @@ msgid "" msgstr "" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -220754,25 +220454,25 @@ msgid "" msgstr "" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -220780,7 +220480,7 @@ msgid "" msgstr "" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -220788,7 +220488,7 @@ msgid "" msgstr "" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -220798,7 +220498,7 @@ msgid "" msgstr "" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -220808,7 +220508,7 @@ msgid "" msgstr "" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -220818,7 +220518,7 @@ msgid "" msgstr "" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -220828,7 +220528,7 @@ msgid "" msgstr "" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -220837,7 +220537,7 @@ msgid "" msgstr "" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -220846,7 +220546,7 @@ msgid "" msgstr "" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -220856,7 +220556,7 @@ msgid "" msgstr "" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -220865,18 +220565,18 @@ msgid "" " particularly moved." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -220885,7 +220585,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -220893,18 +220593,18 @@ msgid "" "pull every trick out of the book." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -220914,7 +220614,7 @@ msgid "" msgstr "" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -220923,18 +220623,18 @@ msgid "" "power, as events unfolded…" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -220942,25 +220642,25 @@ msgid "" msgstr "" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -220968,59 +220668,91 @@ msgid "" msgstr "" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -221029,7 +220761,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -221038,25 +220770,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -221068,7 +220800,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -221079,25 +220811,25 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -221107,7 +220839,7 @@ msgid "" msgstr "" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -221117,12 +220849,12 @@ msgid "" msgstr "" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" msgstr[0] "" @@ -221130,7 +220862,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" msgstr[0] "" @@ -221138,7 +220870,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "" @@ -221146,7 +220878,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" msgstr[0] "" @@ -221154,559 +220886,613 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "" @@ -221718,245 +221504,218 @@ msgstr "" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -221964,487 +221723,507 @@ msgid "" "find out, though!" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "" @@ -222453,321 +222232,365 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" msgstr "" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" msgstr "" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" msgstr "" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "" + +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" @@ -222775,20 +222598,20 @@ msgstr "" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -222796,74 +222619,74 @@ msgid "" "non-solid targets." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -222871,21 +222694,21 @@ msgid "" msgstr "" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -222893,105 +222716,129 @@ msgid "" "foes reeling." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -222999,16 +222846,16 @@ msgid "" "dazed on the other side as you reorient yourself." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -223016,74 +222863,74 @@ msgid "" "responsibly!" msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -223091,350 +222938,350 @@ msgid "" msgstr "" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "" @@ -223443,7 +223290,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -223451,7 +223298,7 @@ msgid "" "together two disparate halves." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "" @@ -223460,52 +223307,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "" @@ -223514,13 +223322,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "" @@ -223529,13 +223337,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "" @@ -223544,13 +223352,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "" @@ -223559,62 +223367,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "" @@ -223623,14 +223382,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "" @@ -223639,13 +223398,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "" @@ -223655,45 +223414,13 @@ msgstr[3] "" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "" @@ -223702,14 +223429,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" @@ -223718,15 +223445,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." msgstr "" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "" @@ -223735,13 +223461,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" @@ -223749,8 +223475,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "" @@ -223758,8 +223484,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "" @@ -223767,11 +223493,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "" @@ -223779,7 +223505,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -223787,14 +223513,14 @@ msgid "" msgstr "" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" @@ -223804,13 +223530,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "" @@ -223819,13 +223545,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "" @@ -223834,13 +223560,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" @@ -223850,13 +223576,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "" @@ -223866,13 +223592,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "" @@ -223882,13 +223608,13 @@ msgstr[3] "" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "" @@ -223897,39 +223623,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "" @@ -223938,13 +223638,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "" @@ -223953,14 +223653,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "" @@ -223969,24 +223669,24 @@ msgstr[2] "" msgstr[3] "" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "" @@ -223995,13 +223695,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "" @@ -224011,12 +223711,12 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "" @@ -224026,12 +223726,12 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "" @@ -224040,13 +223740,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "" @@ -224055,13 +223755,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "" @@ -224070,14 +223770,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "" @@ -224086,14 +223786,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" @@ -224103,13 +223803,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" @@ -224117,7 +223817,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" @@ -224127,13 +223827,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" @@ -224143,13 +223843,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" @@ -224159,13 +223859,13 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" @@ -224175,14 +223875,14 @@ msgstr[3] "" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "" @@ -224191,14 +223891,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "" @@ -224207,14 +223907,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "" @@ -224223,14 +223923,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "" @@ -224239,14 +223939,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "" @@ -224256,12 +223956,12 @@ msgstr[3] "" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -224269,7 +223969,7 @@ msgid "" "the areas." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "" @@ -224278,13 +223978,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "" @@ -224293,328 +223993,287 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer rune" +msgid_plural "Biomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Biomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." +"This magical pebble has an insignia of rended flesh and bones on it. It is " +"necessary for Biomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer rune" +msgid_plural "Technomancer runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Technomancer rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." +"This magical pebble has an insignia of clockwork and gears on it. It is " +"necessary for Technomancers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus rune" +msgid_plural "Magi runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." +"This magical pebble has an insignia of crystal and mana orbs on it. It is " +"necessary for Magi to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper rune" +msgid_plural "Earthshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Earthshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." +"This magical pebble has an insignia of steel and rocks on it. It is " +"necessary for Earthshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist rune" +msgid_plural "Kelvinist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Kelvinist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of ice and flames on it. It is " +"necessary for Kelvinists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper rune" +msgid_plural "Stormshaper runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Stormshaper rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." +"This magical pebble has an insignia of lightning and storm clouds on it. It" +" is necessary for Stormshapers to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid rune" +msgid_plural "Druid runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Druid rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." +"This magical pebble has an insignia of nature and trees on it. It is " +"necessary for Druids to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist rune" +msgid_plural "Animist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'Animist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." +"This magical pebble has an insignia of summoners on it. It is necessary for" +" Animists to channel magic into their crafts." msgstr "" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" +#: data/mods/Magical_Nights/items/class_items.json +msgid "alchemist rune" +msgid_plural "alchemist runes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json +#. ~ Description for {'str': 'alchemist rune'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." +"This magical pebble has an insignia of alchemy and potions on it. While " +"versatile in use, the lack of attunement to any school prevents creation of " +"more advanced recipes." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Biomancer rune" -msgid_plural "Biomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of rended flesh and bones on it. It is " -"necessary for Biomancers to channel magic into their crafts." +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Technomancer rune" -msgid_plural "Technomancer runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of clockwork and gears on it. It is " -"necessary for Technomancers to channel magic into their crafts." +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Magus rune" -msgid_plural "Magi runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of crystal and mana orbs on it. It is " -"necessary for Magi to channel magic into their crafts." +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Earthshaper rune" -msgid_plural "Earthshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of steel and rocks on it. It is " -"necessary for Earthshapers to channel magic into their crafts." +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Kelvinist rune" -msgid_plural "Kelvinist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of ice and flames on it. It is " -"necessary for Kelvinists to channel magic into their crafts." +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Stormshaper rune" -msgid_plural "Stormshaper runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of lightning and storm clouds on it. It" -" is necessary for Stormshapers to channel magic into their crafts." +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Druid rune" -msgid_plural "Druid runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of nature and trees on it. It is " -"necessary for Druids to channel magic into their crafts." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "Animist rune" -msgid_plural "Animist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of summoners on it. It is necessary for" -" Animists to channel magic into their crafts." +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." msgstr "" -#: data/mods/Magiclysm/items/class_runes.json -msgid "alchemist rune" -msgid_plural "alchemist runes" +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json msgid "" -"This magical pebble has an insignia of alchemy and potions on it. While " -"versatile in use, the lack of attunement to any school prevents creation of " -"more advanced recipes." +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "" @@ -224623,7 +224282,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -224632,7 +224291,7 @@ msgid "" " liquid golden goodness inside." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "" @@ -224641,11 +224300,11 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "" @@ -224654,12 +224313,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" @@ -224668,14 +224327,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "" @@ -224684,12 +224343,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "" @@ -224698,13 +224357,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "" @@ -224713,14 +224372,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "" @@ -224729,13 +224388,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "" @@ -224744,13 +224403,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "" @@ -224759,13 +224418,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "" @@ -224774,4994 +224433,5663 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json +msgid "" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "" + +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json -msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." msgstr "" -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "" + +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "" + +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" -msgstr "" - -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." msgstr "" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "" + +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." +"You squeeze the seed in your palm, and it begins to turn to a fine dust." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" + +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." msgstr "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "" + +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "" + +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." +"This is a small mana crystal specifically designed to be attached to wand " +"tips." msgstr "" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." msgstr "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "" + +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "" + +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "" + +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json +msgid "" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "" + +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json +msgid "" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "" + +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" -msgstr[0] "" +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "" + +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "" + +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A copper ring that makes you a little more perceptive when you wear it." +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" - -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "" - -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "" - -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." +"A small composition notebook, containing spells created by a novice " +"magician." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "" - -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "" - -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "" - -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "" - -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." msgstr "" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "" + +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "" + +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "" + +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." msgstr "" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "" + +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." msgstr "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "" - -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" - -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "" - -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" - -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "" - -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "" - -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "" - -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." -msgstr "" - -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json -msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "" - -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "" - -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json -msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json -msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "" - -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "" + +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "" + +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "" + +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "" + +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "" + +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "" + +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "" + +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "" + +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "" + +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "" + +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "" + +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "" + +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "" + +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." -msgstr "" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." msgstr "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "" +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." msgstr "" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" - -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." msgstr "" -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "" - -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "" - -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." msgstr "" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "" - -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "" - -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "" @@ -229770,14 +230098,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "" @@ -229786,13 +230114,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "" @@ -229800,7 +230132,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "" @@ -229809,7 +230141,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -229818,7 +230150,7 @@ msgid "" msgstr "" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -229826,7 +230158,7 @@ msgid "" "kind of viscious black liquid that sizzles when it touches the ground." msgstr "" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "" @@ -229835,7 +230167,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -229843,19 +230175,19 @@ msgid "" " magic crackles around its chitinous barbs." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "" @@ -229864,14 +230196,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "" @@ -229880,7 +230212,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -229889,7 +230221,7 @@ msgid "" "fully grown, it is the size of a full-grown bull." msgstr "" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "" @@ -229898,14 +230230,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" msgstr[0] "" @@ -229914,14 +230246,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" msgstr[0] "" @@ -229930,14 +230262,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." msgstr "" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" msgstr[0] "" @@ -229946,14 +230278,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "" @@ -229962,13 +230294,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "" @@ -229977,7 +230309,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -229985,7 +230317,7 @@ msgid "" " golem-making hobby, and plastic golems have soared in popularity." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "" @@ -229994,12 +230326,12 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "" @@ -230008,13 +230340,99 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "" @@ -230023,7 +230441,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -230034,7 +230452,7 @@ msgid "" "claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "" @@ -230043,17 +230461,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "" @@ -230062,7 +230480,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -230072,7 +230490,7 @@ msgid "" " enemies, as well as summoning assistance when needed." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "" @@ -230081,7 +230499,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -230090,7 +230508,7 @@ msgid "" " teeth and claws." msgstr "" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "" @@ -230099,13 +230517,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "" @@ -230114,16 +230532,17 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "" @@ -230132,19 +230551,19 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "" @@ -230153,7 +230572,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -230162,12 +230581,12 @@ msgid "" msgstr "" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "" @@ -230175,7 +230594,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "" @@ -230184,7 +230603,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -230193,7 +230612,7 @@ msgid "" "nothing." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "" @@ -230202,14 +230621,14 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "" @@ -230218,13 +230637,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "" @@ -230233,13 +230652,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "" @@ -230248,13 +230667,13 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "" @@ -230263,144 +230682,195 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -230408,222 +230878,222 @@ msgid "" "you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -230631,48 +231101,48 @@ msgid "" "natural world is a savage place." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -230680,12 +231150,12 @@ msgid "" " and time is measured in geological eras." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -230693,12 +231163,12 @@ msgid "" "abilities, and certainly not their adaptability to any situation." msgstr "" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -230706,103 +231176,103 @@ msgid "" msgstr "" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -230811,204 +231281,204 @@ msgstr "" #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "" @@ -231017,24 +231487,24 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "" @@ -231043,48 +231513,68 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" msgstr "" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "" + #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" msgstr "Ручне встановлення біоніки" @@ -237785,6 +238275,10 @@ msgstr "" msgid "Toggle safe fuel mod" msgstr "" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "" @@ -237977,10 +238471,6 @@ msgstr "" msgid "View/Activate Bionics" msgstr "" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "" @@ -244037,6 +244527,7 @@ msgstr "" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" @@ -244105,6 +244596,10 @@ msgstr "" msgid "(incapacitated)" msgstr "" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "" @@ -244975,6 +245470,10 @@ msgstr "" msgid "Can't wear more than one %s!" msgstr "" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -260650,7 +261149,12 @@ msgid "Test which group?" msgstr "" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" +msgid "How many iterations to test?" +msgstr "" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" msgstr "" #: src/item_factory.cpp src/trait_group.cpp @@ -266640,7 +267144,13 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" msgstr "" #: src/magic.cpp @@ -271815,10 +272325,11 @@ msgstr "" msgid "%1$s slams %2$s to the ground!" msgstr "" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" +msgid "The %1$s kicks your %2$s for %3$d damage…" msgstr "" #: src/monattack.cpp @@ -276036,7 +276547,7 @@ msgstr "" msgid "Android" msgstr "" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "" @@ -283660,6 +284171,11 @@ msgstr "Сіялка транспорту (%s) відключилася чере msgid "Your %s winks out of existence." msgstr "" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -283801,6 +284317,16 @@ msgstr "Двигун (%s) видає дзижчання і не запускає msgid "Your %s is not fast enough to keep up with the %s" msgstr "" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -284393,11 +284919,6 @@ msgstr "" msgid "You let go of %s as you fold it." msgstr "" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/zh_CN.po b/lang/po/zh_CN.po index 5a7421d3b0ce..4f97ba1940a4 100644 --- a/lang/po/zh_CN.po +++ b/lang/po/zh_CN.po @@ -8,14 +8,15 @@ # 摸鱼哥, 2024 # Coolthulhu , 2024 # Zarathustra, 2024 -# hiro9888 , 2024 -# Jeremy Wu , 2024 +# hiro9888 , 2025 +# H_Hedgehog, 2025 +# Jeremy Wu , 2025 # msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" -"Last-Translator: Jeremy Wu , 2024\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" +"Last-Translator: Jeremy Wu , 2025\n" "Language-Team: Chinese (China) (https://app.transifex.com/bn-team/teams/113585/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -7725,6 +7726,17 @@ msgstr "调试用透视" msgid "You can see through everything!" msgstr "你感觉到自己可以看穿一切!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "辐射三角" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "只要你将它放在物品栏中,并且身处地面上,它每隔15分钟就会对你施加辐射!" + #: data/json/effects.json msgid "Took Xanax" msgstr "服用赞安诺" @@ -11056,7 +11068,7 @@ msgstr "开启" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "关闭" @@ -11504,75 +11516,91 @@ msgstr "弹匣" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "弹药" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "武器" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "工具" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "其他工具" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "破门工具" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "工作坊工具" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "烹饪工具" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "化学工具" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "农用工具" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "可部署设备" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "电子制品" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "服装" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "食物" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "烹饪原料" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "药剂" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "书籍" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "法术书" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "地图" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "改装模组" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "变异药剂" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "生化插件" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "载具部件" @@ -11586,51 +11614,89 @@ msgstr "载具部件" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "其他" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "燃料" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "种子" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "化学制品" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "电池" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "零件" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "金属废料" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "电子废料" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "织物" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "木头废料" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "塑料废料" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "陶瓷废料" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "玻璃废料" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "贵重物品" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "石砾" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "土壤" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "容器" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "神器" +#: data/json/item_category.json +msgid "MAPS" +msgstr "地图" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "穿戴物品" @@ -12373,12 +12439,12 @@ msgstr "尸体区" msgid "Destination for corpses" msgstr "所有尸体的分类放置区域。" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "地图区" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "所有地图的分类放置区域。" @@ -12420,6 +12486,177 @@ msgid "" "action." msgstr "使用\"整理战利品\"指令将不会整理该区域内的收藏物品。" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "其他工具区" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "其他工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "破门工具区" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "破门工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "工作坊工具区" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "工作坊工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "烹饪工具区" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "烹饪工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "化学工具区" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "化学工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "农用工具区" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "农用工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "可部署设备区" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "可部署设备的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "电子产品区" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "电子产品的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "烹饪原料区" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "烹饪原料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "金属废料区" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "金属废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "电子废料区" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "电子废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "织物废料区" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "织物废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "木头废料区" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "木头废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "塑料废料区" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "塑料废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "陶瓷废料区" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "陶瓷废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "玻璃废料区" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "玻璃废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "贵重物品区" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "贵重物品的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "石头区" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "石头和矿物的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "土壤区" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "土壤的放置区域。" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "禁止自动拾取" @@ -12936,7 +13173,7 @@ msgstr "" "\n" "命中按智力的 25% 增加,同时按敏捷的 25% 减少。 " -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "菲律宾剑棍术" @@ -12974,7 +13211,7 @@ msgstr "" "\n" "命中+2。" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "击剑" @@ -13015,7 +13252,7 @@ msgstr "" "被格挡的伤害按敏捷的 50% 减少。" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "战斗之花" @@ -13205,7 +13442,7 @@ msgstr "" "格挡值按力量的 25% 增加。\n" "+1.0 闪避技能" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "马伽术" @@ -13343,7 +13580,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "中世纪剑术" @@ -13426,7 +13663,7 @@ msgstr "" "\n" "格挡后的伤害按力量的 50% 减少。" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "忍术" @@ -13645,7 +13882,7 @@ msgstr "" "持续 1 回合。" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "班卡苏拉刀术" @@ -14950,7 +15187,7 @@ msgid "Resin" msgstr "树脂" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "凹损" @@ -14959,22 +15196,22 @@ msgid "gouged" msgstr "穿孔" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "刮花" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "划破" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "裂纹" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "破碎" @@ -14987,7 +15224,7 @@ msgid "bent" msgstr "扭曲" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "砸扁" @@ -14999,7 +15236,7 @@ msgstr "毁坏" msgid "Biosilicified Chitin" msgstr "硅化甲壳" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "缺口" @@ -15012,7 +15249,7 @@ msgid "Brass" msgstr "黄铜" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "划伤" @@ -15030,7 +15267,7 @@ msgstr "硬纸板" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "撕裂" @@ -15039,12 +15276,12 @@ msgid "torn" msgstr "扯烂" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "碎裂" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "破烂" @@ -15104,7 +15341,7 @@ msgstr "肉" msgid "bruised" msgstr "划痕" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "割裂" @@ -15526,7 +15763,7 @@ msgstr "自动" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19822,12 +20059,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "一直抱怨你收费过高的客户们他们现在只对敲开你脑壳吃你的脑子有兴趣。你说这是好事还是坏事?" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "牧师" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "女牧师" @@ -19852,18 +20089,18 @@ msgid "" "you." msgstr "当灾难来袭,你动用你最擅长的能力来保护你的教区信徒。但他们都死了,显然光做祷告好像没多大用嘛!现在,是时候找些更切实的手段保护你自己了。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "神主" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "巫女" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19872,7 +20109,7 @@ msgid "" msgstr "你曾是一个神社的住持,每天清扫着它,守护着它的宁静。你更喜欢只有逝者的灵魂居住在你的神社,而不是他们腐烂的尸体。" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19880,12 +20117,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "你曾是一个神社的巫女,每天清扫着它,守护着它的宁静。你更喜欢只有逝者的灵魂居住在你的神社,而不是他们腐烂的尸体。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "伊玛目" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "女伊玛目" @@ -19912,18 +20149,18 @@ msgid "" msgstr "" "在大灾变发生前,你一生中的大部分时间,都在本地的清真寺中的研读先知和古兰经中的字句,和在你的社区中布道度过了。但是现在,那些不远千里从四面八方过来的信教者们,都不再是为了听你的布道,而是为了来吃你的脑子来了。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "拉比" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "女拉比" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19931,19 +20168,19 @@ msgid "" msgstr "当灾变袭来时,你正在庙里和你的信徒们举行者宗教典礼。现在,你相信,救世主弥赛亚只能是你自己!" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "当灾变袭来时,你正在庙里和你的信徒们举行者宗教典礼。现在,你相信,救世主弥赛亚只能是你自己!" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "上师" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "女上师" @@ -19968,12 +20205,12 @@ msgid "" msgstr "" "你用了很多年来游历世界,以增长见识变得聪慧。通常,你可以给出任何的问题的答案,但是你现在被一堆饥饿的不死生物包围着,对自己下一步应该怎么做的问题毫无头绪。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "传教士" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "女传教士" @@ -20750,15 +20987,15 @@ msgstr "你曾经有一份给像是给自动道路清扫机器、派报机器人 #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "轮滑少年" +msgid "Skater Boy (Rollerblades)" +msgstr "轮滑仔" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "轮滑少女" +msgid "Skater Girl (Rollerblades)" +msgstr "轮滑妹" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20766,7 +21003,7 @@ msgid "" "can't roll." msgstr "你超爱轮滑!至少现在那些烦人的大人们不会再告诉你哪里不准滑了。" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20774,6 +21011,34 @@ msgid "" "can't roll." msgstr "你超爱轮滑!至少现在那些烦人的大人们不会再告诉你哪里不准滑了。" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "滑板仔" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "滑板妹" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "你超爱轮滑!你踩着滑板的时间比下地走路要多的多。一切都变得一团糟,但至少现在那些烦人的大人们不会再告诉你哪里不准滑了。" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "你超爱轮滑!你踩着滑板的时间比下地走路要多的多。一切都变得一团糟,但至少现在那些烦人的大人们不会再告诉你哪里不准滑了。" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -28023,7 +28288,6 @@ msgid "awl" msgstr "锥子" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "弯针" @@ -28139,7 +28403,6 @@ msgstr "拆弹" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "铁砧" @@ -28203,7 +28466,6 @@ msgid_plural "none" msgstr[0] "无" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "气泡垫" @@ -28223,21 +28485,18 @@ msgid "Crunch!" msgstr "嘎嚓!" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "行军床" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "集雨器" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "简易集雨器" @@ -28255,8 +28514,7 @@ msgid "microlab shifting hall" msgstr "微型实验室机关走廊" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "捕熊陷阱" @@ -28288,13 +28546,11 @@ msgid "tripwire" msgstr "绊索" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "自制周边警报器" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "十字弓陷阱" @@ -28335,7 +28591,6 @@ msgid "Swinnng!" msgstr "哐啷!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "地雷" @@ -28352,7 +28607,6 @@ msgid "buried land mine" msgstr "埋设的地雷" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "传送平板" @@ -28396,7 +28650,6 @@ msgid "ledge" msgstr "空中" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "诡雷" @@ -28407,14 +28660,12 @@ msgstr "玻璃刺陷坑" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "皮革集雨器" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "桦皮集雨器" @@ -28425,7 +28676,6 @@ msgstr "排水漏斗" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "金属集雨器" @@ -28789,7 +29039,8 @@ msgstr "大雨" msgid "Thunder Storm" msgstr "雷暴" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "闪电雷暴" @@ -28831,6 +29082,18 @@ msgid "" msgstr "" "这是一个实心立方体,重量比起它的尺寸所预估得要重得多。当你盯着它看时,你的目光会被它不断吸引,直到你仿佛从天而降般看见你和你周围环境的俯视图。" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "辐射三角" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "任何胆敢将此三角形物品放在物品栏中而不身处地下的人,每10分钟都会获得1到3点辐射值。" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28907,7 +29170,8 @@ msgstr "一个大型笨重的金属装置,用于冷却大面积区域,现在 #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "一声尖锐的金属断裂的声音!" @@ -28937,7 +29201,8 @@ msgstr "一声尖锐的金属断裂的声音!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "哐啷!" @@ -29281,7 +29546,6 @@ msgstr "一个用于清洗衣物的洗衣机,已停电,无法运行。" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "烤箱" @@ -29388,8 +29652,9 @@ msgstr "一块与该建筑电网相连接的风力发电机。" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "喀啦!" @@ -29633,7 +29898,7 @@ msgstr "一个连接到电网的便携式食物脱水机,用以加工并长期 #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "嘎嚓!" @@ -29661,7 +29926,7 @@ msgstr "嘎嚓!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "哐嘡。" @@ -29780,7 +30045,6 @@ msgstr "你开启了冰箱的电源。" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "冰箱" @@ -29839,7 +30103,6 @@ msgstr "你开启了冰柜的电源。" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "冰柜" @@ -30159,7 +30422,7 @@ msgstr "顶灯" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "玻璃破裂的声音!" @@ -30246,7 +30509,7 @@ msgstr "一个连接电网的灯光开关,这个是关闭的。" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -30273,7 +30536,7 @@ msgstr "咔嚓!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "哐嘡!" @@ -30442,7 +30705,7 @@ msgstr "一个冰冷的石雕。" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "重击声。" @@ -30779,7 +31042,7 @@ msgstr "一个在室内靠墙砌的生火取暖用的设备。" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "撞击声!" @@ -30796,7 +31059,6 @@ msgstr "一个用于加热和烹饪食物的火炉,可添加木柴等材料以 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "火盆" @@ -30808,7 +31070,6 @@ msgstr "一个金属盆,用于安全的燃烧物品。" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "流浪汉火炉" @@ -30822,7 +31083,6 @@ msgstr "小型的简易木制火炉,用金属罐或大小合适的类似容器 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "火桶(200L)" @@ -30843,7 +31103,6 @@ msgstr "用来烧火的大金属桶。它的桶壁上有多个孔以保障空气 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "火桶(100L)" @@ -30989,7 +31248,6 @@ msgstr "一种生长在淡水体表面的可爱的花。传统上与许多东方 #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "向日葵" @@ -31851,7 +32109,6 @@ msgstr "一个带有几个水龙头的机器,可以提供干净的水。也被 #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "净水器" @@ -32266,7 +32523,6 @@ msgstr "凳子" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "营地椅" @@ -32406,7 +32662,6 @@ msgstr "喀啦!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "床垫" @@ -32430,7 +32685,6 @@ msgstr "咝啦!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "羽绒床垫" @@ -32971,9 +33225,21 @@ msgid "" " heavy things." msgstr "用金属制成的坚固的工作台。它非常适合用来制造巨大而沉重的物品。" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "机器人工作台" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "在升级了基础工作台后,您现在已经创建了一个机器人工作台,可以帮助加快制作速度。" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "防水皮革" @@ -33006,7 +33272,6 @@ msgstr "沙沙~" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "纤维垫" @@ -33021,7 +33286,6 @@ msgstr "一种由纤维材料编织而成的大垫子,可代替野餐毯,但 #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "旅行餐桌" @@ -33519,7 +33783,6 @@ msgstr "用于金属锻造。" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "蒸馏器" @@ -33533,7 +33796,6 @@ msgstr "一个酿造业和化工业所必不可少的能够精炼液体混合物 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "炭窑(空)" @@ -33548,7 +33810,6 @@ msgstr "一个用于制造木炭的石头炉子,将木头材质或其他有机 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "炭窑(满)" @@ -33612,7 +33873,6 @@ msgstr "一个特制的用来熏制食物的架子,熏制食物能够长期保 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "金属烟熏架" @@ -33649,7 +33909,6 @@ msgstr "一个用来烧制各类陶制器具和砖块的炉子。" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "梯子" @@ -35138,7 +35397,7 @@ msgstr "高质量且坚固的方格地板,以减少滑倒和摔倒的风险, #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "噗通" @@ -35521,7 +35780,6 @@ msgstr "泥土地,看来土壤适合耕种。也可以开发建设项目。" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "黄沙" @@ -35777,7 +36035,6 @@ msgstr "一段现浇混凝土路面。因为缺乏维护而毁于冻胀和大裂 #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "混凝土" @@ -37436,7 +37693,6 @@ msgstr "一口收集地下水的深井。安装了一个水泵将水提到地面 #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "钚反应堆" @@ -38078,7 +38334,6 @@ msgstr "交通标志,用于指示水平铁路交叉口——如果火车还在 #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "窄轨轨道" @@ -39113,7 +39368,6 @@ msgstr "一面完全由蜡制成的墙。" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "坚岩" @@ -40041,7 +40295,6 @@ msgstr "这是一个下水井。沉重的铁制井盖盖在通往隐藏在地下 #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "井盖" @@ -40217,6 +40470,42 @@ msgstr "向上铁轨(底部)" msgid "The lower end of rail track leading up." msgstr "一段通往上层的铁轨底部。" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "向下混凝土坡(顶部)" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "一段通往下层的混凝土斜坡顶部。" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "向下混凝土坡(底部)" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "一段通往下层的混凝土斜坡底部。" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "向上混凝土坡(顶部)" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "一段通往上层的混凝土斜坡顶部。" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "向上混凝土坡(底部)" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "一段通往上层的混凝土斜坡底部。" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -40278,7 +40567,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "如果你在游戏中见到它,说明这里出bug了。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "缝衣线" @@ -40289,7 +40577,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "一小团细线,能装填在缝纫工具里使用。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "筋腱" @@ -40300,7 +40587,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "一小段从尸体上截下来的筋腱,能作为缝衣线的替代品使用。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "植物纤维" @@ -40311,7 +40597,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "一小段非常结实的植物纤维,能作为缝衣线的替代品使用。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "纱线" @@ -40332,7 +40617,6 @@ msgid "A cleansing agent made into bars." msgstr "一块可以用来清洗衣物或者制作其他物品的条形肥皂。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "强力胶带" @@ -40343,7 +40627,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "一卷十分牢固的强力胶带。用途非常广泛。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "卷烟纸" @@ -40354,7 +40637,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "一些能用来卷烟的细纸带。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "铜线" @@ -40399,7 +40681,6 @@ msgid_plural "watery plutonium slurry" msgstr[0] "液态钚浆" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "石头" @@ -40631,7 +40912,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "一块用途广泛的橡胶,很容易塑型。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "铜块" @@ -40676,7 +40956,6 @@ msgid "" msgstr "一种易燃的碳基材料,由缓慢燃烧的木材产生。可以在制造中提供纯净的高温火焰,也可用于过滤空气和水中的污染物。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "电石原料混合物" @@ -40894,7 +41173,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "将氧气和氮气以适度比例混合,用于潜水。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "火绒" @@ -40925,7 +41203,6 @@ msgid "A metal die used to play various role-playing games" msgstr "一个用来玩很多种角色扮演游戏的金属骰子。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "青铜" @@ -41240,7 +41517,6 @@ msgstr "磁轨弹" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "UPS" @@ -43177,7 +43453,6 @@ msgid "" msgstr "一小把纯硫磺。主要用于制造电池液,也能用用作爆炸物的燃料。可以点燃制造酸性烟雾,对细菌和人都是致命的,或者用于氧化漂白纸张。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "硫磺块" @@ -43190,7 +43465,6 @@ msgid "" msgstr "一块纯硫磺。打碎后可以使用。将其扔向某人可能会使他们的眼睛受到严重灼伤。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "水泥" @@ -43204,7 +43478,6 @@ msgid "" msgstr "一堆粉状水硬性无机粘合材料,加水搅拌后成浆体,可用于建筑。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "石灰岩" @@ -43218,7 +43491,6 @@ msgid "" msgstr "一把石灰石碎块。可用于科学实验,或者用弹弓发射。也许可以用来制造点什么…" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "生石灰" @@ -43241,7 +43513,6 @@ msgid "" msgstr "一大把原产自新英格兰的沙子。如果有焦炉的话可以烧玻璃,否则只能用来制造水泥。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "泥土" @@ -43266,7 +43537,6 @@ msgid "" msgstr "一小片石灰岩。非常脆弱,无法作为武器,但是它的碱性化学属性也许能有点用处。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "岩盐" @@ -43277,7 +43547,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "一大把岩盐结晶。可以被提炼为食盐。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "蔷薇辉石" @@ -43290,7 +43559,6 @@ msgid "" msgstr "一大块蔷薇辉石。二氧化锰纹路覆盖和贯通其中,可以用凿子采集。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "红锌矿" @@ -43650,7 +43918,6 @@ msgid "" msgstr "一小撮硝石。有时用于肥料制造,但这无所不在的硝酸盐是黑火药和基础火箭推进剂的主要组分。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "硝石矿" @@ -43663,7 +43930,6 @@ msgid "" msgstr "一大块结晶硝石矿石,以矿物形式存在的硝酸钾。它可以被处理成为硝石。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "铁矿石块" @@ -44018,7 +44284,6 @@ msgstr "" "这些经过加工的海藻的透明立方体可以溶解在沸水中,形成非常坚固,耐高温的凝胶。这种凝胶既可以用来当作电泳分离设备的溶剂基质,也还是保证你的果冻制造成功的秘密配方。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "钢制格栅" @@ -44063,7 +44328,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "一些核裂变燃料小球,处理时要多加小心。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "木珠" @@ -45537,7 +45801,6 @@ msgstr "一个又大又重的冰柜,用于餐馆、大型商店和其他需要 #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "玻璃冰箱" @@ -45549,7 +45812,6 @@ msgstr "一个玻璃冰箱。用于在商店中展示冷藏商品。" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "玻璃冰柜" @@ -45675,7 +45937,6 @@ msgid "" msgstr "一株枯萎的植物。适合生火或堆起来睡觉。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "毛皮" @@ -45686,7 +45947,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "这是由可爱的动物做成的毛皮,可以用来制造保暖的衣物。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "人造毛皮" @@ -45697,7 +45957,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "一小束颜色华丽的人造毛皮。可以用来制造保暖的衣物。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "皮革片" @@ -45708,7 +45967,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "一小块皮革片,可用于缝制坚实的衣物。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "毛毡片" @@ -45719,7 +45977,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "小块的毛毡片,可以拆解出羊毛纤维。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "芳纶布片" @@ -45730,7 +45987,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "一小卷防火芳纶纤维布片。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "万能胶" @@ -45741,7 +45997,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "一管强力胶,用来制造许多东西。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "骨胶" @@ -45774,7 +46029,6 @@ msgid "A token, representing fertilization of a plant." msgstr "一种标志性的经典植物用肥料。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "钢链" @@ -45789,7 +46043,6 @@ msgstr "" "\"我手持钢鞭将你打,打你这该死的活王八。\"" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "甲壳块" @@ -45800,7 +46053,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "这是一块昆虫的坚硬躯壳,它不仅轻巧,而且很耐用。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "气囊团" @@ -45830,7 +46082,6 @@ msgid "" msgstr "一套略微椭圆的圆盘,由高级陶瓷制成,让你想起鳞片。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "硅化甲壳块" @@ -45844,7 +46095,6 @@ msgid "" msgstr "一块经过生物硅化反应的昆虫外壳。防酸而且十分耐用。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "布条捆" @@ -45857,7 +46107,6 @@ msgid "" msgstr "一捆被紧紧地捆在一起以存放的棉布条,使用或拆解来解包布条。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "皮革片捆" @@ -45871,7 +46120,6 @@ msgid "" msgstr "一捆被紧紧地捆在一起以存放的皮革片,可拆解。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "毛毡片捆" @@ -45944,7 +46192,6 @@ msgid "" msgstr "拳头般大小的岩石。有着复杂的螺旋图形,你也不知道它是雕刻的,还是自然形成的,亦或是某种化石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "U盘" @@ -45955,7 +46202,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "一个U盘,用于存储电脑软件与数据。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "数据卡" @@ -45968,7 +46214,6 @@ msgid "" msgstr "某种类型的高级数据存储设备。用于存储大量信息。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "FEMA 数据库" @@ -45982,7 +46227,6 @@ msgid "" msgstr "撤离计划、灾难风险预测、人员名单以及灾变前最后一分钟的通信都从FEMA服务器上删除并存储在外部硬盘中。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "烛台" @@ -46029,7 +46273,6 @@ msgid "" msgstr "8吋圆锯刃片。可以拿它做把圆锯,扔出去也可以。边缘锋利,请先戴手套再扔它。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "树木插管" @@ -46043,7 +46286,6 @@ msgid "" msgstr "一根食指大小的中空金属管,把它深深地插进树皮里就可以从中缓慢的获得树汁。可以在晚冬早春时节从枫树里收集枫树树汁。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "铁丝" @@ -46056,7 +46298,6 @@ msgid "" msgstr "一条薄的、僵硬的钢丝,就像常见的铁丝网上的钢丝一样。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "倒钩铁丝" @@ -46067,7 +46308,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "一条有着锋利的倒钩的长线。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "钢丝网" @@ -46081,7 +46321,6 @@ msgid "" msgstr "一张细钢丝网,可以用作烘干机滤网或者用来滤咖啡。你也可以把它做成纱窗用来遮挡蚊虫,但是如今的蚊虫只需要勾花围栏就能挡住了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "钢筋" @@ -46140,7 +46379,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "一个已经燃烧完毕的照明弹。本质上是垃圾,且不可回收。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "弹簧" @@ -46188,7 +46426,6 @@ msgid "" msgstr "一个已经损坏的家庭装的帐篷,不能再重新展开供人使用。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "加热元件" @@ -46199,7 +46436,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "加热元件,通常用在电炉或电水壶等中。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "双金属恒温器" @@ -46211,7 +46447,6 @@ msgid "" msgstr "由双金属片的热膨胀控制的简单恒温器。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "电视机" @@ -46222,7 +46457,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "一台大屏幕液晶电视,接收不到信号无法观看电视节目,可以使用工具拆解以获得其中零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "辅助点火器" @@ -46259,7 +46493,6 @@ msgid "" msgstr "一个结构复杂的机械引信。它似乎可以在受到强烈撞击后引爆稳定炸药。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "烤面包机" @@ -46270,7 +46503,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "一个一次只能烤两片面包的小型烤面包机,没有独立电源所以无法使用,可以使用工具进行拆解以获得其中的零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "微波炉" @@ -46283,7 +46515,6 @@ msgid "" msgstr "一个家用微波炉,用微波加热食物的现代化烹调灶具,没有独立电源所以无法使用,可以使用工具进行拆解以获得其中的零件。" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "笔记本电脑" @@ -46293,9 +46524,7 @@ msgstr[0] "笔记本电脑" msgid "A broken laptop, basically a paperweight now." msgstr "一个已经无法开机的笔记本电脑,无法使用,可以使用工具进行拆解以获得其中的零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "眼球无人机(损坏)" @@ -46308,9 +46537,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "一台损坏的眼球无人机。因为再也不能呼叫支援所以不再构成威胁。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "掠行机器人(损坏)" @@ -46323,7 +46550,6 @@ msgid "" msgstr "一个损坏的掠行机器人。现在安静的散在地上构不成威胁了。可以拆解得到部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "实验室防御机器人(损坏)" @@ -46336,7 +46562,6 @@ msgid "" msgstr "一个损坏的实验室防御机器人,它的外壳破损,有液体从中流出。可以拆解得到部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "警用机器人(损坏)" @@ -46349,7 +46574,6 @@ msgid "" msgstr "一个损坏的警用机器人。看起来没什么威胁安静的躺在地上。可以拆解得到部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "护士机器人(损坏)" @@ -46362,7 +46586,6 @@ msgid "" msgstr "一个坏掉的护士机器人。它光滑的脸茫然地凝视着空气。可以拆解回收零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "食杂店机器人(损坏)" @@ -46382,7 +46605,6 @@ msgid "" msgstr "一个残缺损坏的食杂店机器人,面容黯淡却仍然带着微笑。可以拆解回收零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "搬运机器人(损坏)" @@ -46395,7 +46617,6 @@ msgid "" msgstr "一个坏掉的搬运机器人,现在只是一堆瘫废的机械臂和破烂底盘罢了。 现在只能用作零部件了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "防暴机器人(损坏)" @@ -46408,7 +46629,6 @@ msgid "" msgstr "一个损坏的防暴机器人。现在它催泪瓦斯已经耗尽构不成威胁了。可以拆解得到部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "原型机器人(损坏)" @@ -46420,9 +46640,7 @@ msgid "" " parts." msgstr "一台破损的原型机器人,至少是比之前更破。可以拆解回收零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "钻掘机器人(损坏)" @@ -46436,7 +46654,6 @@ msgid "" msgstr "已损坏的钻掘机器人。没有威胁,因为它再也钻不动了。可以拆解回收部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "侦察机甲(损坏)" @@ -46449,19 +46666,16 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "这是一套损坏的机甲,看起来已经没法修了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "起重机甲(损坏)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "战斗机甲(损坏)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "防暴派遣者(损坏)" @@ -46475,7 +46689,6 @@ msgid "" msgstr "一个损坏的防暴派遣者,它的腹部密集的舱位停满了烧焦的飞锯无人机,它的引擎已经完全失去了动力。可以拆解得到部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "军用派遣者(损坏)" @@ -46489,9 +46702,7 @@ msgid "" "spark of fear, even now. Could be gutted for parts." msgstr "一个损坏的军用派遣者。通过它腹部的破裂处,可以看到失能的飞锯无人机,它们闪烁着令人恐惧的火花,仍然隐藏着恐怖的破坏力。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "飞锯无人机(损坏)" @@ -46505,9 +46716,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "一个损坏的飞锯无人机。现在安静的散在地上构不成威胁了。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "榴弹无人机(损坏)" @@ -46520,9 +46729,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "一个损坏的榴弹无人机。现在安静的散在地上构不成威胁了。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "微型核弹无人机(损坏)" @@ -46535,9 +46742,7 @@ msgid "" "be gutted for parts." msgstr "一个损坏的红色无人机,即便如此也令人感觉不安。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "催泪弹无人机(损坏)" @@ -46550,9 +46755,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "一个损坏的催泪弹无人机。现在安静的散在地上构不成威胁了。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "EMP无人机(损坏)" @@ -46565,9 +46768,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "一个损坏的EMP无人机。现在安静的散在地上构不成威胁了。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "闪光弹无人机(损坏)" @@ -46580,9 +46781,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "一个损坏的闪光弹无人机。现在安静的散在地上构不成威胁了。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "C-4炸弹无人机(损坏)" @@ -46621,7 +46820,6 @@ msgid "" msgstr "一个从某些工业机械上回收的高功率激光源。单独使用无任何功能,但在电子工艺中可能会派上用场。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "主机板" @@ -46632,7 +46830,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "一个中央处理器,简称CPU。用于制造高级电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "内存" @@ -46643,7 +46840,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "一根内存条。用于制造高级电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "电力变换电路" @@ -46654,7 +46850,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "这是电源单元。用于制造许多电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "电流放大电路" @@ -46667,7 +46862,6 @@ msgid "" msgstr "一个用于放大信号的电路。用于制造许多电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "信号应答电路" @@ -46680,7 +46874,6 @@ msgid "" msgstr "一段用于重复某段信号的电路。用于制造通讯设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "信号接收器" @@ -46693,7 +46886,6 @@ msgid "" msgstr "一个用来接收多种形式信号的模块。用于制造通讯设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "大型LCD屏幕" @@ -46706,7 +46898,6 @@ msgid "" msgstr "一个大型背光式屏幕,用于显示图像。用于制造某些电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "小型LCD屏幕" @@ -46719,7 +46910,6 @@ msgid "" msgstr "一个小型背光式屏幕,用于显示图像。用于制造某些电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "高清镜头" @@ -46733,7 +46923,6 @@ msgid "" msgstr "此为高品质镜头,可以用来聚光或散光。或许可以用来生火。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "小型高清镜头" @@ -46747,7 +46936,6 @@ msgid "" msgstr "一个小型高品质镜头,可以用来聚光或散光。可用于制成其他物品。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "有色玻璃镜片" @@ -46760,7 +46948,6 @@ msgid "" msgstr "一对被染黑的小型玻璃镜片,就和用于制造太阳镜的玻璃镜片一样。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "烧毁的生化插件" @@ -46803,7 +46990,6 @@ msgstr "" "这是一个先进光学存储系统,包含了制造复杂硅光子电路所必须的指令。里面的数据显然曾经价值千万,但是事到如今,你不知道它除了拿来当个花哨的高科技镇纸之外还能用来做什么。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "天线" @@ -46814,7 +47000,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "一个简单的细铝轴承。用于制造许多电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "微型电动机" @@ -46827,7 +47012,6 @@ msgid "" msgstr "一种非常小的电动马达,就是用在电动遥控车中的那种。可用于制造各种电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "电路板" @@ -46840,7 +47024,6 @@ msgid "" msgstr "一块印刷好的板子,能将非导电衬底上的电子部件连接起来" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "电子废料" @@ -46864,7 +47047,6 @@ msgid "" msgstr "一个被设计用来将普通的无线电站转换为自动中继器的装置。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "台风扇" @@ -46875,7 +47057,6 @@ msgid "A small fan, used to propel air around a room." msgstr "一个小型风扇,可以用来使房间的空气流动。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "陶瓷装甲板" @@ -46900,7 +47081,6 @@ msgid "" msgstr "一个充满水的鱼缸,标签上写着\"送给艾德\"和里面的鱼的名字\"霍斯\",看起来鱼已经变异出微小的鹿角。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "布条" @@ -46931,7 +47111,6 @@ msgid "" msgstr "一块浸满了血液的破布,可以用开水把它洗干净。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "清洁通条" @@ -46945,7 +47124,6 @@ msgid "" msgstr "这是一种用于清洁管道、瓶子和类似物体内部表面的工具。这个足够细,可以用来清洗枪管内的灰尘和污垢。" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "时钟" @@ -46969,7 +47147,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "一小团齿轮和发条装置。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "SD存储卡" @@ -46980,7 +47157,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "一张使用过的存储卡。内容也许值得一看。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "SD存储卡(空)" @@ -46994,7 +47170,6 @@ msgid "" msgstr "这张存储卡要么是新的,要么就是已经被清空了。你可以激活它来存储数据。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "SD存储卡(加密)" @@ -47008,7 +47183,6 @@ msgid "" msgstr "这张存储卡好像被加密了。希望它里面是真的值得加密的内容。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "科学SD存储卡" @@ -47038,7 +47212,6 @@ msgid "" msgstr "一块铁制的大圆盘,通常用来盖在下水道的入口处。如果没有撬棍是几乎不可能将它移出井口。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "松树枝干" @@ -47051,7 +47224,6 @@ msgid "" msgstr "一根从松树上折下的树枝,断口出渗出粘糊糊的松脂,树枝上还带着一些绿色的松针。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "松塔" @@ -47083,7 +47255,6 @@ msgid "" msgstr "一朵向日葵的花蕾,有黄色的花瓣和一些尚未被动物吃掉的种子。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "洋甘菊" @@ -47095,13 +47266,11 @@ msgid "" msgstr "白洋甘菊花,自古以来用作草药。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "荷花" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "大戟花" @@ -47114,7 +47283,6 @@ msgid "" msgstr "一种黄绿色的花。花朵可以制成预防哮喘发作的茶。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "黏土块" @@ -47125,7 +47293,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "一块新鲜的黏土,用来制造许多东西。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "砖头" @@ -47136,7 +47303,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "经过火烤硬化后的建筑材料,用在各种砖石结构中。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "灰泥" @@ -47147,7 +47313,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "一堆灰泥,已经准备好,随时可以用到工程建设项目中。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "软黏土砖" @@ -47170,7 +47335,6 @@ msgid "" msgstr "一块压实的土壤和天然纤维,仍然太湿,无法用它建造。您可以把它装到托盘上,让它晾干以便批量处理。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "黏土砖" @@ -47183,7 +47347,6 @@ msgid "" msgstr "一块压实的土壤和天然纤维,烘焙得足够干燥,可以硬化成砖块。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "黏土浆" @@ -47196,7 +47359,6 @@ msgid "" msgstr "一团厚厚的泥巴糊,含沙量低,一旦干了就能减少碎裂。用来粘合更大更重的泥块和黏土。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "鞣料树皮" @@ -47207,7 +47369,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "一大块富含单宁的树皮,用于鞣制皮革。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "桦树树皮" @@ -47218,7 +47379,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "一片既坚硬又防水的树皮,从桦树上取得。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "柳树树皮" @@ -47231,7 +47391,6 @@ msgid "" msgstr "一片从柳树上取得的树皮,可用于制造阿司匹林。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "钻石" @@ -47242,7 +47401,6 @@ msgid "A sparkling diamond." msgstr "一颗闪闪发光的钻石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "石榴石" @@ -47253,7 +47411,6 @@ msgid "A sparkling garnet." msgstr "一颗闪闪发光的石榴石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "紫水晶" @@ -47264,7 +47421,6 @@ msgid "A sparkling amethyst." msgstr "一颗闪闪发光的紫水晶。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "海蓝宝石" @@ -47275,7 +47431,6 @@ msgid "A sparkling aquamarine." msgstr "一颗闪闪发光的海蓝宝石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "祖母绿" @@ -47286,7 +47441,6 @@ msgid "A sparkling emerald." msgstr "一颗闪闪发光的祖母绿。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "紫翠玉" @@ -47297,7 +47451,6 @@ msgid "A sparkling alexandrite." msgstr "一颗闪闪发光的紫翠玉。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "珍珠" @@ -47308,7 +47461,6 @@ msgid "A lustrous pearl." msgstr "一颗光滑圆润的珍珠。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "红宝石" @@ -47319,7 +47471,6 @@ msgid "A sparkling ruby." msgstr "一颗闪闪发光的红宝石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "橄榄石" @@ -47330,7 +47481,6 @@ msgid "A sparkling peridot." msgstr "一颗闪闪发光的橄榄石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "蓝宝石" @@ -47341,7 +47491,6 @@ msgid "A sparkling sapphire." msgstr "一颗闪闪发光的蓝宝石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "蛋白石" @@ -47352,7 +47501,6 @@ msgid "A lustrous opal." msgstr "一颗光滑圆润的蛋白石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "电气石" @@ -47363,7 +47511,6 @@ msgid "A sparkling tourmaline." msgstr "一颗闪闪发光的电气石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "黄水晶" @@ -47374,7 +47521,6 @@ msgid "A sparkling citrine." msgstr "一颗闪闪发光的黄水晶。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "蓝黄玉" @@ -47385,7 +47531,6 @@ msgid "A sparkling blue topaz." msgstr "一颗闪闪发光的蓝黄玉。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "硬皮" @@ -47399,7 +47544,6 @@ msgid "" msgstr "一张卷起来的硬皮。相比生皮去除了多余的皮毛和残留肌肉脂肪组织,并且进行了防腐处理。依旧经过鞣制和处理才能变成可使用的皮革。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "硬化毛皮" @@ -47435,7 +47579,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "一个老旧的稻草娃娃。看上去是个穿裙子的女性。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "枕头" @@ -47446,7 +47589,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "一个由棉花填充的睡眠工具,在睡觉时可以放松头部。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "抱枕" @@ -47459,7 +47601,6 @@ msgid "" msgstr "一个巨大的有身体大小的枕头,正面印有动画人物的图案,背面则是对应人物的紧身版本。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "羽绒枕" @@ -47470,7 +47611,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "一只软软的充填着羽绒的枕头。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "泰迪熊" @@ -47489,7 +47629,6 @@ msgid "" msgstr "一个可爱的毛绒泰迪熊。它穿着一件小小的红色t恤,但没有裤子。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "纸币卷" @@ -47539,7 +47678,7 @@ msgstr[0] "雪茄" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "熄灭" @@ -47648,7 +47787,6 @@ msgid "" msgstr "烟草的各个部分,富含尼古丁。需要先弄干后才能抽。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "现金卡" @@ -47674,7 +47812,6 @@ msgid "" msgstr "这张小小的透明卡连接到了原型机器人的CPU上。它可能包含对讲机提到的数据。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "三桶油银卡" @@ -47685,7 +47822,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "购买汽油的时候可以便宜一点的优惠卡。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "三桶油金卡" @@ -47696,7 +47832,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "购买汽油的时候可以便宜一些的优惠卡。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "三桶油铂金卡" @@ -47707,7 +47842,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "购买汽油的时候可以便宜不少的优惠卡。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "科学家ID卡" @@ -47721,7 +47855,6 @@ msgid "" msgstr "这张身份卡曾经是某个科学家用的。它的背面描述了使用方法,如果你找的到一个控制面板的话,可以在上面使用获得一次访问授权。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "军用ID卡" @@ -47735,7 +47868,6 @@ msgid "" msgstr "一张军方某个高层人士曾用的身份卡。它的背面描述了使用方法,如果你找的到一个控制面板的话,可以在上面使用获得一次访问授权。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "工业ID卡" @@ -47749,7 +47881,6 @@ msgid "" msgstr "这张身份卡曾经是某个高级工程师用的。它的背面描述了使用方法,如果你找的到一个控制面板的话,可以在上面使用获得一次访问授权。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "氯丁橡胶片" @@ -47799,7 +47930,6 @@ msgid "" msgstr "一种从残破的侦察外骨骼上剥离下来的远程武器系统。由于目前的状态无法再用作武器。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "灯泡" @@ -47820,7 +47950,6 @@ msgid "A twisted shard of jagged metal." msgstr "一块扭曲而凹凸不平的金属碎片。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "陶花盆" @@ -47831,7 +47960,6 @@ msgid "A nice looking clay pot used for planting." msgstr "一个漂亮的陶花盆,可以用来种植。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "塑料花盆" @@ -47955,7 +48083,6 @@ msgid "" msgstr "一套用于建造全功能焊接站的组件,具有焊接功能。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "音箱头" @@ -47967,9 +48094,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "一个音箱头,通常与扬声器柜配对,用于放大乐器的声音。现在基本上只能拆掉获得零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "炮塔(损坏)" @@ -47981,9 +48106,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "一个损坏的炮塔。现在安静的散在地上构不成威胁了。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "防暴炮塔(损坏)" @@ -47995,15 +48118,13 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "一个损坏的防暴炮塔。现在安静的散在地上构不成威胁了。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "激光炮塔(损坏)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "安保机器人(损坏)" @@ -48016,7 +48137,6 @@ msgid "" msgstr "一个损坏的安保机器人,它的外壳破损,有液体从中流出。可以拆解得到部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "M202A1 \"鹰爪\"型无人车(损坏)" @@ -48031,7 +48151,6 @@ msgid "" msgstr "一架损坏的\"鹰爪\"型无人车,它的外壳破损,有液体从中流出。可以拆解得到部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "耐火砖" @@ -48085,19 +48204,16 @@ msgid "" msgstr "一大块沉重的立方体食盐块,供牲畜食用。别舔它,太恶心了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "轻型炮塔(损坏)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "中型军用炮塔(损坏)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "长程军用炮塔(损坏)" @@ -48278,7 +48394,6 @@ msgid "" msgstr "这个带鬼脸的塑料南瓜里面有一大根蜡烛。它无法提供多少亮光,但是能够烧很久。它的蜡烛已经点燃,上面的鬼脸随着蜡烛的火焰晃动。" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "圣诞花环" @@ -48433,7 +48548,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "这是机器人模块的模板。如果在游戏中发现的话,它就是一个bug。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "瞄准模块" @@ -48446,7 +48560,6 @@ msgid "" msgstr "该模块通过将来自外围传感器的视觉和本体感知信息集成运算,输出精确瞄准所需要的信息。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "识别模块" @@ -48459,7 +48572,6 @@ msgid "" msgstr "该模块不断运行图像识别算法,以识别敌友。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "寻路模块" @@ -48472,7 +48584,6 @@ msgid "" msgstr "该模块使用向量集成和以自我为中心的映射相结合来找到最佳可用路径。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "存储模块" @@ -48483,7 +48594,6 @@ msgid "Allows for storage and recovery of information." msgstr "该模块能够储存和恢复信息。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "传感器阵列" @@ -48496,7 +48606,6 @@ msgid "" msgstr "各种各样用于感知周围的世界情况的传感器。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "自诊断传感器" @@ -48509,7 +48618,6 @@ msgid "" msgstr "一组使机器人能够感知到自己的传感器和诊断模块。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "AI核心" @@ -48522,7 +48630,6 @@ msgid "" msgstr "该模块负责决策,机器人的 AI 基本上靠它运行。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "基础AI核心" @@ -48533,7 +48640,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "只拥有最小认知能力的基础人工智能核心。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "高级AI核心" @@ -48544,7 +48650,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "拥有令人印象深刻的认知能力的高级人工智能核心。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "枪械操作系统" @@ -49017,7 +49122,6 @@ msgid_plural "software" msgstr[0] "软件" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "杂项软件" @@ -49028,7 +49132,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "一堆有趣的小型软件打包,没什么用处。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "高级黑客工具" @@ -49039,7 +49142,6 @@ msgid "A piece of hacking software." msgstr "一套黑客软件。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "医疗软件" @@ -49050,7 +49152,6 @@ msgid "A piece of medical software." msgstr "一套医疗软件。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MatheMAX" @@ -49061,7 +49162,6 @@ msgid "A piece of mathematical software." msgstr "一套数学软件。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "感染数据" @@ -49072,7 +49172,6 @@ msgid "Medical data on zombie blood." msgstr "丧尸血液的医疗数据。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "实验数据" @@ -49083,7 +49182,6 @@ msgid "Research archives from a government laboratory." msgstr "一份来自政府实验室的实验数据。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "列车数据" @@ -49094,7 +49192,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "一份关于地铁列车路线和时刻表的后勤数据。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "神经数据" @@ -49111,7 +49208,6 @@ msgstr "" "无论如何,将你的一部分永远留在金属胶囊中的构想,让你感到不舒服。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "集成电路参数表" @@ -49729,7 +49825,7 @@ msgstr[0] "原子头灯" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "关上灯罩" @@ -49762,7 +49858,7 @@ msgstr[0] "原子头灯(关)" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "打开灯罩" @@ -51946,7 +52042,7 @@ msgstr "一种自制的40x46mm猎鹿弹头榴弹,弹道特性接近于 M576 #: data/json/items/ammo/40x46mm.json msgid "improvised 40x46mm slug" msgid_plural "improvised 40x46mm slugs" -msgstr[0] "40x46mm独头弹(复装)" +msgstr[0] "40x46mm 独头弹(复装)" #. ~ Description for {'str': 'improvised 40x46mm slug'} #: data/json/items/ammo/40x46mm.json @@ -51967,7 +52063,7 @@ msgstr "一种复装的40x46mm子弹,类似于一个超大的霰弹枪子弹 #: data/json/items/ammo/40x46mm.json msgid "improvised 40x46mm flechette" msgid_plural "improvised 40x46mm flechettes" -msgstr[0] "40x46mm镖型弹(复装)" +msgstr[0] "40x46mm 镖型弹(复装)" #. ~ Description for {'str': 'improvised 40x46mm flechette'} #: data/json/items/ammo/40x46mm.json @@ -53147,7 +53243,6 @@ msgid "" msgstr "微型钢镖,可以被射钉枪或者其他类似武器发射,或用来制造弹药。" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "钉子" @@ -53705,7 +53800,8 @@ msgid "" "additional weight. It has four pouches capable of carrying magazines." msgstr "一件模块化防弹背心,插入了超合金装甲板来进一步增强防护性能,不过重量略为增加,且较不灵活。它有着四个能装下弹匣的口袋。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "箭筒" @@ -53717,7 +53813,8 @@ msgid "" "store arrows." msgstr "一个佩戴在腰部、可容纳20支箭的皮革箭筒。使用它以存储箭支。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "桦皮箭筒" @@ -53729,7 +53826,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "一个可佩戴在腰部、可容纳20支箭的桦树皮箭筒。使用它以存储箭支。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "大箭筒" @@ -53742,7 +53840,8 @@ msgid "" "but neither of THEM had to fight zombies. Activate to store arrows." msgstr "一个佩戴在后背、可容纳60支箭的皮革大箭筒,有着金属镶边。使用它以存储箭矢。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "桦皮大箭筒" @@ -54216,7 +54315,7 @@ msgstr[0] "飞刀弹带" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "你将 %s 收鞘。" @@ -54454,7 +54553,7 @@ msgstr[0] "皮带" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "你将 %s 放进你的 %s 里" @@ -54464,14 +54563,14 @@ msgstr "你将 %s 放进你的 %s 里" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "选择要挂在腰带上的物品" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "一条皮革腰带。能让裤子穿起来更合身。" @@ -56896,7 +56995,7 @@ msgstr[0] "幸存者手套" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -64244,7 +64343,7 @@ msgstr[0] "旅行背包" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "收刀" @@ -71781,8 +71880,8 @@ msgstr[0] "基础发射器" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "单发" @@ -71892,7 +71991,7 @@ msgstr[0] "基础霰弹枪" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -71909,7 +72008,7 @@ msgid_plural "pump action shotguns" msgstr[0] "泵动式霰弹枪" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "咔嚓咔嚓。" @@ -73578,15 +73677,13 @@ msgid "" msgstr "一份由来自某种动物的胸腺或胰腺组成的杂碎。如果料理得当的话,它会是美味佳肴。" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "血液" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "一些血液,甚至可能是人血。看着可真恶心!" @@ -73769,8 +73866,7 @@ msgid "" msgstr "一块干法炼制的白色变异人脂肪。可以保存很久并食用,而且在很多食物和物品的制造配方中会用到。" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "被感染的血液" @@ -83816,6 +83912,19 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "这是大米种子的剩余外层,这种植物物质在营养上相当丰富,并可用于制作优质的食用油。" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "通用三明治" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "如果你能看到这个,那么你本不应该看到。这只是为了解决一些愚蠢的复制问题。" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -87727,7 +87836,6 @@ msgid "generic item template" msgstr "一般物品模板" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "剃须刀" @@ -87740,7 +87848,6 @@ msgid "" msgstr "一把剃须刀,刀片安装在一个舒适的手柄上。用剃须刀刮胡子比起直接用剃须刀片来要容易得多。也可用于一些基本的精细切割工作。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "发梳" @@ -87784,7 +87891,6 @@ msgid "" msgstr "一根长25码的细蜡线缠绕在一个塑料容器上。最适合用来取出塞在牙齿上的熏肉。拆解它可获得细线。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "梳子" @@ -87818,7 +87924,6 @@ msgid "" msgstr "一把带有折叠铰链的梳子,想当油头滑面的时髦少年就带上它吧。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "吹风机" @@ -87831,7 +87936,6 @@ msgid "" msgstr "一个通过加热线圈及推动空气使你的头发变干的电动工具。在没有能运作的电网之后,这不过是一个机械化的镇纸。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "卷发钳" @@ -87922,12 +88026,12 @@ msgstr "7.62x51mm '.308 温彻斯特弹'的空弹壳。" #: data/json/items/generic/casing.json msgid "7.62x51mm casing" msgid_plural "7.62x51mm casings" -msgstr[0] "7.62x51mm弹壳" +msgstr[0] "7.62x51mm 弹壳" #. ~ Description for {'str': '7.62x51mm casing'} #: data/json/items/generic/casing.json msgid "An empty casing from a 7.62x51mm M80 round." -msgstr "7.62x51mm子弹的空弹壳。" +msgstr "7.62x51mm 子弹的空弹壳。" #: data/json/items/generic/casing.json msgid ".32 ACP casing" @@ -88388,7 +88492,6 @@ msgid_plural "generic cook pots" msgstr[0] "一般烹饪锅" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "陶瓷碟" @@ -88399,7 +88502,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "陶瓷餐盘,各方面都不起眼。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "陶瓷碗" @@ -88410,7 +88512,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "非常普通的陶瓷汤碗。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "陶瓷杯" @@ -88421,7 +88522,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "轻陶瓷茶杯。相当优雅。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "咖啡马克杯" @@ -88501,7 +88601,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "马克杯的测面写着“肆♂意♂纵♂酒”。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "锡盘" @@ -88512,7 +88611,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "锡制餐盘,轻巧而紧凑。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "锡杯" @@ -88525,7 +88623,6 @@ msgid "" msgstr "搪瓷锡杯。非常适合露营或监狱使用;敲着杯沿叮当作响,发出美妙的声音。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "锡碗" @@ -88536,7 +88633,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "无盖的小锡碗。 容纳250毫升液体。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "玻璃水杯" @@ -88547,7 +88643,6 @@ msgid "A tall drinking glass." msgstr "一个高高的玻璃水杯。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "玻璃酒杯" @@ -88560,7 +88655,6 @@ msgid "" msgstr "高脚玻璃酒杯,让你喝酒时自觉品味非凡。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "玻璃碗" @@ -88593,7 +88687,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "一个带有方便密封盖的塑料碗,可以储存750毫升液体。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "儿童碗" @@ -88635,7 +88728,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "这个碗上有着可爱的农场动物做装饰。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "吸管杯" @@ -88676,7 +88768,6 @@ msgid "" msgstr "这个小杯上装饰着蜡笔字般的文字,上面写着“我爱你”。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "铁锅" @@ -88687,7 +88778,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "一个铁制锅子,烹饪食物的传统厨具,多用于煮饭烧水等炊事工作。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "铸铁锅" @@ -88699,7 +88789,6 @@ msgid "" msgstr "这款厚重的黑色锅由铸铁制成,并涂有坚固的珐琅。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "铜锅" @@ -88712,7 +88801,6 @@ msgid "" msgstr "一个铜制锅子,烹饪食物的传统厨具,用来烧水煮面条或其他东西,由铜制成,里面镀着一层锡以防止酸性食物侵蚀。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "砂锅" @@ -88725,7 +88813,6 @@ msgid "" msgstr "一只陶瓷砂锅,能烹饪或者上菜用,特别是当晚餐是一锅烩菜的时候。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "汤锅" @@ -88738,7 +88825,6 @@ msgid "" msgstr "一只用来熬汤的大锅。稍微挤挤的话,你可以塞进去一整只火鸡。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "水浴锅" @@ -88755,7 +88841,6 @@ msgstr "" "一个容量25升的非常大的锅,主要是用于水浴法让玻璃瓶罐装食物,当然它同样可以当作厨具烹饪普通食物。罐装食品需要大量的水。如果你只是一次装几个罐子的话,你需要先放些石头或什么东西抬升水位没过罐子的盖子。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "铸铁煎锅" @@ -88767,7 +88852,6 @@ msgid "" msgstr "一只铸铁煎锅。一种不错的近战武器,且能用于烹饪。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "钢制煎锅" @@ -88779,7 +88863,6 @@ msgid "" msgstr "一只钢制煎锅。一种不错的近战武器,且能用于烹饪。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "铜煎锅" @@ -88792,7 +88875,6 @@ msgid "" msgstr "一只铜制煎锅,外部镀了薄薄一层锡。一种不错的近战武器,且能用于烹饪。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "简易锅" @@ -88805,7 +88887,6 @@ msgid "" msgstr "粗暴地砸凹金属板造出来的锅子。烹食煮水倒是够用了,但是跟正常的锅子比肯定是不成的。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "简易铜锅" @@ -88818,7 +88899,6 @@ msgid "" msgstr "粗暴地砸凹铜料造出来的锅子。烹食煮水倒是够用了,但是跟正常的锅子比肯定是不成的。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "烧水壶" @@ -89118,7 +89198,6 @@ msgid "" msgstr "一根3英尺(约90厘米)长的生皮或皮革绳。适用于某些用途,但没有标准绳子那么坚固或灵活。" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "短线" @@ -89129,7 +89208,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "一根六英寸(约15厘米)长的棉线。" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "长线" @@ -90347,7 +90425,7 @@ msgstr "一把源自意大利的双管半自动手枪,每次发射两发子弹 #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "双发" @@ -93266,7 +93344,7 @@ msgstr "这是一个伪物品——核聚变爆破器的内置部分,用于最 #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "枪管下挂件" @@ -93576,7 +93654,7 @@ msgid "" msgstr "装有气门的枪管通过改变排放气体的方向来降低枪口上扬的幅度,改善了后坐力但是增大了噪音并且轻微的降低了精度。" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "枪口" @@ -93746,7 +93824,7 @@ msgid "" msgstr "一套包括弩臂和导轨的组件,可安装在长枪的枪管上,发射弩矢。" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "导轨" @@ -93823,7 +93901,7 @@ msgstr "小型可见激光发射器,可安装在枪械上,增加命中率与 #: data/json/items/gunmod/rail.json msgid "gyroscopic stabilizer" msgid_plural "gyroscopic stabilizers" -msgstr[0] "稳定陀螺仪" +msgstr[0] "陀螺稳定仪" #: data/json/items/gunmod/rail.json msgid "" @@ -93834,7 +93912,7 @@ msgstr "一个安装在枪械侧面的高级模组,可减轻枪械震动,极 #: data/json/items/gunmod/rail.json msgid "modified gyroscopic stabilizer" msgid_plural "modified gyroscopic stabilizers" -msgstr[0] "改装稳定陀螺仪" +msgstr[0] "改装陀螺稳定仪" #: data/json/items/gunmod/rail.json msgid "" @@ -93857,7 +93935,7 @@ msgid "" msgstr "一套可调节的光学镜片和瞄准针具,以及能安装在现代弓上的支架。极大地提升了命中率,但需要很长时间瞄准。" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "瞄准器" @@ -97706,13 +97784,11 @@ msgid "" msgstr "一根由高科技材料制成的长而锋利的丝线,末端带有一个小配重。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "通用菜刀" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "屠宰刀" @@ -97725,7 +97801,6 @@ msgid "" msgstr "一把锋利而厚重的刀子。是把不错的近战武器,也是用于屠宰尸体的理想工具。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "牛排刀" @@ -97738,7 +97813,6 @@ msgid "" msgstr "一把较为尖锐、带有小锯齿的西餐餐具,设计用来在餐桌上切牛排,亦可用来屠宰尸体。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "削皮刀" @@ -97751,7 +97825,6 @@ msgid "" msgstr "这是一把刀口锋利的短刃刀,可以在不使用砧板的情况下对蔬菜进行精细切割。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "厨刀" @@ -97767,7 +97840,6 @@ msgstr "" "这是一把长刃菜刀。刀片比手柄宽,为持用者的指关节提供了空间,并且它具有的独特弧度利于切割蔬菜的快速摆动。它是一种很好的近战武器,但宽刃用于屠宰相当笨拙。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "切肉刀" @@ -97781,7 +97853,6 @@ msgid "" msgstr "这是一把长刃菜刀,有一个轻薄的、稍微弯曲的刀刃,能够灵巧地将肉切成薄片或剃干净骨头。这将是一种不错的近战武器,非常适合用来屠宰尸体。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "面包刀" @@ -97795,7 +97866,6 @@ msgid "" msgstr "这把刀有相当长的刀刃,刀刃呈扇形,用来切面包。它没有那么锋利,但是它的长度和重量意味着它会造成一点伤害,并引起一些严重的撕裂。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "蔬菜切刀" @@ -97809,7 +97879,6 @@ msgid "" msgstr "这是一把看起来很凶险的刀,刀身宽大,呈方形。刀刃弯曲能够快速切开蔬菜。它的分量和锋利度也会使它成为一种不错的武器,虽然不如剁肉刀。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "剁肉刀" @@ -101067,7 +101136,6 @@ msgid "" msgstr "一些粉状的彩色染布染料,如果与水和媒染剂结合在一起,可用于多种织物的染色。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "玻璃碎片" @@ -101080,7 +101148,6 @@ msgid "" msgstr "一片碎玻璃,边缘锋利。包上一块布可以作为一个原始的武器使用。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "玻璃片" @@ -101100,7 +101167,6 @@ msgid "" msgstr "一整块玻璃,超级容易碎。用于维修窗户。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "钢化玻璃片" @@ -101112,7 +101178,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "一大片的钢化玻璃。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "钢化玻璃碎块" @@ -101124,7 +101189,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "一小块钢化玻璃。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "钢化玻璃片" @@ -101219,7 +101283,6 @@ msgid "A roll of purple carpet." msgstr "一卷紫地毯。" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "门用窥视镜" @@ -101232,7 +101295,6 @@ msgid "" msgstr "一个内嵌小透镜的金属圆筒,安装在门上,你可以用它来观察门外的景象。" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "防虫网" @@ -101243,7 +101305,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "一卷细密的防虫网,可以装在门廊上。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "钢管" @@ -101255,7 +101316,6 @@ msgid "" msgstr "一根坚硬的钢管,作为武器重量合适、造型称手,是一款出色的打击武器。亦有其它用途。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "金属废料" @@ -101269,7 +101329,6 @@ msgstr "各式各样的小块金属碎片,经过整理,可用于制造各种 #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "钉刺" @@ -101282,7 +101341,6 @@ msgid "" msgstr "又大又尖的钉子,可以装载车上对对方造成轻微伤害。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "铜管" @@ -101295,7 +101353,6 @@ msgid "" msgstr "一根铜管,管壁太薄,不适合作为近战武器,但在没有其他武器是也能勉强使用。可用作一些制造配方的原料。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "铝锭" @@ -101309,7 +101366,6 @@ msgid "" msgstr "一个小型铝锭,已经按后续要求标准化。轻巧而结实,它可以被用在各种建筑中或者研成粉末,用于更加……高调的行动中。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "铋块" @@ -101320,7 +101376,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "一种高密度但脆性较高的金属,常用作铅的替代品。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "金块" @@ -101334,13 +101389,11 @@ msgid "" msgstr "一块质地柔软光泽闪亮的金属。灾变之前这会值不少钱,但现在它的价值大打折扣。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "铂金块" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "锌" @@ -101355,7 +101408,6 @@ msgid "" msgstr "一种稍微有些易碎的金属。除了是人体必需的微量元素之一外,它和酸、碱或其他非金属也很容易发生反应,因此可以打碎成锌粉用于电池等物品的制造。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "铅块" @@ -101368,7 +101420,6 @@ msgid "" msgstr "一种质地柔软的钝性金属,自古以来就被人们所知。由于其延展性可用于弹药制造等多种用途。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "镁粉" @@ -101381,7 +101432,6 @@ msgid "" msgstr "一种灰色粉末,主要成分是高可燃性的碱土金属镁。用于制造信号弹和类似物品。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "银块" @@ -101396,7 +101446,6 @@ msgstr "" "\"据说用银做的子弹可以对僵尸造成更大的伤害,但可惜敌人是丧尸。\"" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "小型薄钢板" @@ -101407,7 +101456,6 @@ msgid "A small sheet of metal." msgstr "一小片薄钢板。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "钢块" @@ -101420,7 +101468,6 @@ msgid "" msgstr "一块扭曲变形的钢块。在紧要关头时可以用来当作武器,此外也可以用于制造物品。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "钢锭" @@ -101431,7 +101478,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "一大块沉重的经过成型的钢铁,可用于制造物品。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "门铰链" @@ -101444,7 +101490,6 @@ msgid "" msgstr "由两个带螺孔的金属板组成的小金属铰链。用来制造活页门。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "废铜料" @@ -101455,7 +101500,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "一小块的铜,可以用来制造或修理物品。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "锡" @@ -101468,7 +101512,6 @@ msgid "" msgstr "锡可以用来制作焊料,也可以镀在容器上防止腐蚀。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "焊料" @@ -101505,7 +101548,6 @@ msgstr "" "\"骑上它是不能飞的。\"" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "陶瓷碎片" @@ -101562,7 +101604,6 @@ msgid "" msgstr "一小段导火索,长度足够让你有时间逃离爆炸。" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "坚锐岩块" @@ -101626,7 +101667,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "一个羊毛床垫。它相当柔软舒适。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "塑料片" @@ -101652,7 +101692,6 @@ msgid "" msgstr "一卷細緻的碳素纤维絲,用來製作輕巧又堅固的物品。 如果您有3D打印机,這將非常有用,更先進的機型甚至可以讓您製作更多。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "化纤布片" @@ -101666,8 +101705,6 @@ msgid "" msgstr "一小束合成化纤。与你和其他天然材料不同,它不会随着年龄的增长而衰老退化。不过也许现在这不算什么坏事了。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "塑料薄膜" @@ -101680,7 +101717,6 @@ msgid "" msgstr "这是一种大型的柔性塑料薄膜,这种塑料可能用于商业包装或密封房屋。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "硬塑料板" @@ -101693,7 +101729,6 @@ msgid "" msgstr "一整片坚硬的半透明塑料,可用于各种用途;从搭建建筑到艺术作品,甚至还能当作入门级滑雪板使用。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "塑料废料" @@ -101706,7 +101741,6 @@ msgid "" msgstr "这是一小块塑料。本身无用,但是收集够多就可以融成塑料片。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "原木" @@ -101719,7 +101753,6 @@ msgid "" msgstr "砍倒树木得到的一大块原木,斧头对着它使用可以把它切成木板。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "碎木" @@ -101730,7 +101763,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "一根被劈成细条的木片,可用来串肉或者作为燃火用品。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "重木棍" @@ -101741,7 +101773,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "一根结实沉重的棍子,可以当作一个不错的近战武器。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "长木棍" @@ -101754,7 +101785,6 @@ msgid "" msgstr "一根长长的棍子,既能做武器,也能拆解成重木棍作为制造材料使用。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "长杖" @@ -101766,8 +101796,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "一根十英尺(3米)长的粗壮杆子。能当作矛使。大灾变的情况下拿着一根大棍子轻悄悄的走路还算有点新意。" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "木板" @@ -101781,7 +101810,6 @@ msgid "" msgstr "一块尺寸大概有2x4平方英寸的狭窄而厚实的木板。当做近战武器刚好趁手,也可用于各种建造。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "重木梁" @@ -101795,7 +101823,6 @@ msgid "" msgstr "巨大的实木梁,很重,很难被拖动,但对于建筑来说也很坚固。你可以把它锯成小块,比如木板或中木板。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "中木板" @@ -101811,7 +101838,6 @@ msgstr "" "一种宽而薄的胶合板、纤维板或欧松板,已经切割成型并打孔好凹槽。非常适合建造各种建筑。但是对于真正的大型项目来说,你可能需要更合适的未切割的板材。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "大木板" @@ -101826,7 +101852,6 @@ msgstr "" "一块标准的4X8大小的大木板,通常是胶合板、欧松板或纤维板类似材质。又沉又笨重,它能够被用于建造各种建筑,不过也许你需要在建造小型建筑前将它切割成合适的尺寸。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "燃料砖" @@ -101859,7 +101884,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "一个水密的可折叠塑料瓶,能储存500毫升的液体。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "原子咖啡机" @@ -101878,7 +101902,6 @@ msgstr "" "G型原子咖啡机在大多数国家都被禁用。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "屠宰工具箱" @@ -101902,7 +101925,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "这是一个虚拟物品,正常不应该出现在你的游戏里。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "罐头封装机" @@ -101915,7 +101937,6 @@ msgid "" msgstr "手摇驱动的铸铁机器,用于自动封装罐头。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "电动切肉刀(关)" @@ -101953,7 +101974,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "这把切肉刀已经启动,刀锋正嗡嗡作响。激活它来关闭。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "炭滤净水器" @@ -101969,7 +101989,6 @@ msgstr "" "这个物品专门用来吸取纯净水源,使用三层滤网,和活性木炭过滤,一旦木炭吸取了足够的杂质,将变得无法使用,只能拆解回收。从河流之类的不明水源取得的水有可能被污染。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "便携式木炭烤架" @@ -101982,7 +102001,6 @@ msgid "" msgstr "一个便携式木炭烤架,适合周末烧烤或者熏制鲜肉以便长期保存。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "木炭炉" @@ -101995,7 +102013,6 @@ msgid "" msgstr "一个附带点火器的小型金属容器,里面可以填充木炭。可以用来烹煮食物。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "陶锅" @@ -102006,7 +102023,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "一个粗糙的带把陶锅,可以用来做饭。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "陶磨" @@ -102017,7 +102033,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "一个简单的手推陶磨,用来磨面粉。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "陶茶壶" @@ -102028,7 +102043,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "一个陶茶壶,再来点茶叶和水。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "咖啡机" @@ -102042,7 +102056,6 @@ msgid "" msgstr "一套带有壶和粉末滤网的加热器具。除去交流电源,它还能用电池供电。可以拿它来煮咖啡……当然,煮茶也行。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "食物脱水机" @@ -102055,7 +102068,6 @@ msgid "" msgstr "便携式食物脱水机,电池供能。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "发酵中的腌蛋" @@ -102080,7 +102092,6 @@ msgid "" msgstr "这个大罐储存了一笔腌制的腌蛋。你可在腌制完成后封装以长期储存。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "固态燃料块便携炉" @@ -102093,7 +102104,6 @@ msgid "" msgstr "又称为易斯比特炉,这是一个轻量级的可折叠炉子。设计为使用乌洛托品片来烹饪。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "小罐密封酵母" @@ -102175,7 +102185,6 @@ msgid "" msgstr "水、糖、水果和一些野生酵母的混合物,最终会产生一个更大的酵母培养物。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "食物料理机" @@ -102188,7 +102197,6 @@ msgid "" msgstr "这是一种厨房用具,可用于切片、剁块、绞碎、研磨、打泥和搅拌。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "汽油炉" @@ -102213,7 +102221,6 @@ msgid "" msgstr "一次性加热贴,可以被用来处理伤口或者加热食物。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "轻便电炉" @@ -102285,7 +102292,6 @@ msgid "" msgstr "一个密封了的德式酸菜罐头,打开之后尽情享用吧。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "简易真空封口机" @@ -102298,7 +102304,6 @@ msgid "" msgstr "自制的便携式真空热封口机,用于包装真空食品以延长食物保质期。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "野外餐具" @@ -102312,7 +102317,6 @@ msgid "" msgstr "一整套野炊餐具,在这里面打包着你在野外煮食的一切必要的东西。这是电池供能加热的版本,而不是通常的化学燃料加热版本。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "行军用折叠小锡锅" @@ -102326,7 +102330,6 @@ msgid "" msgstr "结构紧凑的军用锅盘,被设计来在篝火或便携炉灶上加热食物。外型较专用的锅子稍浅,也不具备现代炉灶套件的集成式加热元件。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "军用野外炊具" @@ -102343,7 +102346,6 @@ msgstr "" "军用炊事餐具套装,供深入敌方阵线的长距离侦察任务使用。套装内的所有部件均由铝或超合金薄板制成,外层覆有陶瓷隔热涂层。它以电池供能加热,不使用会产生烟雾的化学燃料。全套餐具紧凑,耐用而轻量。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "研钵和杵" @@ -102358,7 +102360,6 @@ msgid "" msgstr "这是一个小磨石和一个碗石的简单组合。用于研磨谷物,但比复杂的方法耗时。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "多功能厨师机" @@ -102388,7 +102389,6 @@ msgstr "" "一种民用级的多功能厨师机。在旅行野营时使用电池供电。它的许多设置和功能,号称可以处理任何烹饪,从煮马铃薯煮咖哩到做爆米花。虽然没有使用手册,但你确定你会用。这里面有盘菜正在烹饪。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "灯油炉" @@ -102401,7 +102401,6 @@ msgid "" msgstr "被设计成用灯油来加热食物的简单炉子。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "挤面机" @@ -102414,7 +102413,6 @@ msgid "" msgstr "一个手摇挤面机。拥有一整套面嘴,能够挤出各种面条。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "发酵中的腌黄瓜" @@ -102439,7 +102437,6 @@ msgid "" msgstr "这个大罐储存了一笔发酵的腌黄瓜。你可在发酵完成后封装以长期储存。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "汽水罐炉具" @@ -102452,7 +102449,6 @@ msgid "" msgstr "这是一个超轻型酒精燃烧炉,有着火力密封环。它配备了一个500毫升的容器,以容纳提炼过的酒精燃料。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "高压锅" @@ -102467,7 +102463,6 @@ msgstr "" "一个高压锅,可以用来煮意大利面和其他食物,或是仅仅烧开水。这个密封的锅被设计用来在更高的压力和温度下烹调食物。也可用于对压力敏感的化学反应中。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "手摇石磨" @@ -102478,7 +102473,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "一个简单的手推石磨。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "发酵中的德式酸菜" @@ -102527,7 +102521,6 @@ msgid "" msgstr "这是一种由铜制成的原始蒸馏工具,带有一个作为冷凝器的长颈。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "幸存者野外炊具" @@ -102541,7 +102534,6 @@ msgid "" msgstr "一个手工的餐具套装,包括了你在大灾变之后做菜的一切必须品。以灯油炉供热,全套套装都是由简单而耐用的工具和材料组成。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "茶壶" @@ -102552,7 +102544,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "小金属茶壶,没有它的存在你的下午茶时间就是不完整的。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "真空封口机" @@ -102565,7 +102556,6 @@ msgid "" msgstr "便携式真空热封口机,用于包装真空食品以延长食物保质期。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "华夫饼铛" @@ -102649,7 +102639,6 @@ msgid "" msgstr "一张折叠起来的行军床,虽然没家里的床舒服,但至少比睡在地上好多了。" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "折叠自行车" @@ -102664,6 +102653,21 @@ msgstr "你煞费苦心地展开自行车,准备骑它。" msgid "This is a bicycle folded into a relatively portable package." msgstr "一辆可以打包带走的自行车。" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "滑板" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "你把滑板放在地上。" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "这是一块滑板。" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -102672,7 +102676,6 @@ msgid "" msgstr "一个金属屠宰架子,可以将清理内脏后的胴体悬挂在半空中。它已经被折叠起来以便携带。" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "折叠充气船" @@ -102720,7 +102723,6 @@ msgid "" msgstr "一种由纤维材料编织而成的大垫子,可代替野餐毯,但用作屠宰工具更有价值。因为太薄不能作为舒适的睡眠场所。它已经被卷起以便于携带。" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "黄油搅拌机(折叠)" @@ -102754,7 +102756,6 @@ msgstr "" "\"WWE指定武器。\"" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "高级UPS" @@ -102769,7 +102770,6 @@ msgid "" msgstr "这是UPS统一化电源的升级版本。设计为军用先进武器提供动力,它使用不能充电的钚燃料电池供电以提供更高的效率。它也可以为许多家用电器供能。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "数码相机" @@ -102783,7 +102783,6 @@ msgid "" msgstr "一台傻瓜式数码相机,带有数字取景器,辅助的手动取景器以及闪光灯。你可以在液晶屏幕上查看你的照片,或是传到存储卡里。使用普通电池供电。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "专业相机" @@ -102801,7 +102800,6 @@ msgstr "" "35mm的数码单反(单镜头反光)相机使用普通电池,带光学/数字取景器,具有自动对焦和变焦镜头和闪光灯的防抖功能。你可以使用它查看已拍摄的照片,或者将照片存储至SD存储卡上;它运行在可充电电池上,可以通过UPS切换充电。在大灾变之前,专业级照片都是使用它拍摄出来的。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "手机" @@ -102829,7 +102827,6 @@ msgstr "" "这是一款手机,是现在智能手机的堂兄,但由于它的可靠性、坚固性和使用普通电池的特点,它仍然在某些圈子里很受欢迎。当电量足够时,使用它就能开启并提供照明。它也有一个时钟应用程序,其中包括闹钟功能。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "手机(屏幕光)" @@ -102843,7 +102840,6 @@ msgid "You stop lighting up the screen." msgstr "你关闭了屏幕。" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "遥控主机" @@ -102857,7 +102853,6 @@ msgid "" msgstr "一台改造的笔记本,现在可以发送超高频信号来与机器人进行通讯。激活它来遥控机器人,或切换通过UPS充电。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "定向天线" @@ -102884,7 +102879,6 @@ msgstr "" "\"鉴于目前的治安情况,请在被电击和被吃掉脑子之间选择一个吧,亲。\"" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "电纸书" @@ -102897,9 +102891,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "一台拥有高清彩色电子墨水屏的平板电脑,带有可充电电池,可以切换为从UPS供电。大灾变前的俏玩意,现如今的无价宝。" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "电子黑客仪" @@ -102916,7 +102908,6 @@ msgstr "" "这套仪器由好几个部分构成,当它们连接在一起之后,就可以用来侵入掉绝大多数的电子设备,如果你的技术再高一点的话,甚至可以通过需要身份ID卡的关卡。每次使用需要消耗25点电池。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "盖格计数器(关)" @@ -102931,7 +102922,6 @@ msgid "" msgstr "本产品适用于监测辐射,可以用于持续监测周围环境的辐射,也可以扫描一次你的身体或是周围的地形,检测辐射是否超标。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "盖格计数器(开)" @@ -102948,7 +102938,6 @@ msgstr "" "本产品适用于监测辐射。提示:本产品正处于持续扫描模式下,一旦检测到强辐射会发出无声警报。再次使用可以切换模式,转为一次性扫描,或是终止运行。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "手摇充电器" @@ -102978,7 +102967,6 @@ msgid_plural "laptop computers - lit screen" msgstr[0] "笔记本电脑(点亮)" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "MP3播放器(关)" @@ -103009,7 +102997,6 @@ msgstr "" "这个MP3播放器正打开着,从中传来优美的曲调,让你的身心都为之放松。回想大灾变之后的日子,你已经经历了太多,然而未来的挑战才刚开始,稍作休整之后,你决定重整行装,再度启程。佩戴MP3的时候你的心情值会持续上升,但是也会持续耗电,所以不用的时候请记得关上它。另外当你戴着MP3时,你对周遭的声响也会失去警觉。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "噪音发生器(关)" @@ -103039,7 +103026,6 @@ msgid "" msgstr "这个装置已经打开,发出可怕的噼啪声、碰撞声和其他嘈杂的声音。快点,在它把丧尸吸引过来之前离开它!" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "掌上游戏机" @@ -103054,7 +103040,6 @@ msgid "" msgstr "一个完好的便携式游戏机,它有一个LED屏幕可以在黑暗中使用。您可以使用来玩一会儿,消耗内置电池的电量。也可以设置为从UPS获取电力。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "智能手机" @@ -103135,7 +103120,6 @@ msgstr "" "这是一个统一化电源,简称UPS。这是军事设备的民用版本。军用版旨在为先进的武器和装甲提供动力,而民用版可充当许多家用电器的便携式移动电源和逆变器。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "按摩棒" @@ -103150,7 +103134,6 @@ msgstr "" "\"好舒服,要变得奇怪了。\"" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "生化插件扫描仪" @@ -103173,7 +103156,6 @@ msgid "" msgstr "一台专门用于探测生化插件的小型金属扫描仪。激活以开始扫描附近尸体上的生化插件。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "生化插件扫描仪(开)" @@ -103187,7 +103169,6 @@ msgid "" msgstr "一台专门用于探测生化插件的小型金属扫描仪。在使用过程中,它将逐渐消耗能量,并自动扫描您附近的尸体,寻找生化插件。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "撬棍" @@ -103202,7 +103183,6 @@ msgstr "" "一根正规工厂出品的撬棍,又名物理学圣剑,可以轻易进出别人的家里而不破坏门或者用来开启下水沟井盖,还可以潇洒的敲开丧尸的脑袋。实在是居家旅行的必备之物。激活它来使用。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "发夹开锁器" @@ -103219,7 +103199,6 @@ msgstr "" "这是一枚用手弯成形状的金属发夹,虽然比不上即兴制作的一套工具,但比骨串更容易使用。因为它很脆弱,使用它开锁需要像马盖先那样的技巧,不过可以降低触发警报的几率。如果你蹲下身检查一扇锁住的门,你会优先选择用这个工具开锁,而不是用撬棍。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "简易撬锁工具" @@ -103236,7 +103215,6 @@ msgstr "" "这是一套由废金属制成的临时开锁工具,包括撬锁器和扭力扳手。因为它很脆弱,使用它开锁需要像马盖先那样的技巧,不过可以降低触发警报的几率。如果你蹲下身检查一扇锁住的门,你会优先选择用这些工具开锁,而不是用撬棍。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "冰斧" @@ -103251,7 +103229,6 @@ msgstr "" "一把有锤头的冰斧,也称\"冰镐\",是最重要、用途最广的登山装备之一。坚固耐用,鹤嘴形的镐尖可以将丧尸的躯体如冰面般凿穿,也可以撬开门锁与下水道井盖。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "简易撬棍" @@ -103267,7 +103244,6 @@ msgstr "" "这是一个末端被砸扁并弯曲成撬棍的钢管。使用它,你可以撬开锁住的板条箱,或者撬开井盖和门窗。当然,你也可以在紧急关头运用它撬开敌人的脑壳。一物多用,实是居家旅行、杀人放火的必备良品。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "撬锁工具" @@ -104200,7 +104176,6 @@ msgid "" msgstr "这是块已经点着了的火箭软糖,在响亮的嘶嘶燃烧声中喷涌出大量的浓烟。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "电子生火工具" @@ -104213,7 +104188,6 @@ msgid "" msgstr "一个做工简陋的电子生火工具,也可以当作一只效率不高的打火机。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "取火器" @@ -104228,7 +104202,6 @@ msgid "" msgstr "钻木取火器是用来生火的简单道具,用两片木片以及一些绳子就可以做出来。很简陋,用来生火很慢而且也很难。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "野营取火器" @@ -104243,7 +104216,6 @@ msgid "" msgstr "这个结实的取火器是用来生火的简单道具,用两片木片以及一些绳子就可以做出来。很简陋,用来生火很慢而且也很难。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "打火石" @@ -104257,7 +104229,6 @@ msgid "" msgstr "这是一根镁棒和一个碳钢撞针。用它来点燃火焰。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "打火机" @@ -104271,7 +104242,6 @@ msgid "" msgstr "这个一次性塑料打火机可以用来点燃香烟、燃烧瓶之类的东西。还可以用它来生火从而点燃附近的可燃物。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "放大镜" @@ -104285,7 +104255,6 @@ msgid "" msgstr "就是放大镜,晴天或许可以用来制造小火苗或者山火。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "火柴" @@ -104302,7 +104271,6 @@ msgstr "" "\"曾经流行于世界,而后逐渐的被打火机取代,但如今在你的手里,绽放的不只是火焰。\"" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "可再充打火机" @@ -104340,7 +104308,6 @@ msgid "" msgstr "一个可补充燃料的翻盖打火机。已经打着。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "火种罐" @@ -104369,7 +104336,6 @@ msgid "" msgstr "带有通气孔,用于保存火种的小型容器。可以让余火保持很长一段时间,缺乏现代工具时可用于生火。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "火种罐(点燃)" @@ -104404,7 +104370,6 @@ msgid "" msgstr "一款电池供电的点火器。比简单的电子火种工具更高效,其电池寿命相当长。" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "应急斧" @@ -104430,7 +104395,6 @@ msgid "" msgstr "一种大型的灭火器,包含5加仑的灭火剂。用来扑灭附近的火焰。" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "消防斧" @@ -104445,7 +104409,6 @@ msgstr "" "\"烈火雄心,尸海纵横。\"" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "消防破拆棍" @@ -104499,7 +104462,6 @@ msgstr "" " pole)" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "纽约钩" @@ -104512,7 +104474,6 @@ msgid "" msgstr "一根长棍,一端有个双钩,另一端是一个撬棍,用一整块钢锭锻造而成。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "塑料捕鱼器" @@ -104544,7 +104505,6 @@ msgstr "" "但这里早就没有警察了。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "鱼钩" @@ -104555,7 +104515,6 @@ msgid "A simple fishing hook." msgstr "一个简易鱼钩。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "简易鱼钩" @@ -104566,7 +104525,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "一个由木头或骨头制成的简易鱼钩。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "简易鱼竿" @@ -104579,7 +104537,6 @@ msgid "" msgstr "这货也能叫做\"钓鱼竿\"?这分明就是一条绳子加一个钩子!" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "专业鱼竿" @@ -104592,7 +104549,6 @@ msgid "" msgstr "一把专业的钓鱼竿,配有适宜的配重。钩弯饵鲜,鲤鱼王都能给你钓起来。" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "手动压弹机" @@ -104605,7 +104561,6 @@ msgid "" msgstr "小型的手工压弹机,足够你进行各种复装弹药制备。" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "简易霰弹压弹机" @@ -104623,7 +104578,6 @@ msgstr "" "这套简易装置可以用来随时重新装填霰弹。它由一根中间开孔的木板、一根中号钉子和一组木销组成,分别用于放置填料、打开并(小心地)装上底火。火木板的另一侧被制成能够碾压卷曲塑料弹壳的形状。" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "反冲拆弹锤" @@ -104649,7 +104603,6 @@ msgstr "" "这是一个集多功能于一体的手工装弹工具,包括多级压机、子弹模具、电热板以及用于拆解弹药的夹头拉拔器。安装为家具后,它既可以制造弹药,也可以拆解弹药以获取材料。" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "铜制小刀" @@ -104675,7 +104628,6 @@ msgid "" msgstr "一个短而结实的匕首,锯齿状的刀刃能够切割绳子和皮带,边缘一个钝头可当做小型撬棍使用。非常轻便,几乎不占空间,潜水员经常使用。" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "蜂蜜刮刀" @@ -104688,7 +104640,6 @@ msgid "" msgstr "刀一样,很锋利的工具。用来从蜂巢收集蜂蜜。勉强能够拿来当武器。" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "折叠刀" @@ -104727,7 +104678,6 @@ msgid "" msgstr "一块磨利的石头或陶瓷碎片,插进一个带洞的手柄里。怎么看也不太像匕首,用起来也不那么方便,但总比赤手空拳要好。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "掘土棒" @@ -104740,7 +104690,6 @@ msgid "" msgstr "棍子的底端削成了薄片,似乎能用来锄地,虽然一看就挖不了多深。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "园艺铲" @@ -104752,7 +104701,6 @@ msgid "" msgstr "一把小巧的,锋利的园艺铲,非常适合挖掘蛴螬和蠕虫。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "锄头" @@ -104765,7 +104713,6 @@ msgid "" msgstr "一件农具。可用于把可耕种土地锄成难以穿行的土堆,或者挖一个浅坑。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "原始铲" @@ -104792,7 +104739,6 @@ msgid "" msgstr "扁平的石头或是陶瓷碎片绑在了木棍上,就当做铁锹用吧,虽然显然比不上啊。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "大镰刀" @@ -104806,7 +104752,6 @@ msgid "" msgstr "老式农业工具,专门用来割杂草,构造十分简单,一片巨大的片叶和棍子,但是令人难以置信的好用。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "铁锹" @@ -104829,7 +104774,6 @@ msgid "" msgstr "这种挖掘工具的手柄较短,便于携带。 它能像其他铲子一样挖洞,但作为武器的效果较差。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "镰刀" @@ -104843,7 +104787,6 @@ msgid "" msgstr "老式农业工具,专门用来割杂草,构造十分简单,一片巨大的片叶和棍子,但是令人难以置信的好用。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "树篱机(关)" @@ -104884,7 +104827,6 @@ msgid "" msgstr "一把汽油动力的灌木修剪机。现在已经启动,准备\"修剪\"丧尸们。使用此物品以将其关闭。" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "原子提灯" @@ -104906,7 +104848,6 @@ msgstr "" "利用核衰变产生的能量来驱动二极管发光,这种灯相当昂贵,至少可以保证在十年时间内持续发光。在大灾变之前,它唯一的作用就是炫耀。但是现在,它变得非常实用。关闭盖子可以隐藏它发出的光芒。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "原子提灯(关)" @@ -104930,7 +104871,6 @@ msgstr "" "利用核衰变产生的能量来驱动二极管发光,这种灯相当昂贵,至少可以保证在十年时间内持续发光。在大灾变之前,它唯一的作用就是炫耀。但是现在,它变得非常实用。盖子关上了,打开盖子可以散发光芒。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "原子阅读灯" @@ -104938,7 +104878,7 @@ msgstr[0] "原子阅读灯" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "你关上了小夜灯的罩子。" @@ -104954,7 +104894,6 @@ msgstr "" "利用核衰变产生的能量来驱动二极管发光,这种灯相当昂贵,至少可以保证在十年时间内持续发光。它被设计的非常可爱,可以为喜欢夜读的孩子提供足够的光亮。关闭盖子将会隐藏光亮。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "原子阅读灯(关)" @@ -104964,7 +104903,7 @@ msgstr[0] "原子阅读灯(关)" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "你打开了小夜灯的罩子。" @@ -105015,7 +104954,6 @@ msgid "" msgstr "一只粗蜡烛,除了提供足够时间的可怜照明亮度之外,也可能有过些奇奇怪怪的用途。这支蜡烛已经点着了。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "电提灯(关)" @@ -105056,7 +104994,6 @@ msgid "You turn the lamp off." msgstr "你关掉了油灯。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "手电筒(关)" @@ -105209,7 +105146,6 @@ msgid "" msgstr "这种镁制照明弹正在不停地燃烧,大约半小时后熄灭。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "重型手电筒(关)" @@ -105338,7 +105274,6 @@ msgid "The %s is extinguished" msgstr "%s熄灭了。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "阅读灯" @@ -105378,7 +105313,6 @@ msgid "" msgstr "一个带夹子的小型LED灯,能让你在黑暗中阅读书籍。现在开着。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "遥控灯(关)" @@ -105428,7 +105362,7 @@ msgstr[0] "火把" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "点燃火把" @@ -105436,7 +105370,7 @@ msgstr "点燃火把" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "你点燃了火把。" @@ -105452,7 +105386,7 @@ msgstr "浸透了可燃材料的布胡乱地缠在棍子上,点燃了似乎就 #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "火把熄灭了。" @@ -105464,7 +105398,6 @@ msgid "" msgstr "浸透了可燃材料的布胡乱地缠在棍子上,正在燃烧,看,你有光了。" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "切砖机(关)" @@ -105529,7 +105462,6 @@ msgid "" msgstr "一整套用于手术麻醉的工具箱,内含装有各种强力催眠剂、止痛剂及兴奋剂的瓶子。该工具箱设计主要用于专业医疗设备使用,暂时无法直接使用。" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "高压灭菌釜" @@ -105572,7 +105504,6 @@ msgstr "" "RX12射流喷射器是一种小型的疗伤用无针头注射器,通过皮肤直接将高效的快速治疗药剂注入身体。它有手枪外形,旁边的标签上印有每小时使用不得超过两次的警告文字。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "手术刀" @@ -105601,7 +105532,6 @@ msgid "" msgstr "一小罐医用压缩氧,附带调节器和面罩。能够迅速缓解哮喘症状和烟雾吸入损伤,也能让你在短时间内精神满满。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "针管" @@ -105612,7 +105542,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "一支医用针筒,可以用来注射海洛因或其他毒品。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "温度计" @@ -105636,7 +105565,6 @@ msgid "" msgstr "一罐医用压缩氧,附带调节器和面罩。能够迅速缓解哮喘症状和烟雾吸入损伤,也能让你在短时间内精神满满。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "采血管" @@ -105650,7 +105578,6 @@ msgid "" msgstr "一成套用于抽血的工具,还有一条可存放血样的试管。你可以用它抽血,至于是抽你自己的,还是其他什么奇怪生物的,随你的兴趣了。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "辐射侦测徽章(已包装)" @@ -105684,7 +105611,6 @@ msgstr "" "\"在卡通片中通常作为陷阱砸坏人的头。\"" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "青铜铁砧" @@ -105699,7 +105625,6 @@ msgstr "" "\"在卡通片中通常作为陷阱砸坏人的头。\"" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "老虎钳" @@ -105713,7 +105638,6 @@ msgid "" msgstr "一个用于剪断电线的老虎钳,你还可以用它来剪断铁丝网和锁链。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "火炭锻造台" @@ -105734,7 +105658,6 @@ msgid "" msgstr "一个结实的金属箱,利用它可以采用热解法烧炭;即让有机材料在缺氧环境下不完全燃烧以获得炭。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "金工凿" @@ -105747,7 +105670,6 @@ msgid "" msgstr "一个短,粗壮的金工凿。用于某些金属加工制造的道具。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "坩埚" @@ -105760,7 +105682,6 @@ msgid "" msgstr "一个小的金属坩埚。用于某些金属加工制造的模具。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "陶坩埚" @@ -105773,7 +105694,6 @@ msgid "" msgstr "这是个简陋的陶制金工坩埚,可以用于金属加工。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "便携锻造台" @@ -105790,7 +105710,6 @@ msgstr "" "这是一个便携式的电动金属加工炉,由电池供电。搭配适当的工具,你可以用它来加工金属物品,也可以用于修复金属制品。只要掌握一点机械知识,你甚至可以将其转换为直接从车辆的能源系统中运行。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "炭窑(完成)" @@ -105825,7 +105744,6 @@ msgid "" msgstr "一只填满木材的炭窑,木材经过缓慢燃烧后将会变成木炭。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "炭窑(点燃)" @@ -105860,7 +105778,6 @@ msgid "" msgstr "一片铆接而成的锁环网。稍有技巧的人,能够用几片锁环网拼接成可用的护甲。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "锻造模具" @@ -105873,7 +105790,6 @@ msgid "" msgstr "一组用于加工模具的型砧。用于某些金属加工制造的模具。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "铁钳" @@ -105909,7 +105825,6 @@ msgid "" msgstr "这罐压缩空气被安上了一个塑料的号角,只要轻轻按下罐子上的按钮,就会发出巨大的喇叭声。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "闹钟" @@ -106037,7 +105952,6 @@ msgid "" msgstr "这是一个调试用的测试附魔变异的物品。拿着它就可以不知疲倦,行动隐秘且能夜视。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "工兵铲" @@ -106072,7 +105986,6 @@ msgid "" msgstr "箭头附近的箭杆上有易燃液体浸泡过的布条缠绕,在发射前,点燃它吧。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "毛绒卷毯" @@ -106091,7 +106004,6 @@ msgid "" msgstr "一床皮毛制成的铺盖,可以卷起来随身携带。垫在地上,让你更容易入睡。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "抓钩" @@ -106115,7 +106027,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "一个简单钢制挂肉钩,带有个环形的钢把手。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "打气筒" @@ -106163,7 +106074,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "汽车喇叭要连接到汽车的电气系统。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "大型空间加热器" @@ -106199,7 +106109,6 @@ msgid "You turn off the heater." msgstr "你关闭加热器。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "生命饮管" @@ -106290,7 +106199,6 @@ msgid "" msgstr "一个经典款怀表,可以让你在查看时间时显得很有派头。可以被拆解成零件。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "卷毯" @@ -106334,7 +106242,6 @@ msgid "" msgstr "一串密码,用来启动通往危险废品储存间的电梯。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "小型空间加热器" @@ -106482,7 +106389,6 @@ msgid "" msgstr "一块遍布漩涡刻痕的石头,四周遍布着孔洞。虽然看上去不小,但几乎没有重量,似乎有气流聚集在这块石头的周围。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "多功能口哨" @@ -106604,7 +106510,6 @@ msgid "" msgstr "一把闪闪发光的金色小提琴,被某种奇怪的光环环绕着。你有种这玩意曾经属于某个伟人的感觉。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "鸡笼" @@ -106618,7 +106523,6 @@ msgid "" msgstr "一个铁丝网制成的笼子,本来是用来抓鸡的,但也可以用来运输体型类似的动物。激活它后选择需要捕获的动物,或者选择空地放出笼中动物。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "狗哨" @@ -106632,7 +106536,6 @@ msgid "" msgstr "一只小型的哨子,吹它的时候会产生一种高频的声波,让附近所有非敌对状态的狗狗都会向你靠拢并为你而战。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "大剪刀" @@ -106643,7 +106546,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "这是一把用来剪羊毛的剪刀。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "电动剪" @@ -106654,7 +106556,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "这把电动剪可以更快的给动物剪毛。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "鞍具" @@ -106667,7 +106568,6 @@ msgid "" msgstr "一个鞍座,一副缰绳,以及配套的各类马钉,能够装在已驯服的动物身上,让它供你骑乘。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "宠物笼" @@ -106680,7 +106580,6 @@ msgid "" msgstr "一个塑料笼子,可以用来运输小型宠物。激活它后选择需要捕获的动物,或者选择空地放出笼中动物。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "木制宠物笼" @@ -106693,7 +106592,6 @@ msgid "" msgstr "一个木制笼子,可以用来运输小型宠物。激活它后选择需要捕获的动物,或者选择空地放出笼中动物。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "木制狗哨" @@ -106729,7 +106627,6 @@ msgid "" msgstr "一个遥控车套装,包含无线控制器,还有配套用地电池!拆解它来打开包装并使用。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "无线控制器" @@ -106743,7 +106640,6 @@ msgid "" msgstr "一个用来操纵遥控车的无线控制器,通过摇杆来控制车的移动,还有一堆用不到的按钮,或许是用来控制更高级的型号的。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "遥控车" @@ -106778,7 +106674,6 @@ msgid "" msgstr "这件小型电子元件可以被附加到某些物品上,将在接受到一个无线电信号后开启。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "收音机(关)" @@ -106803,7 +106698,6 @@ msgid "" msgstr "这台无线电设备已经被启动,不停消耗着电池的同时不断向你播送着附近电台传出的资讯。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "双向无线电" @@ -106816,7 +106710,6 @@ msgid "" msgstr "这是一个有数据传输模块的无线电手台,你可以用它和另一个有这个手台的人联系。只是,在这个年头,好像没有人用这个了……" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "载具远程遥控器" @@ -106892,7 +106785,6 @@ msgstr "" #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "防水帆布集雨器" @@ -106909,7 +106801,6 @@ msgid "" msgstr "由一些棍子和绳子与防水油布所搭建的一个简易集雨器。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "气压计" @@ -106933,7 +106824,6 @@ msgid "" msgstr "罐子上贴着个标签:\"警告:内含剧毒及极强腐蚀性物质!该物质具有自主意识!开启后果自负!\"你感觉到里面有什么东西在动。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "化学用品包" @@ -106949,7 +106839,6 @@ msgstr "" "\"用于制造纯度高达99.1%的淡蓝色结晶。\"" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "基础化学用品包" @@ -106963,7 +106852,6 @@ msgid "" msgstr "这是一整套基本的化学实验装置,包括一些玻璃器皿、软管以及护目镜。如果你需要的话,它可用来制造化学用品。这件物品需要热源。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "电解工具箱" @@ -106989,7 +106877,6 @@ msgid "" msgstr "一大罐压缩丁烷。它可以用来从有机物质中提取精油。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "氢气罐" @@ -107002,7 +106889,6 @@ msgid "" msgstr "这是一个压缩氢气罐。如果你需要从零开始制造水,或者让一架齐柏林飞艇升空,它可能会派上用场。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "湿度计" @@ -107013,7 +106899,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "一个塑料湿度计,可以让你知道当前相对湿度。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "氮气罐" @@ -107028,7 +106913,6 @@ msgstr "" "\"警告:禁止口鼻接触。\"" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "氧气罐" @@ -107041,7 +106925,6 @@ msgid "" msgstr "一个用于储存高压气体的大型钢罐。上面有着一个依稀可见的 O2 标记。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "铂金格栅" @@ -107090,7 +106973,6 @@ msgid "" msgstr "这是一个神秘的装置,激活后能让你传送一小段距离。至于会不会传到怪物堆里,那就听天由命了。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "涡轮2000型全息多普勒气象分析仪" @@ -107105,7 +106987,6 @@ msgstr "" "一个公文箱,内嵌一台看起来像是80年代老货的笔记本电脑。它古董的单色显示器上显示着大量的气象数据。不过貌似它没法帮你找到什么超级食物制造机。(注:出自电影《美食从天降》)" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "基础实验室分析工具包" @@ -107122,7 +107003,6 @@ msgstr "" "这个庞大的试剂盒包含了一些基本测量工具,是你在进行任何精确化学操作时不可或缺的工具:包含一个小天平,一个分光度计,一个熔点仪,一个pH计,和一套色谱层析试纸。这让你更确信自己制造出来的化学品的成分是你所想要的成分。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "小型天平" @@ -107135,7 +107015,6 @@ msgid "" msgstr "一个小型平衡称,使用一套钢制砝码以及滑条,能够精确测量样品的质量。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "分光度计" @@ -107148,7 +107027,6 @@ msgid "" msgstr "一个十分常见的分析化学工具,用于测量液体样品在一种被称作比色皿的特殊试管中吸光率。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "PH计" @@ -107162,7 +107040,6 @@ msgid "" msgstr "一个带着一对玻璃探针的电压表。通过将探针分别放入标准溶液(仪器已配套)和待测物质中,你可以测量酸碱度。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "电压表" @@ -107177,7 +107054,6 @@ msgid "" msgstr "这个设备有两个探针,让您可以测量两个点之间的电位。激活它可以检查周围任何本地电网连接或电池充电的状态,并且可以对电网连接进行修改。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "熔点仪" @@ -107195,7 +107071,6 @@ msgstr "" "一个电炉,外带一个金属外壳。金属外壳上有个带放大镜的观察口,以及一个能插入装有结晶样品的细试管的插槽。这个仪器可以让你精确测量晶体的熔点,可用于鉴定样品的纯度。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "涡旋仪" @@ -107212,7 +107087,6 @@ msgstr "" "这是一台小巧、笨重、看起来很无聊的机器。它的加重梯形框架上有一个独立开关和一个快速拨号盘,顶部有一个橡胶容器。将试管压入容器中,通电后会迅速摇晃并混合试管中的内容物。使用起来出人意料的有趣。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "检光器" @@ -107225,7 +107099,6 @@ msgid "" msgstr "一个安装在芯片上的光电二极管,可以用来将入射光转换成电能并进行测量。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "玻璃棱镜" @@ -107250,7 +107123,6 @@ msgid "" msgstr "一根小型玻璃管。你还想知道些什么?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "显微镜" @@ -107266,7 +107138,6 @@ msgstr "" "一个经典的工具!这件笨重耐用的实验室设备能让你更清晰地看到小东西。由于没有电,它的灯泡不能工作,但其余的功能却非常完好。不幸的是,事到如今它也没有太多用处了。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "解剖显微镜" @@ -107283,7 +107154,6 @@ msgstr "" "这台显微镜的放大倍数比标准显微镜小。它也有立体视觉功能,可以生成表面清晰的三维图像。它通常用于对小生物进行解剖或其他精细的工作,添加附加光源后非常好用,但你会如何使用它?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "分液漏斗" @@ -107301,7 +107171,6 @@ msgstr "" "这东西看起来不像漏斗,更像一块泪珠状的玻璃,宽端有一个塞子,另一端有一个阀门。它可以用来分离一种液体和另一种液体,如水和油,然后抽出两种液体中你要离析的化合物。如果你的技术水平够高,它也可以用来制造幼稚的放屁声。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "旋转蒸发仪" @@ -107319,7 +107188,6 @@ msgstr "" "只要看看这东西,你就会觉得自己是个真正的疯狂科学家。一系列玻璃管和圆烧瓶连接到一个中央电机和一个加热器上。加热器加热一个烧瓶,电机使它保持转动,令内容物蒸发。然后,蒸汽在试管中冷凝,并收集到另一个烧瓶中,以备以后使用。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "分馏装置" @@ -107339,7 +107207,6 @@ msgstr "" "这是一件经典的疯狂科学玻璃器皿,基本上是一个小体积的蒸馏器,蒸馏物的蒸汽通过分馏塔,然后在一个冷却的收集塔中冷凝。研究生或机器人(真的有什么区别吗?)将蒸馏液收集起来,以便分析具体的成分。如果你用它来蒸馏威士忌,每次大概只能得到几毫升。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "电泳托盘" @@ -107357,7 +107224,6 @@ msgstr "" "\"现在这只是可回收垃圾。\"" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "微型离心机" @@ -107414,7 +107280,6 @@ msgid "" msgstr "用毛皮和木棍组合成的小帐篷,可以把它架设在地面上。顺便提醒一下,它似乎受损了,最好修一修。激活它来放置。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "大帐篷" @@ -107427,7 +107292,6 @@ msgid "" msgstr "这是一只供全家出行使用的帐篷,可以提供大量的空间,但十分笨重。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "简易棚屋" @@ -107438,7 +107302,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "用毛皮和木棍组合成的小帐篷,可以把它架设在地面上。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "帐篷" @@ -107499,7 +107362,6 @@ msgid "" msgstr "一个手工雕刻而成的烟斗,可以用来吸食烟叶。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "订书机" @@ -107510,7 +107372,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "一种将纸张固定在一起的订书机。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "圆珠笔" @@ -107521,7 +107382,6 @@ msgid "A plastic ball point pen." msgstr "一根塑料圆珠笔。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "剪刀" @@ -107535,7 +107395,6 @@ msgid "" msgstr "一把耐用的工艺长剪刀。使用它可以衣物等棉制物品剪割成布条,或有其它用途。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "纸" @@ -107546,7 +107405,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "一张纸,可以用来生火。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "骨制缝纫锥" @@ -107560,7 +107418,6 @@ msgid "" msgstr "一个经过粗糙打磨成型的骨锥;早在人类发现金属之前就被用于制造皮革物品了。它也能够当作一把简易的刺击武器,但会很快损坏。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "钢制缝纫锥" @@ -107573,7 +107430,6 @@ msgid "" msgstr "一个带着木头手柄的钢锥,能够用于制造皮革物品。它也能够当作一把简易的刺击武器,但会很快损坏。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "棒针" @@ -107587,7 +107443,6 @@ msgid "" msgstr "一组结实的圆头木针,用来将线织成布。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "骨针" @@ -107609,7 +107464,6 @@ msgid "" msgstr "一种钢制的弯曲的尖针。它的圆形的形状可以使它只穿透的材料的一侧。虽然不适合大多数的裁缝工作,但这是拼接氯丁橡胶的必需品。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "木针" @@ -107624,8 +107478,7 @@ msgid "" msgstr "一根削尖的木针,上面有个刻出来的穿线孔。它低劣的品质使它不适合用来制造任何需要精度或速度的物品,或者用于类似于凯夫拉的坚硬材质上。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "缝纫工具箱" @@ -107653,8 +107506,7 @@ msgid "" msgstr "这是一大套纸制的缝纫用模板,可以用来从头制造布料或者皮革衣物,在更复杂的裁缝工作中更是必不可少。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "裁缝助手" @@ -107670,7 +107522,6 @@ msgstr "" "一个装着各种针、几卷线,几把小剪刀,以及一把锥子的高品质缝纫工具箱。通过您的裁缝技能,这个工具包可以定制您的服装和盔甲,无论是加强它们的防御力还是修改一些项目以适应大型突变生物的穿戴。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "体重秤" @@ -107681,7 +107532,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "这是一个小型的浴室秤,用来称一个人裸体时的体重。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "刷子" @@ -107692,7 +107542,6 @@ msgid "This is a simple scrub brush." msgstr "这是一个简单的刷子。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "电动理发剪" @@ -107730,7 +107579,6 @@ msgid "" msgstr "一款长柄而笨重的拖把,配有可折叠手柄,便于运输。你可以用它清理任何你制造的\"混乱\"。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "剃须刀片" @@ -107754,7 +107602,6 @@ msgid "" msgstr "一个为旅行者准备的紧凑、轻便的刮胡刀工具包。如果你有肥皂,你可以用它刮胡子。每次使用需要1单位的肥皂" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "海绵" @@ -107789,7 +107636,6 @@ msgid "" msgstr "一把简易剃须刀。如果你有肥皂,你可以用它刮胡子。每次使用需要1单位的肥皂。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "洗衣板" @@ -107802,7 +107648,6 @@ msgid "" msgstr "一块木制的洗衣板。如果你有肥皂,你可以用它洗脏衣服。每次使用需要消耗清洗剂。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "洗涤工具箱" @@ -107839,7 +107684,6 @@ msgid "" msgstr "一副装有压力板的铁爪。布置在地面上做成陷阱,可以保证每个失足踩上来的家伙喝上一壶。如果你随身带着铁锹,你还能把它埋在土里。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "刀刃陷阱" @@ -107858,7 +107702,6 @@ msgid "" msgstr "这是一把横向地连接在电动机上的砍刀,连接着一个开关。当按下开关,刀片就会像电风扇一样转起来,形成一个3x3面积的陷阱。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "钉板陷阱" @@ -107902,7 +107745,6 @@ msgid "" msgstr "这是一层又一层的泡沫塑料,如果有东西踩过它的话,会发出足够的响声以提醒在附近活动的你。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "铁蒺藜" @@ -107920,7 +107762,6 @@ msgid "" msgstr "一些金属小刺猬,如果哪个倒霉蛋踩上去,就得担心破伤风的问题了。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "玻璃蒺藜" @@ -107972,7 +107813,6 @@ msgid "" msgstr "这是一个已经埋设好的军用反人员地雷,一旦踩上就会爆炸。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "双管霰弹枪陷阱" @@ -107999,7 +107839,6 @@ msgid "" msgstr "这是一个简单的绊线,连接在装有子弹的单管猎枪扳机上。 扣动扳机后,霰弹枪就会开火。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "绊索诱捕陷阱" @@ -108032,7 +107871,6 @@ msgid "" msgstr "这是一组空罐头,被用作临时制造的噪音制造器,被串在门口或其他狭窄通道上。当被触发时,会发出声音以警示您有入侵者,但除此之外是无害的。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "玻璃碎片陷阱" @@ -108052,7 +107890,6 @@ msgid "" msgstr "还是那些玻璃渣,但是你可以激活并放在地上,当有东西踩上去就会发出噪声。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "伐木斧" @@ -108077,7 +107914,6 @@ msgid "" msgstr "这是一把带有青铜斧头的大型双手伐木斧。它是一种出色的近战武器,但在挥动之间稍显缓慢恢复。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "链锯(关)" @@ -108112,7 +107948,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "链锯已经启动,发出可怕的噪声。激活它来关闭。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "圆锯(关)" @@ -108153,7 +107988,6 @@ msgid "" msgstr "很轻的手持无线圆锯。它的刃片正高速旋转。激活它来关闭。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "铜制斧头" @@ -108178,7 +108012,6 @@ msgid "" msgstr "一柄单手的短斧,是一件不错的近战武器,也可以用于砍柴与捶打。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "电动链锯(关)" @@ -108269,7 +108102,6 @@ msgid "" msgstr "一块固定在棍子上的窄边石头。它勉强能砍木头,但比现代斧头要费劲得多。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "木锯" @@ -108280,14 +108112,12 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "一个易损坏的锯子,可以用来锯木头。" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "石凿" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -108415,7 +108245,6 @@ msgid "" msgstr "一个装满陶瓷粘土的托盘,现在已经可以制成陶器。拆解它以取回你的板材、框架和工艺用品。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "乙炔制造机" @@ -108428,7 +108257,6 @@ msgid "" msgstr "这个大型设备接受水和电石,产出常压的乙炔气。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "角磨机" @@ -108441,7 +108269,6 @@ msgid "" msgstr "这种广泛的电动工具经常用于去除多余的材料或抛光表面。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "便携式砖窑" @@ -108454,7 +108281,6 @@ msgid "" msgstr "这是一个可移动的砖窑,设计用来烧砖的,但也可以烧任何粘土制品。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "梳棉拨片" @@ -108468,7 +108294,6 @@ msgid "" msgstr "一只有木齿的拨片,通常用于在纺织品生产中清理纤维。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "除漆片" @@ -108479,7 +108304,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "一个类似凿子的工具,用来移除油漆。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "夹具" @@ -108492,7 +108316,6 @@ msgid "" msgstr "一个能够保持物体静止不动的夹具,特别是当你同时有好几个夹子的时候。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "带爪撬棍" @@ -108506,7 +108329,6 @@ msgid "" msgstr "这是一个小型撬棍,一端有一个带爪的弯曲用于拔出铁钉,可以轻易进出别人的家里而不破坏门或者用来开启下水沟井盖,还可以潇洒的敲开丧尸的脑袋。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "混凝土搅拌器" @@ -108519,7 +108341,6 @@ msgid "" msgstr "一台便携式的水泥搅拌机。虽说便携,仍然庞大而笨重,但是它可以单独运行,并只由电池组供电使用。里面也有一个内置的加热器。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "无线电钻" @@ -108531,7 +108352,6 @@ msgid "" msgstr "这是一把无线电钻,由电池供电,供有一套钻头可供选择。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "纺线杆和纺锤" @@ -108544,7 +108364,6 @@ msgid "" msgstr "一对儿特制的木杆,用来将纤维纺成线。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "电动冲击钻" @@ -108558,7 +108377,6 @@ msgid "" msgstr "一种能够钻穿坚硬岩石或其他表面的建筑工具。它使用可充电电池,并可选择与UPS兼容。开启后,可以把附近的地面或者敌人钻出一个大洞来。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "钢锯" @@ -108582,7 +108400,6 @@ msgid "" msgstr "这是一种由细钢丝制成的灵活锯,两端有简单的把手。它可以满足轻金属和木材的锯切,或用于切割铁丝网。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "锤子" @@ -108609,7 +108426,6 @@ msgid "" msgstr "这是一把带有木柄的青铜爪锤,通常用于避免使用钢锤可能引发安全风险的场合,如需要封住相邻的门窗等众多用途。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "手摇钻" @@ -108622,7 +108438,6 @@ msgid "" msgstr "一种有着单一钻头的原始手工钻头。转速相当缓慢,但会迅速耗尽你的精力。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "橡胶软管" @@ -108635,7 +108450,6 @@ msgid "" msgstr "一根柔软的橡胶软管。可以用来做东西,也可以用来从载具中抽油。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "瓶式千斤顶" @@ -108646,7 +108460,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "便携式液压瓶式千斤顶,用于起重车辆。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "简易千斤顶" @@ -108659,7 +108472,6 @@ msgid "" msgstr "粗制滥造的简易剪式千斤顶,用于起重车辆,如果你敢用它的话。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "剪式千斤顶" @@ -108670,7 +108482,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "紧凑的剪式千斤顶,用于起重车辆。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "冲击钻" @@ -108684,7 +108495,6 @@ msgid "" msgstr "一种能够钻穿坚硬岩石或其他表面的建筑工具。它靠汽油驱动,开启后,可以把附近的地面或者敌人钻出一个大洞来。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "螺旋钻" @@ -108697,7 +108507,6 @@ msgid "" msgstr "这是一种用于在地面钻孔的建筑工具。运作消耗汽油。为了你的身体健康着想,你最好试试。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "电动窑炉" @@ -108713,7 +108522,6 @@ msgstr "" "一个使用电池供电的便携式电窑,原版设计用来烧制砖块,但你可以用它来烧制任何用黏土制品。如果会一些机械知识,你甚至可以把它从电池供电改装为车载电源供电。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "高级枪械修理包" @@ -108727,7 +108535,6 @@ msgid "" msgstr "一个修复受损的枪械的一整套工具包。使用标准电池,它是长期维护枪械的重要工具。每使用一次消耗25单位的电池电量。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "简易锤子" @@ -108740,7 +108547,6 @@ msgid "" msgstr "粗糙的锤子,用一块金属固定在棍子上制成。虽然当锤子是勉强凑合了,但跟正规的还是没得比。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "金属锉刀组" @@ -108753,7 +108559,6 @@ msgid "" msgstr "这种工具通常用于从金属物体表面去除少量的材料。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "金属水泥刮刀" @@ -108766,7 +108571,6 @@ msgid "" msgstr "这个金属工具通常是用来在建筑时平整混凝土、抹平砂浆或者刮大白的。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "杂项修理包" @@ -108797,7 +108601,6 @@ msgstr "" "这是一个便携式工具包,包括一把用于雕刻替换零件的原始刀具、一把用于重型木材切割的扁斧,以及一块用于清洁表面的柔软材料。配合沥青使用,它可以修理某些物品,但不适合复杂的工作。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "塑料模具" @@ -108810,7 +108613,6 @@ msgid "" msgstr "一个塑料模具,可以用于塑性并制造塑料制品。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "多功能工具" @@ -108823,7 +108625,6 @@ msgid "" msgstr "一个将许多小工具整合进钳子握柄造就的多功能工具。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "乙炔焊炬" @@ -108841,7 +108642,6 @@ msgstr "" "乙炔焊炬焊炬包含焊炬握柄,切割配件,整体结构非常便携。需要先连接到含有焊接气体的气罐才能使用。因为它的金工用途,你可以激活它开摧毁金属栅栏。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "油漆刷" @@ -108852,7 +108652,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "一个大刷子,用来给墙刷漆而不是刷牙。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "鹤嘴锄" @@ -108865,7 +108664,6 @@ msgid "" msgstr "一把钢制大镐头,刨墙砸头两不误。劳动人民一声吼,地球也要抖三抖!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "针铰刀" @@ -108878,7 +108676,6 @@ msgid "" msgstr "这种手持式针铰刀用于扩大现有的孔,或从其中移除任何毛刺之类的东西。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "手钳" @@ -108892,7 +108689,6 @@ msgid "" msgstr "这是一把基本的鲤鱼钳,能用来做一些基本的机械和拆解弹药工作,如果你要做更复杂的工作,那就需要一个扳手了。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "电动打磨机" @@ -108917,7 +108713,6 @@ msgid "" msgstr "一个插着棒子的岩石,勉强可以做锤子,但山寨的毕竟比不过真的。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "螺丝刀" @@ -108930,7 +108725,6 @@ msgid "" msgstr "一把十字螺丝刀,对制造电子产品和机械十分重要,而且还有许多其他用途。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "螺丝刀组" @@ -108943,7 +108737,6 @@ msgid "" msgstr "一把有着多种尺寸和形状接口的螺丝刀。保证有正确的工具来进行更精细的工作" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "基础枪械修理包" @@ -108957,7 +108750,6 @@ msgid "" msgstr "一个修复受损的枪械的便携式工具包。使用标准电池,它是长期维护枪械的重要工具。每使用一次消耗100单位的电池电量。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "电烙铁" @@ -108985,7 +108777,6 @@ msgid "" msgstr "一块可以被烧得很烫的金属板,可以用来制造电子产品。将金属尖端放在燃烧器上,就能产生足够的热量进行焊接。没有普通电烙铁那么复杂。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "工具箱" @@ -108998,7 +108789,6 @@ msgid "" msgstr "这是一个坚固的金属盒子,内含一套完整的工具,适用于大多数家居维护及建设活动。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "工坊工具箱" @@ -109025,7 +108815,6 @@ msgid "" msgstr "你的掌心工具箱,从你的手上伸出。它能帮助你切、剁,还能做其它的很多事情。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "电弧焊枪" @@ -109038,7 +108827,6 @@ msgid "" msgstr "这是一个电池供电的工具,可以使用电弧将金属部件焊接在一起。这是一个建筑或维修时不可缺少的工具。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "木制水泥刮刀" @@ -109051,7 +108839,6 @@ msgid "" msgstr "这个大型自制工具通常用于在建筑时平整混凝土、抹平砂浆。你也可以拿它削别人的脑袋。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "羊毛纤维" @@ -109064,7 +108851,6 @@ msgid "" msgstr "一簇天然羊毛纤维。可以加工成毛毡补丁或毛纱。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "美工刀" @@ -109080,7 +108866,6 @@ msgstr "" "一把小巧且锋利的刀具,用于在制造工艺品和衣物时进行精确切割使用。伤害不错但很难命中敌人。小巧锋利的刀刃在高手手中能够很精确打击对手。但尺寸太小不适合用来屠宰尸体。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "扳手" @@ -109093,7 +108878,6 @@ msgid "" msgstr "一把扳手,能当做武器握在手里,也是许多机械制造必备之物。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "皮软管" @@ -109107,7 +108891,6 @@ msgid "" msgstr "这是一根用皮革制成的软管。防水又轻便,可以从车辆油箱里抽取燃油。然而这一根没有橡胶软管那么有弹性。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "简易手摇钻" @@ -110245,6 +110028,16 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "一个大的塑料框架。用于制造轻便而坚固的载具。" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "滑板板面" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "一个小型滑板框架,由多层薄木板粘合在一起制成。" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -110548,7 +110341,6 @@ msgid "" msgstr "演奏内建简单旋律的立体声扬声系统。冰淇淋车常用它吸引孩子们的注意——在他们喜欢冰淇淋更胜于脑浆的时代。" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "薄钢板" @@ -110934,6 +110726,12 @@ msgstr[0] "木桌子" msgid "A crude wooden table." msgstr "一个粗糙的木桌" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "机器人工作台" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -111235,6 +111033,28 @@ msgstr[0] "脚轮组" msgid "A set of casters, like on a shopping cart." msgstr "一套脚轮,就像超市购物车用的那种。" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "滑板轮子" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "一组滑板轮子。" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "滑板支架" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "一对金属滑板支架,用于安装滑板轮子。" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -112050,13 +111870,6 @@ msgstr "水泥" msgid "FERTILIZER" msgstr "肥料" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "石砾" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -112376,13 +112189,6 @@ msgstr "纸制品" msgid "PLASTIC" msgstr "塑料制品" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "电子制品" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -112946,7 +112752,7 @@ msgstr "调试疼痛" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "提升疼痛" @@ -112970,7 +112776,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "降低体力。用于米·戈奴役者光束" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "疼痛" @@ -116614,14 +116420,14 @@ msgstr[0] "邪恶厨师机" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "这个多功能炒菜机器人想要把你做成一盆大餐!小心!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "全息投影" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "由光线构成的幻影,看起来几乎和活人一样。" @@ -126342,9 +126148,9 @@ msgstr "你愿意和我一起去旅行吗?" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "[交易]做些交易吧,怎样?" @@ -127151,9 +126957,9 @@ msgstr "你在这里干什么?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "想离开这儿吗?" @@ -127169,9 +126975,9 @@ msgstr "想离开这儿吗?" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "[任务]我能为你做些什么?" @@ -127199,25 +127005,25 @@ msgstr "事情发生时我在这里守着警局,其他警察在最后一次通 #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "你为什么不去别的地方呢?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "那么让我们交易吧。" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "对不起,我得走了。" @@ -127237,9 +127043,9 @@ msgid "You've seen other survivors?" msgstr "你见过其他幸存者吗?" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "你能卖给我什么?" @@ -133550,7 +133356,7 @@ msgstr "懊恼" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "嘿,。" @@ -143494,17 +143300,17 @@ msgstr "这在我看来是一个军事问题,我是来协助的。" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "关于任务……" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "关于任务之一……" @@ -144732,7 +144538,7 @@ msgid "" msgstr "屋顶!那么高!那么宽敞!来我的朋友,到时候过来看看我。我不会让你失望的。" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "我不明白。" @@ -150616,9 +150422,9 @@ msgstr "给点生存建议?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "再见。" @@ -154231,7 +154037,7 @@ msgstr "一颗 40mm 照明榴弹。它会明亮地燃烧大约一分钟,并同 #: data/json/obsoletion/items.json msgid "40x46mm" msgid_plural "40x46mms" -msgstr[0] "40x46mm M585 闪光弹" +msgstr[0] "40x46mms" #. ~ Description for {'str': '40x46mm'} #: data/json/obsoletion/items.json @@ -159363,7 +159169,6 @@ msgid "" msgstr "用于动物放牧和种植干草的农田和相关设施(包括谷仓和其他附属建筑)。" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "森林" @@ -159739,7 +159544,7 @@ msgid "island" msgstr "岛屿" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "小屋" @@ -159761,7 +159566,6 @@ msgstr "小屋地下室" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "森林" @@ -162514,7 +162318,6 @@ msgid "scrap yard" msgstr "废料场" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "湖岸" @@ -162561,7 +162364,7 @@ msgstr "武器" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "全部" @@ -162686,6 +162489,13 @@ msgstr "电子" msgid "CBMS" msgstr "生化插件" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "工具" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -162699,7 +162509,7 @@ msgstr "照明" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "装备" @@ -162740,7 +162550,7 @@ msgstr "医疗" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "材料" @@ -173117,7 +172927,7 @@ msgstr "折叠车架" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -173200,6 +173010,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "一个碳素纤维车辆框架。其他载具部件能够安装在它上面,在它四周增加新的车辆框架,就可以增加车辆大小。" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "一个轻便的木质滑板板面,可安装其他滑板部件。" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "过道灯" @@ -174937,6 +174754,24 @@ msgid "" "chair or grocery cart." msgstr "一套安装在旋转轴上的小型车轮,和办公室里的旋转椅或是购物车的轮子那样。" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "滑板轮子" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "一组四个小轮子,适用于滑板。" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "滑板支架" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "一对滑板支架,用于将轮子安装到滑板上。" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "輪胎" @@ -175006,7 +174841,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "一片强化玻璃,让你可以看见外面。内部用钢丝强化过,比一般玻璃更难破裂。" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "自行车" @@ -175020,11 +174855,11 @@ msgstr "电动自行车" #: data/json/vehicles/bikes.json msgid "Motocross Bike" -msgstr "越野摩托车" +msgstr "越野摩托" #: data/json/vehicles/bikes.json msgid "Street-Legal Dirt Bike" -msgstr "街道版越野摩托车" +msgstr "街道版越野摩托" #: data/json/vehicles/bikes.json msgid "Motorcycle" @@ -175074,6 +174909,10 @@ msgstr "塑料自行车" msgid "Carbon Fiber Bicycle" msgstr "碳素纤维自行车" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "滑板" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "独木舟" @@ -175219,8 +175058,8 @@ msgid "Wheelbarrow" msgstr "独轮推车" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "折叠轮椅" +msgid "Wheelchair" +msgstr "轮椅" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -175244,7 +175083,7 @@ msgstr "废土战车" #: data/json/vehicles/custom_vehicles.json msgid "Meth Bike" -msgstr "安非他命摩托车" +msgstr "制毒摩托" #: data/json/vehicles/emergency.json msgid "Ambulance" @@ -175562,7 +175401,6 @@ msgid "Tour Bus" msgstr "旅游巴士" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "押运车" @@ -182132,7 +181970,7 @@ msgid "Holographic Flash Explosion" msgstr "全息闪光爆" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "全息换位术" @@ -182140,8 +181978,8 @@ msgstr "全息换位术" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -183032,9 +182870,9 @@ msgstr[0] "折叠式带钩枪托" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "一个军用级的枪托,能够折叠起来减少枪械体积。它的重量以及一个能固定在手臂上的旋转挂钩使你的手臂持枪更加稳定。" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -183046,7 +182884,7 @@ msgstr[0] "衍射透镜" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "一套安装在激光武器上的光学装置,它将激光束衍射成几个低功率光束。这稍微增加了近距离的伤害,但减少了射程。" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -197338,42 +197176,42 @@ msgstr "9mm 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid ".44 casing" msgid_plural ".44 casings" -msgstr[0] "" +msgstr[0] ".44 弹壳" #. ~ Description for .44 casing #: data/mods/Generic_Guns/ammo/casings.json msgid "An empty casing from a .44 round." -msgstr "" +msgstr ".44 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "5.56mm casing" msgid_plural "5.56mm casings" -msgstr[0] "" +msgstr[0] "5.56mm 弹壳" #. ~ Description for 5.56mm casing #: data/mods/Generic_Guns/ammo/casings.json msgid "An empty casing from a 5.56mm round." -msgstr "" +msgstr "5.56mm 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "7.62mm casing" msgid_plural "7.62mm casings" -msgstr[0] "" +msgstr[0] "7.62mm 弹壳" #. ~ Description for 7.62mm casing #: data/mods/Generic_Guns/ammo/casings.json msgid "An empty casing from a 7.62mm round." -msgstr "" +msgstr "7.62mm 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "12.7mm casing" msgid_plural "12.7mm casings" -msgstr[0] "" +msgstr[0] "12.7mm 弹壳" #. ~ Description for 12.7mm casing #: data/mods/Generic_Guns/ammo/casings.json msgid "An empty casing from a 12.7mm round." -msgstr "" +msgstr "12.7mm 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "shotshell hull" @@ -197390,33 +197228,33 @@ msgstr "一个空的霰弹弹壳,一根带着黄铜底座的塑料铜管。" #: data/mods/Generic_Guns/ammo/casings.json msgid "40mm casing" msgid_plural "40mm casings" -msgstr[0] "" +msgstr[0] "40mm 弹壳" #. ~ Description for {'str': '40mm casing'} #: data/mods/Generic_Guns/ammo/casings.json msgid "A large casing from a 40mm round." -msgstr "" +msgstr "40mm 子弹的大型弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "5.56mm machine gun belt linkage" msgid_plural "5.56mm machine gun belt linkages" -msgstr[0] "" +msgstr[0] "5.56mm 机枪子弹带链节" #: data/mods/Generic_Guns/ammo/casings.json msgid "12.7mm machine gun belt linkage" msgid_plural "12.7mm machine gun belt linkages" -msgstr[0] "" +msgstr[0] "12.7mm 机枪子弹带链节" #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm grenade" msgid_plural "40mm grenades" -msgstr[0] "" +msgstr[0] "40mm 榴弹" #: data/mods/Generic_Guns/ammo/grenade.json #: data/mods/Generic_Guns/vehicles/ammo_redefine_hacks/temp_ammo_redefine_hack.json msgid "40mm HEDP grenade" msgid_plural "40mm HEDP grenades" -msgstr[0] "" +msgstr[0] "40mm HEDP 榴弹" #. ~ Description for {'str': '40mm HEDP grenade'} #: data/mods/Generic_Guns/ammo/grenade.json @@ -197429,7 +197267,7 @@ msgstr "一颗破片榴弹,有个高爆两用弹头,能产生大量穿甲及 #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm beanbag grenade" msgid_plural "40mm beanbag grenades" -msgstr[0] "" +msgstr[0] "40mm 豆袋榴弹" #. ~ Description for {'str': '40mm beanbag grenade'} #: data/mods/Generic_Guns/ammo/grenade.json @@ -197441,7 +197279,7 @@ msgstr "一款低初速低杀伤榴弹,弹头内装着泡沫和塑料弹丸, #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm flare grenade" msgid_plural "40mm flare grenades" -msgstr[0] "" +msgstr[0] "40mm 燃烧榴弹" #. ~ Description for {'str': '40mm flare grenade'} #: data/mods/Generic_Guns/ammo/grenade.json @@ -197453,7 +197291,7 @@ msgstr "一颗照明榴弹。它会明亮地燃烧大约一分钟,并同时会 #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm buckshot grenade" msgid_plural "40mm buckshot grenades" -msgstr[0] "" +msgstr[0] "40mm 霰榴弹" #. ~ Description for {'str': '40mm buckshot grenade'} #: data/mods/Generic_Guns/ammo/grenade.json @@ -197465,7 +197303,7 @@ msgstr "一颗使用猎鹿弹弹头的榴弹。设计为榴弹发射器使用者 #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm smoke grenade" msgid_plural "40mm smoke grenades" -msgstr[0] "" +msgstr[0] "40mm 烟雾榴弹" #. ~ Description for 40mm smoke grenade #: data/mods/Generic_Guns/ammo/grenade.json @@ -197475,7 +197313,7 @@ msgstr "一颗设计用来提供烟幕掩护的榴弹。" #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm teargas grenade" msgid_plural "40mm teargas grenades" -msgstr[0] "" +msgstr[0] "40mm 催泪榴弹" #. ~ Description for 40mm teargas grenade #: data/mods/Generic_Guns/ammo/grenade.json @@ -197487,7 +197325,7 @@ msgstr "一颗催泪瓦斯榴弹。它爆炸后会散发的气雾能使目标暂 #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm slug grenade" msgid_plural "40mm slug grenades" -msgstr[0] "" +msgstr[0] "40mm 子弹榴弹" #. ~ Description for 40mm slug grenade #: data/mods/Generic_Guns/ammo/grenade.json @@ -197551,7 +197389,7 @@ msgstr[0] "废品霰弹" #: data/mods/Generic_Guns/ammo/shot.json msgid "shotshell, flechette" msgid_plural "shotshell, flechette" -msgstr[0] "" +msgstr[0] "镖形霰弹" #. ~ Description for {'str_sp': 'shotshell, flechette'} #: data/mods/Generic_Guns/ammo/obsolete.json @@ -197628,7 +197466,7 @@ msgstr[0] "大型步枪穿甲弹(复装)" #: data/mods/Generic_Guns/ammo/pistol.json msgid "9mm, FMJ" msgid_plural "9mm, FMJ" -msgstr[0] "" +msgstr[0] "9mm 被甲弹" #. ~ Description for {'str_sp': '9mm, FMJ'} #: data/mods/Generic_Guns/ammo/pistol.json @@ -197642,7 +197480,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol.json msgid "9mm, JHP" msgid_plural "9mm, JHP" -msgstr[0] "" +msgstr[0] "9mm 空尖弹" #. ~ Description for {'str_sp': '9mm, JHP'} #: data/mods/Generic_Guns/ammo/pistol.json @@ -197657,7 +197495,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol.json msgid "9mm, FMJ (black powder)" msgid_plural "9mm, FMJ (black powder)" -msgstr[0] "" +msgstr[0] "9mm 被甲弹(黑火药)" #. ~ Description for {'str_sp': '9mm, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/pistol.json @@ -197672,7 +197510,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol.json msgid "9mm, JHP (black powder)" msgid_plural "9mm, JHP (black powder)" -msgstr[0] "" +msgstr[0] "9mm 空尖弹(黑火药)" #. ~ Description for {'str_sp': '9mm, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/pistol.json @@ -197687,7 +197525,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_magnum.json msgid ".44, FMJ" msgid_plural ".44, FMJ" -msgstr[0] "" +msgstr[0] ".44 被甲弹" #. ~ Description for {'str_sp': '.44, FMJ'} #: data/mods/Generic_Guns/ammo/pistol_magnum.json @@ -197701,7 +197539,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_magnum.json msgid ".44, JHP" msgid_plural ".44, JHP" -msgstr[0] "" +msgstr[0] ".44 空尖弹" #. ~ Description for {'str_sp': '.44, JHP'} #: data/mods/Generic_Guns/ammo/pistol_magnum.json @@ -197717,7 +197555,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_magnum.json msgid ".44, FMJ (black powder)" msgid_plural ".44, FMJ (black powder)" -msgstr[0] "" +msgstr[0] ".44 被甲弹(黑火药)" #. ~ Description for {'str_sp': '.44, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/pistol_magnum.json @@ -197732,7 +197570,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_magnum.json msgid ".44, JHP (black powder)" msgid_plural ".44, JHP (black powder)" -msgstr[0] "" +msgstr[0] ".44 空尖弹(黑火药)" #. ~ Description for {'str_sp': '.44, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/pistol_magnum.json @@ -197747,7 +197585,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_tiny.json msgid ".22, FMJ" msgid_plural ".22, FMJ" -msgstr[0] "" +msgstr[0] ".22 被甲弹" #. ~ Description for {'str_sp': '.22, FMJ'} #: data/mods/Generic_Guns/ammo/pistol_tiny.json @@ -197761,7 +197599,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_tiny.json msgid ".22, JHP" msgid_plural ".22, JHP" -msgstr[0] "" +msgstr[0] ".22 空尖弹" #. ~ Description for {'str_sp': '.22, JHP'} #: data/mods/Generic_Guns/ammo/pistol_tiny.json @@ -197777,7 +197615,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_tiny.json msgid ".22, FMJ (black powder)" msgid_plural ".22, FMJ (black powder)" -msgstr[0] "" +msgstr[0] ".22 被甲弹(黑火药)" #. ~ Description for {'str_sp': '.22, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/pistol_tiny.json @@ -197792,7 +197630,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_tiny.json msgid ".22, JHP (black powder)" msgid_plural ".22, JHP (black powder)" -msgstr[0] "" +msgstr[0] ".22 空尖弹(黑火药)" #. ~ Description for {'str_sp': '.22, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/pistol_tiny.json @@ -197808,7 +197646,7 @@ msgstr "" #: data/mods/Generic_Guns/vehicles/ammo_redefine_hacks/temp_ammo_redefine_hack.json msgid "5.56mm, FMJ" msgid_plural "5.56mm, FMJ" -msgstr[0] "" +msgstr[0] "5.56mm 被甲弹" #. ~ Description for {'str_sp': '5.56mm, FMJ'} #: data/mods/Generic_Guns/ammo/rifle.json @@ -197823,7 +197661,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle.json msgid "5.56mm, JHP" msgid_plural "5.56mm, JHP" -msgstr[0] "" +msgstr[0] "5.56mm 空尖弹" #. ~ Description for {'str_sp': '5.56mm, JHP'} #: data/mods/Generic_Guns/ammo/rifle.json @@ -197838,7 +197676,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle.json msgid "5.56mm, FMJ (black powder)" msgid_plural "5.56mm, FMJ (black powder)" -msgstr[0] "" +msgstr[0] "5.56mm 被甲弹(黑火药)" #. ~ Description for {'str_sp': '5.56mm, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/rifle.json @@ -197853,7 +197691,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle.json msgid "5.56mm, JHP (black powder)" msgid_plural "5.56mm, JHP (black powder)" -msgstr[0] "" +msgstr[0] "5.56mm 空尖弹(黑火药)" #. ~ Description for {'str_sp': '5.56mm, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/rifle.json @@ -197869,7 +197707,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle_huge.json msgid "12.7mm, FMJ" msgid_plural "12.7mm, FMJ" -msgstr[0] "" +msgstr[0] "12.7mm 被甲弹" #. ~ Description for {'str_sp': '12.7mm, FMJ'} #: data/mods/Generic_Guns/ammo/rifle_huge.json @@ -197884,7 +197722,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle_huge.json msgid "12.7mm, JHP" msgid_plural "12.7mm, JHP" -msgstr[0] "" +msgstr[0] "12.7mm 空尖弹" #. ~ Description for {'str_sp': '12.7mm, JHP'} #: data/mods/Generic_Guns/ammo/rifle_huge.json @@ -197899,7 +197737,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle_huge.json msgid "12.7mm, FMJ (black powder)" msgid_plural "12.7mm, FMJ (black powder)" -msgstr[0] "" +msgstr[0] "12.7mm 被甲弹(黑火药)" #. ~ Description for {'str_sp': '12.7mm, FMJ (black powder)'} #. ~ Description for {'str_sp': '12.7mm, JHP (black powder)'} @@ -197915,7 +197753,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle_huge.json msgid "12.7mm, JHP (black powder)" msgid_plural "12.7mm, JHP (black powder)" -msgstr[0] "" +msgstr[0] "12.7mm 空尖弹(黑火药)" #: data/mods/Generic_Guns/ammo/rocket.json msgid "rocket, antipersonnel" @@ -198089,7 +197927,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/sniper.json msgid "7.62mm, FMJ" msgid_plural "7.62mm, FMJ" -msgstr[0] "" +msgstr[0] "7.62mm 被甲弹" #. ~ Description for {'str_sp': '7.62mm, FMJ'} #: data/mods/Generic_Guns/ammo/sniper.json @@ -198103,7 +197941,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/sniper.json msgid "7.62mm, JHP" msgid_plural "7.62mm, JHP" -msgstr[0] "" +msgstr[0] "7.62mm 空尖弹" #. ~ Description for {'str_sp': '7.62mm, JHP'} #: data/mods/Generic_Guns/ammo/sniper.json @@ -198117,7 +197955,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/sniper.json msgid "7.62mm, FMJ (black powder)" msgid_plural "7.62mm, FMJ (black powder)" -msgstr[0] "" +msgstr[0] "7.62mm 被甲弹(黑火药)" #. ~ Description for {'str_sp': '7.62mm, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/sniper.json @@ -198131,7 +197969,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/sniper.json msgid "7.62mm, JHP (black powder)" msgid_plural "7.62mm, JHP (black powder)" -msgstr[0] "" +msgstr[0] "7.62mm 空尖弹(黑火药)" #. ~ Description for {'str_sp': '7.62mm, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/sniper.json @@ -198199,7 +198037,7 @@ msgstr "" #: data/mods/Generic_Guns/firearms/grenade.json msgid "40mm grenade launcher" msgid_plural "40mm grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 榴弹发射器" #: data/mods/Generic_Guns/firearms/grenade.json msgid "" @@ -198209,12 +198047,12 @@ msgid "" "personnel. Still deadly against hard or soft targets, depending on what " "cartridges are available." msgstr "" -"一款老式的单发榴弹发射器,看起来像是一把锯短的霰弹枪。虽然它已经大多被管下发射器取代,但像这样的专用型号仍然被执法人员和防暴人员使用。它对硬目标或软目标仍然十分致命,这取决于你手头的可用弹药。" +"一款老式的单发榴弹发射器,看起来像是一把锯短的霰弹枪。虽然它已经大多被下挂式发射器取代,但像这样的专用型号仍然被执法人员和防暴人员使用。它对硬目标或软目标仍然十分致命,这取决于你手头的可用弹药。" #: data/mods/Generic_Guns/firearms/grenade.json msgid "40mm automatic grenade launcher" msgid_plural "40mm automatic grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 自动榴弹发射器" #: data/mods/Generic_Guns/firearms/grenade.json msgid "" @@ -198230,7 +198068,7 @@ msgstr "" #: data/mods/Generic_Guns/firearms/grenade.json msgid "40mm detachable grenade launcher" msgid_plural "40mm detachable grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 可拆卸榴弹发射器" #: data/mods/Generic_Guns/firearms/grenade.json msgid "" @@ -198247,7 +198085,7 @@ msgstr "" #: data/mods/Generic_Guns/firearms/grenade.json msgid "40mm revolving grenade launcher" msgid_plural "40mm revolving grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 转轮榴弹发射器" #: data/mods/Generic_Guns/firearms/grenade.json msgid "" @@ -198400,7 +198238,7 @@ msgstr[0] "冲锋枪" #: data/mods/Generic_Guns/firearms/pistol.json #: data/mods/Generic_Guns/firearms/sniper.json msgid "You shouldn't see this! " -msgstr "" +msgstr "你不应该看到这个!" #: data/mods/Generic_Guns/firearms/pistol_magnum.json msgid ".44 pistol" @@ -198730,7 +198568,7 @@ msgstr[0] "狙击步枪" #: data/mods/Generic_Guns/gunmods/gunmods.json msgid "40mm underbarrel grenade launcher" msgid_plural "40mm underbarrel grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 下挂式榴弹发射器" #: data/mods/Generic_Guns/gunmods/gunmods.json msgid "" @@ -198747,7 +198585,7 @@ msgstr "" #: data/mods/Generic_Guns/gunmods/gunmods.json msgid "40mm modified underbarrel grenade launcher" msgid_plural "40mm modified underbarrel grenade launcher" -msgstr[0] "" +msgstr[0] "40mm 下挂式榴弹发射器(改)" #: data/mods/Generic_Guns/gunmods/gunmods.json msgid "" @@ -198773,7 +198611,7 @@ msgstr[0] "管下霰弹枪(改)" #: data/mods/Generic_Guns/magazines/grenade.json msgid "40mm grenade belt" msgid_plural "40mm grenade belts" -msgstr[0] "" +msgstr[0] "40mm 榴弹带" #. ~ Description for {'str': '40mm grenade belt'} #: data/mods/Generic_Guns/magazines/grenade.json @@ -199322,74 +199160,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "其他工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "破门工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "工作坊工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "烹饪工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "化学工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "农用工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "可部署设备" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "烹饪原料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "金属废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "电子废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "织物" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "木头废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "塑料废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "陶瓷废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "玻璃废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "贵重物品" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "土壤" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "物品分类大修" @@ -199399,177 +199169,6 @@ msgstr "物品分类大修" msgid "Massively overhauls item categories to allow better sorting." msgstr "大幅重做物品分类,以实现更好的排序功能。" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "其他工具区" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "其他工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "破门工具区" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "破门工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "工作坊工具区" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "工作坊工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "烹饪工具区" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "烹饪工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "化学工具区" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "化学工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "农用工具区" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "农用工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "可部署设备区" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "可部署设备的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "电子产品区" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "电子产品的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "烹饪原料区" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "烹饪原料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "金属废料区" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "金属废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "电子废料区" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "电子废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "织物废料区" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "织物废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "木头废料区" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "木头废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "塑料废料区" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "塑料废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "陶瓷废料区" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "陶瓷废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "玻璃废料区" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "玻璃废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "贵重物品区" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "贵重物品的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "石头区" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "石头和矿物的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "土壤区" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "土壤的放置区域。" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "限制真菌成长" @@ -200853,90 +200452,110 @@ msgstr "你差点被%s抓住,但是用蛮力挣脱了!" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "差点被%s抓住,但是用蛮力挣脱了!" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" -msgstr[0] "血液燃料电池CBM" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" +msgstr[0] "魔力结晶义鼻" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." -msgstr "你的背部装有一个强大的法术枢纽,并连接至你的生化能量系统,能够消耗其它生物的血液以产生生化能量。可以存放最多 100 ml 血液。" +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." +msgstr "" +"一个使用魔力结晶和其他稳定金属制作而成的大型宝石。配有一个经过特别设计不会干扰你正常面部功能的供能装置(被安装在头骨之中)。警告:仅供技术爱好者使用。施放此法术视为你同意免除弗里肯激光公司及其子公司的所有责任。" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" -msgstr "" +msgstr "增加枭熊毛皮衬里" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" -msgstr "" +msgstr "破坏枭熊毛皮衬里" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" -msgstr "" +msgstr "增加恶魔甲壳衬里" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" -msgstr "" +msgstr "破坏恶魔甲壳衬里" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "添加黑龙鳞表皮" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "移除黑龙鳞表皮" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "建造易位门" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." -msgstr "" +msgstr "这件装备缝上了枭熊毛皮内衬,极大增加 保暖度。" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." -msgstr "" +msgstr "这件装备缝上了恶魔甲壳内衬,极大增加 火焰抗性。" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "这件装备附加了黑龙鳞表皮,极大增加 酸性抗性。" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "易位门" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "一座易位门。施放易位术或使用易位门可将其作为传送目的地。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "魔法阵" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "这是一个刻在地上的魔法阵,上面装饰着血液、蜡烛以及其它小物件。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "发光的巨石" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "它看上去不太对劲。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "附魔师工作台" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " @@ -200944,24 +200563,24 @@ msgid "" msgstr "" "一个装饰华丽的橡木储藏柜,上面有一个耐用的树脂台面,能抵抗大多数炼金物品的腐蚀,它同时配有电力与煤气设备,并点缀着许多保护用的符文,不过大部分都是装饰。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "立式蒸馏釜" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "一台由玻璃和铜制成的大型蒸馏釜,用于提纯炼金药剂。它的主体是一口铜锅,顶部有许多盘旋上升的螺旋形玻璃排水管,通向各种可被移除的瓶子。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "太阳系仪" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -200970,44 +200589,45 @@ msgid "" msgstr "" "一套外观美丽,比例与实际不符的太阳系模型。一系列复杂的齿轮使你能在摇柄转动时进行行星相对运动的研究。这台更现代的版本带有蓝牙模块,本来可以通过一个外部APP来控制它,如果还有电的话。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "巨型魔力水晶" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "一个像杂草一样在地面上突出而来的魔法水晶。它发出微弱的黄色能量脉冲,偶尔会迸发出被压抑的光芒。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "玻璃破碎声!" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "魔力噼啪声!" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "石头祭坛" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "一个大型石头祭坛。最常用于各类不合伦理的仪式。" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "恶魔熔炉" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " @@ -201015,111 +200635,163 @@ msgid "" msgstr "" "一个由巨大的红色恶魔蜘蛛的甲壳所制成的锻铁炉,它对火焰有着强烈的嗜好。经过特殊处理能够抵御源动之焰的高温,这个锻炉可以将魔法金属熔化成能够制造物品的锭。" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "奥术皮肤" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "黑龙皮" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "恶魔甲壳" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "山铜" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "魔力结晶" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" -msgstr "大魔法" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "龙骨" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" -msgstr "" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" +msgstr "秘银" + +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "魔法之夜" -#: data/mods/Magiclysm/modinfo.json +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "明亮之夜,但有魔法!从Magiclysm的废墟中崛起了一个新mod与一位新的控制者。" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "魔法" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" " spell failure chance. You learn this skill by studying books or spells." msgstr "神秘的奥术。代表了魔法理论和相关知识。更高的技能可以提高你学习法术的速度,降低法术失败几率。你可以通过学习魔法书及法术来提高这项技能。" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "%1$s 用三叉戟刺穿了你的 %2$s!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "%1$s 用三叉戟刺穿了 的 %2$s!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "%1$s 试图用三叉戟刺穿你的 %2$s,但是没能穿透护甲!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "%1$s 试图用三叉戟刺穿 的 %2$s,但是没能穿透护甲!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "%1$s 用巨木棒砸碎了你的 %2$s!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "%1$s 用巨木棒砸碎了 的 %2$s!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "%1$s 试图用巨木棒砸碎你的 %2$s,但是砸空并摔倒了!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "%1$s 试图用巨木棒砸碎 的 %2$s,但是砸空并摔倒了!" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "魔法飞剑" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "一柄发光的魔法长剑,它正四处游走,准备把你的敌人切成碎块。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "召唤丧尸" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "召唤丧尸。比野生同类稍微聪明一些。" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "召唤骷髅" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "召唤骷髅。比野生同类稍微聪明一些。似乎莫名其妙地喜欢双关语冷笑话。" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "召唤腐朽突袭兽" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "召唤腐朽突袭兽。比野生同类稍微聪明一些。" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "过时血液燃料电池CBM" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "这个生化插件已经过时了!" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "准魔术师" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "准魔术师" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -201127,25 +200799,25 @@ msgid "" msgstr "你发现了一本宣称能让你成为魔法师的炫丽手册,在世界在你身边崩溃时,它让你感到一股奇特的宁静。" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "你发现了一本宣称能让你成为魔法师的炫丽手册,在世界在你身边崩溃时,它让你感到一股奇特的宁静。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "纵火狂徒" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "纵火狂徒" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -201153,25 +200825,25 @@ msgid "" msgstr "一生所恋,炽焰浓烟,心炎既现,熔炼人间。" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "一生所恋,炽焰浓烟,心炎既现,熔炼人间。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "德鲁伊" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "德鲁伊" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -201179,7 +200851,7 @@ msgid "" msgstr "古老的德鲁伊祭坛在大灾变中随风而逝了。但自然终将繁盛。" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -201187,7 +200859,7 @@ msgid "" msgstr "古老的德鲁伊祭坛在大灾变中随风而逝了。但自然终将繁盛。" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -201197,7 +200869,7 @@ msgid "" msgstr "当灾难来袭,你动用你最擅长的能力来保护你的教区信徒。但他们都死了,显然光做祷告好像没多大用嘛!现在,是时候找些更切实的手段保护你自己了。" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -201207,7 +200879,7 @@ msgid "" msgstr "当灾难来袭,你动用你最擅长的能力来保护你的教区信徒。但他们都死了,显然光做祷告好像没多大用嘛!现在,是时候找些更切实的手段保护你自己了。" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -201218,7 +200890,7 @@ msgstr "" "在大灾变发生前,你一生中的大部分时间,都在本地的清真寺中的研读先知和古兰经中的字句,和在你的社区中布道度过了。但是现在,那些不远千里从四面八方过来的信教者们,都不再是为了听你的布道,而是为了来吃你的脑子来了。" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -201229,7 +200901,7 @@ msgstr "" "在大灾变发生前,你一生中的大部分时间,都在本地的清真寺中的研读先知和古兰经中的字句,和在你的社区中布道度过了。但是现在,那些不远千里从四面八方过来的信教者们,都不再是为了听你的布道,而是为了来吃你的脑子来了。" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -201239,7 +200911,7 @@ msgstr "" "你用了很多年来游历世界,以增长见识变得聪慧。通常,你可以给出任何的问题的答案,但是你现在被一堆饥饿的不死生物包围着,对自己下一步应该怎么做的问题毫无头绪。" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -201249,7 +200921,7 @@ msgstr "" "你用了很多年来游历世界,以增长见识变得聪慧。通常,你可以给出任何的问题的答案,但是你现在被一堆饥饿的不死生物包围着,对自己下一步应该怎么做的问题毫无头绪。" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -201260,7 +200932,7 @@ msgstr "" "你把你的一生都奉献在一个城镇到一个城镇地传播福音和去往传播福音的路上。现在,所有东西都已坠入地狱,你不能够再维持你的播客生活了,因为那些不死生物听到你的布道后也不会再心动了。" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -201270,18 +200942,18 @@ msgid "" msgstr "" "你把你的一生都奉献在一个城镇到一个城镇地传播福音和去往传播福音的路上。现在,所有东西都已坠入地狱,你不能够再维持你的播客生活了,因为那些不死生物听到你的布道后也不会再心动了。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "死灵法师学徒" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "死灵法师学徒" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -201290,7 +200962,7 @@ msgid "" msgstr "你以前总是不得不隐藏自己的魔法,因为它在魔法师世界中不被大多数人所接受,但现在面对大灾变时,你需要使出浑身解数利用好每一个法术。" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -201298,18 +200970,18 @@ msgid "" "pull every trick out of the book." msgstr "你以前总是不得不隐藏自己的魔法,因为它在魔法师世界中不被大多数人所接受,但现在面对大灾变时,你需要使出浑身解数利用好每一个法术。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "风暴塑造者学徒" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "风暴塑造者学徒" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -201319,7 +200991,7 @@ msgid "" msgstr "你爸以前是个气象员,所以你也对气象学很感兴趣。最近你发现你居然可以用神秘的方法操作天气!可惜你没来得及发挥你的力量,大灾变就到来了……" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -201328,18 +201000,18 @@ msgid "" "power, as events unfolded…" msgstr "你爸以前是个气象员,所以你也对气象学很感兴趣。最近你发现你居然可以用神秘的方法操作天气!可惜你没来得及发挥你的力量,大灾变就到来了……" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "塑地者学徒" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "塑地者学徒" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -201347,25 +201019,25 @@ msgid "" msgstr "你在打架的时候总是最能抗的那个。你的教练在此基础上教了你几个绝招,让你变得更加能抗。" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "你在打架的时候总是最能抗的那个。你的教练在此基础上教了你几个绝招,让你变得更加能抗。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "科技法师学徒" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "科技法师学徒" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -201373,59 +201045,93 @@ msgid "" msgstr "随着大灾变的到来,你可能得想办法把在考试时学会的作弊技巧用在其它方面了。" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "随着大灾变的到来,你可能得想办法把在考试时学会的作弊技巧用在其它方面了。" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "炽霜法师学徒" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "炽霜法师学徒" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" +"从小以来,你总是对冷热交替的现象深深着迷。火焰总能温暖你的心灵,而每到冬天,你都会祈祷能有一个雪天,只因为你对雪的热爱从未改变,即便随着年龄增长,这份热情依然未减。于是,你自然而然地开始学习操控这些原始元素的魔法。" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" +"从小以来,你总是对冷热交替的现象深深着迷。火焰总能温暖你的心灵,而每到冬天,你都会祈祷能有一个雪天,只因为你对雪的热爱从未改变,即便随着年龄增长,这份热情依然未减。于是,你自然而然地开始学习操控这些原始元素的魔法。" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "附魔" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "药水" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "符文" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" -msgstr "" +msgstr "附魔" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "魔力聚焦" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "魔力注入" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "魔力编织" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "信仰动摇" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "信仰动摇" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -201435,7 +201141,7 @@ msgstr "" "你已经宣扬你的信仰很长一段时间了,但最近的事件让产生了动摇。你在神殿里游荡,发现了一些书籍。也许它能够恢复你的信仰。但也说不定会完全摧毁它。" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -201445,25 +201151,25 @@ msgstr "" "你已经宣扬你的信仰很长一段时间了,但最近的事件让产生了动摇。你在神殿里游荡,发现了一些书籍。也许它能够恢复你的信仰。但也说不定会完全摧毁它。" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "教堂" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "魔法师学徒" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "魔法师学徒" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -201476,7 +201182,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -201488,25 +201194,25 @@ msgstr "" "自从你成为一名魔法师的学徒已经有一段时间了,正在研制一种可以用来逃离大灾变的原型设备。不过,处女航出了点问题,你的老师把他的内脏传送到了体外。现在你要想办法靠自己生存。至少他忘了把笔记本带上……" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "魔法师秘密地下研究室" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "魔法假期" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "魔法假期" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -201517,7 +201223,7 @@ msgstr "" "自从你成为一名魔法师的学徒已经有一段时间了,你已经储蓄多年,梦想能在一座僻静的法师塔里中度假。你的自我发现之旅被突如其来的大灾变打断了。现在你得自己想办法活下去。" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -201528,584 +201234,635 @@ msgstr "" "自从你成为一名魔法师的学徒已经有一段时间了,你已经储蓄多年,梦想能在一座僻静的法师塔里中度假。你的自我发现之旅被突如其来的大灾变打断了。现在你得自己想办法活下去。" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "魔法师度假地" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" -msgstr[0] "" +msgstr[0] "魔法生物" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" -msgstr[0] "" +msgstr[0] "龙" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "蜥蜴人" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" -msgstr[0] "" +msgstr[0] "哥布林" + +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "兽人" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "魔法师秘密地下研究室" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "魔法师湖畔度假地" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "烧焦的树" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "这棵树看上去已经被完全烧焦了,但不知怎的,它仍然屹立不倒。" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "这像是一个巨大的茧,看起来像某种生物的形状。你不想去想那个生物在被这些蜘蛛活活吸干之前活了多久。" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "蛛网墙" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "这面墙似乎是由蛛网、木头碎片、碎石和某种深色树脂组合而成。" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "贫瘠土地" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "泥土地,看来土壤十分贫瘠。也可以用来进行建设项目。" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "魔法诱变剂混合机" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "祝福" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "给予你能量和提升你能力的祝福法术。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "光明之刃" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "这把光明之刃将斩断它所接触到的任何邪恶!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "心灵装甲" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "只要心灵够强大,邪恶袭来不害怕。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "神圣惩击" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "邪恶已经蔓延到世界各地。让你的力量成为在黑暗中闪耀的光芒!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "生命分流" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "将你的生命力量导入你的精神能量。消耗生命恢复魔力。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "心胜于痛" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "这是一种类似于体能训练的激烈仪式,可以帮助你将一些疼痛抛之脑后。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "召唤丧尸" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "一只从地底深处冒出来的丧尸会为你而战。如果你这个法术的等级够高的话,就能召唤出更多它的同类。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "召唤骷髅" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "一只幽灵似的骷髅,从大地深处被召唤出来为你战斗。如果你这个法术的等级够高的话,就能召唤出更多它的同类。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "召唤腐朽突袭兽" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "一只看起来饱经风霜的巨猫,从大地深处被召唤出来为你战斗。如果你这个法术的等级够高的话,就能召唤出更多它的同类。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "死灵凝视" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "你使用自身血液的力量将死灵能量注入到你的凝视之中,对你的凝视目标照成伤害。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "泛灵师符文" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "这仪式会创造出一块与泛灵师共鸣的小石块。你可以将符文作为催化剂用于制造其它物品。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "召唤鬼火" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "从富有生命力的沼泽水蒸气中召唤幽灵般的狐火,把你的敌人引向歧途。当你有更多的施法经验时,这个法术可以召唤出数只发光的鬼火。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "腐烂骨棒" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." -msgstr "该法术会点燃散落在空气中的灰尘,形成锥形火焰。 灼热的灰烬会附着在目标身上,随着时间的推移会造成额外的灼伤。" +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." +msgstr "此法术将你流动的鲜血与死者的血与骨相连,创造出一把渴望活人血肉的巨棒。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "治疗轻伤" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "治疗一点点目标所受的伤害。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "伤痛分流" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "平摊各个肢体受到的伤害。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "残暴之鞭" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "这个法术会从你的身体中伸出一个由锋利的骨头和渗出酸液组成的长而凶猛的鞭状触须,它有很长的攻击距离和很高的伤害。" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "扭曲强化" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "这个法术能以怪异的方式将你的躯体完全扭曲,并增强你的力量及感知。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "酸液喷射" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "当施法时,法师张开他的嘴,向前方扇形范围内的敌人喷射腐蚀性酸液,将它们溶解成粘液。想象一下他该怎么处理这些粘糊糊的玩意。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "肉身成袋" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "这个法术会在你的背部皮肤长出一个大袋子,可以让你存储物品。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "白骨之矛" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "这个法术可以召唤出一只邪恶的骨矛,拥有长长的手柄及尖锐的刀刃。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "生化术士符文" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "这仪式会创造出一块与生化术士共鸣的小石块。你可以将符文作为催化剂用于制造其它物品。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "麻痹毒刺" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "喷射出一根由筋腱与骨头纠缠而成的扭曲细针,它造成的螫刺会迟缓受害者。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "脏腑四射" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "在你四周喷射出辛辣刺鼻的血肉,不断生长并将你的猎物捕获进一片有毒的卷须之中。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "脏腑麻痹" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "由于脏腑四射导致的麻痹副作用。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "脏腑反噬" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "施法者也同时收到副作用影响。" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "凝结组织" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "将你对生化魔法的掌握转化至体内,增强你的肉体。与医疗能量不同,它通过防止失血,在伤口化脓之前消除伤口,代价是加速新陈代谢,容易饥饿及口渴。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "制造盐酸" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "通过魔法制造出可用的盐酸(又名氢氯酸)。" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "酸液箭" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "发射一支仅伤害敌人的酸液箭。" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "酸液弹" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "投掷一个酸液弹,在爆炸范围内散布腐蚀性的酸池。" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "酸液风暴" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "几道酸液球从你的指尖飞出,击中目标。" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "魔力结晶" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "将魔力凝聚成固体结晶型态。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "魔力疲乏" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "魔力结晶法术的副作用。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "黑暗视觉" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "给你在黑暗中视物的力量" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "你的眼睛闪着绿色的光芒。现在你的目光可以穿透最深沉的阴影。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "炽能冲击" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "你经常想发射光波,就像小时候看过的动画片里那样,现在你可以了!" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "魔法阅读灯" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "创造一盏神奇的魔法阅读灯。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "致盲闪光" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "爆发耀眼的光芒以致盲敌人,等级越高伤害越高。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "幽影攫抓" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "从地面伸出无数幽影手,减慢范围内的一切。等级越高,作用范围越大,作用时间越长。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "朦胧术" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "一个魔法光环扭曲了你身体周围的光线,增加了你在一个回合中所能闪避攻击的次数。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "保护光环" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "把你的整个身体包裹在一个神奇的光环里,保护你免受环境伤害。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "自我传送" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "将使用者传送到一个已经开启的易位门。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "防酸术" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "让施法者不受酸液侵蚀。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "高等防酸术" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "召唤……柠檬?" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "尽管一开始这法术看起来像是\"召唤恶魔(Demon)\",但实际上它似乎只是召唤一颗柠檬(Lemon)。草书文字果然是你最大的敌人。" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "法术模板" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "展示所有可用法术参数的模板。" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "正当你施放%s时,你的鼓膜开始胀痛!" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "调试用怪物生成法术" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "将级别设置为生成的怪物数量。" @@ -202117,245 +201874,218 @@ msgstr "将级别设置为生成的怪物数量。" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "调试用法术%s被施放。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "调试用耐力法术" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "使用一点耐力。" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "调试用法术 [ %s ] 没有效果。将会出现调试警告。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "调试用疲劳法术。" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "使用一点疲劳。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "调试用生命法术" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "使用一点生命值。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "调试用生化插件法术" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "使用一点生化能量。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "调试用效果法术" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "为目标增加一个效果。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "测试区域吸引" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "吸引所有物体。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "测试区域吸引(环境效果)" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "吸引环境效果区块。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "测试区域排斥" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "排斥所有物体。" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "调试用全身防护" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "没有东西能够伤害到你。" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "你无敌了,没人能伤到你了!" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "调试用羽落术" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "你像羽毛一样轻盈地掉落。" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "你吃下一根羽毛!" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "调试用冲刺" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "你可以瞬间向前传送。" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "调试推力无范围效果" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "推动所有类型的物体,范围效果为0。" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "调试推力爆破" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "推动所有类型的物体,范围效果为3,呈爆破模式。" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "黑龙之息" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "从你的口中喷出一道酸液。" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "藤蔓缠绕" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "这个法术会从地下长出藤蔓及树根,紧紧的抓住你的敌人,减慢他们的速度,并对他们造成少量的伤害。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "树根穿刺" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "这个法术使树根刺穿地面,以弧形刺入你的敌人,刺穿他们。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "硬木投掷" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "这个法术能召唤出一根硬木棍,从施法者的手中高速射出,刺伤敌人。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "自然之弓" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "这个法术可以召唤出一个魔法木弓,它可以发射无尽的箭,直到它持续时间结束。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "自然冥想" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "你与其它生命的连接允许你进入一种魔法冥想状态。在这种状态下你会消耗魔法,加速疲劳恢复。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "袋装猫咪" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "你就是那个和猫讲话的怪婆婆吗?" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "恐怖威熊" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -202364,208 +202094,208 @@ msgid "" msgstr "" "这个法术看上去已被严重污染,你十分确定这法术的名字应该是“恐怖威能”,但是你也十分确定施放它不能造成恐怖,因为它的施放步骤脏到难以辨认。不过,现在是大灾变,没时间搞清楚了!" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "真菌杀手" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "消灭一片区域中的真菌感染。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "德鲁伊符文" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "这仪式会创造出一块与德鲁伊共鸣的小石块。你可以将符文作为催化剂用于制造其它物品。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "净化之种" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "你召唤了大地的馈赠,可用于净水。若不及时使用很快就会变质。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "沃血重萌" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "通过献祭自身生命力,你可以让附近枯萎贫瘠的植被重获新生。剩下的就得靠时间来尽复生机了。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "舍己济人" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "将使用者自身部分生命力转化为医疗能量,施加于同伴。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "大地之拳" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "召唤岩石包裹手臂和拳头,使你可以在近战战斗中用它来击打敌人和保护自己。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "战争践踏" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "聚集魔力进入你的腿,重重跺脚,发出冲击波,把周围的敌人击倒在地。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "坚如磐石" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "你专注于你下方的坚岩,从它们的经受时间考验的坚韧中获取力量。你将魔力转换成耐力。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "碎片喷射" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "这法术扇形喷射出大量锋利的金属碎片,敌友不分的切碎它们路上的所有目标。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "穿刺箭" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "这法术召唤并发射出一根能穿透敌人的铁条,射穿那些胆敢阻挡你的蠢货。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "碎片风暴" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "向你四周的所有方向喷射剃刀般锋利的金属碎片。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "石之箭" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "你召唤并发射出一个高速飞行的石弹。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "移土术" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "你的精魂在身侧流转,而土地也随之变化。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "塑地者符文" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "这仪式会创造出一块与塑地者共鸣的小石块。你可以将符文作为催化剂用于制造其它物品。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "熔岩炸弹碎岩" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "这只是熔岩炸弹附属的法术。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "熔岩炸弹热浪" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "熔岩炸弹地形" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "熔岩炸弹" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " @@ -202574,62 +202304,82 @@ msgstr "" "你撕裂脚下的地面,发射出一个熔岩炸弹:一个被炽热的固体岩石包围的熔岩球。它撞击物体时会粉碎,朝四周射出大量碎岩石和熔岩。\n" " " -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "石肤术" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "将你全身包覆在活化岩石构成的装甲中,累赘但防护森严。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "石柱术" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "你用魔法将四周的泥土堆起,形成一根硬石柱。经验的累积将使施法更容易,并减少对周围区域的破坏。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "石柱冲击" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "带来的钝击效果,等级降低伤害和AOE范围。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "岩石封锁" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "你撕裂脚下的大地掀起一块中型巨石,投掷出去。巨石撞击时粉碎,四散飞溅岩石和碎片。" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "陨石术" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "你召唤一颗小型陨石从天而降,砸向敌人。" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "扭曲恢复" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "这个法术会超载加速你的心脏,以再生皮肤和肌肉。这个法术不应在危险来临时使用,否则可能会造成致命性后果。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "改良扭曲恢复" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" @@ -202637,37 +202387,37 @@ msgid "" msgstr "" "这个法术会超载加速你的心脏,以再生皮肤和肌肉。这个法术不应在危险来临时使用,否则可能会造成致命性后果。改良的制药方式降低了法术对身体的负担。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "召唤飞刃 I" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "召唤三把飞刀" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "你激活了你的戒指,三把飞刀随之产生,随时可以投掷!" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "魔力恢复" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "你正恢复魔力。" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "你开始恢复魔力!" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" @@ -202675,503 +202425,547 @@ msgstr "" "你的血管感觉像是着火了!\n" "你开始恢复魔力!" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "定点炎爆" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "在指定地点制造强烈热能,以伤害目标。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "火焰之指" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "召唤出一朵不会烧到你的小火苗,可以用来点燃其它物品。看起来你需要有点燃东西的想法它才会点火,因为你可以把它安全的存放在你的口袋里。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "冰刺" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "在目标上方制造冰刺,坠落造成伤害。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "火球术" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "投掷一颗豌豆大小的炽热球体,到达目标或遇到障碍物时发生剧烈烧灼。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "极寒喷射" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "向目标发射一股锥形的极寒空气。" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "燃烧之手" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "向一片较小的锥形区域喷射火焰。\"你肯定在其他游戏中见过这个。\"" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "寒霜喷射" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "向一片较小的锥形区域喷射冰寒。\"你肯定在其他游戏中见过这个。\"" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "寒冷之触" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "用严寒冻结被你触碰的目标。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "冰上滑行" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "将你的脚包裹在一层神奇的冰层中,让你更快地沿着光滑的表面滑行。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "白霜冲击" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "你发射出一颗发光的白色冰晶,在撞击之处绽放酷寒。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "冰盾" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "在你的手臂上制造一个魔法冰盾,你可以用它在近战中保护自己,并使用它来攻击。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "霜甲" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "用一层薄薄的魔法冰来保护你不受伤害。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "炽霜法师符文" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "这仪式会创造出一块与炽霜法师共鸣的小石块。你可以将符文作为催化剂用于制造其它物品。" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "火焰剑" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "这个咒语会点燃一把木剑,形成一把燃烧的剑刃,可以灼烧、挫伤和劈砍。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "火焰吐息" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "该法术会点燃散落在空气中的灰尘,形成锥形火焰。 灼热的灰烬会附着在目标身上,随着时间的推移会造成额外的灼伤。" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "火焰风暴" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "你召唤酷暑的力量来焚烧大地。 几道火球从你的指尖飞出,击中目标。" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "寒冰风暴" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "你召唤寒冬的力量来冻结大地。几颗冰晶从你的指尖飞出,击中目标。" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "召唤鳄鱼" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "召唤1只永久的鳄鱼。" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "蜥蜴人萨满召唤出一只鳄鱼!" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "古老的蜥蜴人法术" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "让一名蜥蜴人萨满施放法术。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "魔法飞弹" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "我在黑暗中发射魔法飞弹!" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "相位门" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "把你向一个随机的方向传送一小段短距离。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "重力井" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "在指定地点召唤一口重力井。对受影响地区的所有生物造成钝击伤害。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "奥术冲击" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" "聚焦过的魔法轰击,可以夷平一大片区域。\n" "“不需要魔法道具辅助聚焦”" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "奥术闪电" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "一束破坏性魔法闪电,只会伤害你的敌人。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "加速术" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "这法术在短时间内大幅度增加你的速度。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "奥术光束" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "一束聚焦过的破坏性魔法光束,会伤害到它路径上的所有敌人。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "逃脱术" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "将你向随机方向传送一段中等的距离,可以在危险情况下帮你逃出敌人包围。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "魔术师符文" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "这仪式会创造出一块与魔术师共鸣的小石块。你可以将符文作为催化剂用于制造其它物品。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "猫之优雅" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "你会变得更优雅、更敏捷、更协调。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "鹰眼" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "你获得鹰的感知。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "巨魔之力" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "你获得了巨魔的力量。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "狐之狡黠" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "你变得像狐狸一样狡猾。" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "将魔力凝聚成固体结晶型态。你生理上的变化使这个法术效果更强大,且更容易施放。" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "追踪箭" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "从你的指尖发射多只魔法火焰箭,随机命中在射程中的目标。" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "尖啸声" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "吸血" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "从一个敌人身上吸血。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "唤熊陷阱" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "一个能够召唤出熊的陷阱!没想到吧?" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "\"这是个陷阱!\"" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "火箭飞拳" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "将拳头从手臂上发射出去。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "毒气攻击" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "在自身四周散发出有毒气体。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "恶魔火球" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "这只是一个怪物用法术。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "召唤恶魔幼蛛" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "召唤4个永久的恶魔蜘蛛。" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." -msgstr "" +msgstr "从玩家燃烧的双手中分离出来,因为我不想再意外地给恶魔蜘蛛加buff了。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" -msgstr "" +msgstr "魔眼怪凝视" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" -msgstr "" +msgstr "蟹化射线,出击!(魔眼怪平衡版的“腐蚀凝视”)" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" -msgstr "" +msgstr "软泥酸性喷洒" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" -msgstr "" +msgstr "某人的布丁配方出了一点*大*问题……(怪物法术)" + +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "它朝你的脆弱脑袋施放了魔法飞弹!(怪物法术)" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "怪物伤痛分流" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "非常适合用来平摊吐息攻击的伤害。" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "震颤电击" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "从你的指尖发射出几道短距离扇形电流。" @@ -203179,20 +202973,20 @@ msgstr "从你的指尖发射出几道短距离扇形电流。" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "噼里啪啦的闪电声" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "闪电束" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -203201,74 +202995,74 @@ msgid "" msgstr "" "对于许多风暴塑造者来说,这个标志性法术正如你所期待的那样:你可以从指尖射出闪电。不过这种闪电比其他闪电更有方向性,并以直线穿过大多数非固体目标。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "风击术" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "伸出手掌,喷射强风,冲击你面前的一切。" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "嗖的一声" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "风行术" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "当你移动的时候,一股神奇的风推动着你前进,让你自如行动并提高速度。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "风暴之锤" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "一个充满闪电的魔幻战锤,用闪电击打你的敌人。当然,也可以把东西砸成碎片!" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "风暴塑造者符文" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "这仪式会创造出一块与风暴塑造者共鸣的小石块。你可以将符文作为催化剂用于制造其它物品。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "闪电冲击" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -203276,21 +203070,21 @@ msgid "" msgstr "你向目标发射一个小闪电球。电流扩散很快,所以不会造成太大的伤害,但你可以连续发射几个。" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "你召唤天空的力量来打击大地。几道闪电从你的指尖射出,击中目标。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "电离术" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -203299,105 +203093,129 @@ msgid "" msgstr "" "通过操控空气中的电荷,你可以在大片区域内召唤出一道闪电。虽然它的破坏力与自然产生的闪电相去甚远,但它所产生的强光和雷击会让你的敌人战战兢兢。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "电离术闪光" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "为电离术添加闪光弹效果。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "雾墙术" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "召唤出一堵厚厚的雾墙。虽然突然出现的气压会击倒任何被困在里面的敌人,但这个魔法无法造成其它伤害。" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "水凝聚" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "从空气中提取水分并将其凝聚成可用的水源。适用于缺乏可靠水源,但拥有净水方法的情况下。" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "净水凝聚" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "从空气中提取水分并凝聚成完全净化的水。比单纯凝聚普通水需要更多的技巧,但这是意料之中的事情。" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "隐身" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "一道魔法场隐藏了你的外观。常被称作隐身,但是没有使用不明觉厉的科学原理。" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "你的身影逐渐消失,在外部世界看来就像不复存在了!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "魔法灯" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "创造一盏神奇的魔法灯。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "魔能转换术" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "你发现了一种将你的魔力转换成生化能量的方法。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "科技法师符文" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "这仪式会创造出一块与科技法师共鸣的小石块。你可以将符文作为催化剂用于制造其它物品。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "电击术" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "这个法术产生一个非常短的闪电来电击你的敌人。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "次级隧穿术" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -203406,16 +203224,16 @@ msgid "" msgstr "" "这个法术可以操纵量子什么的,让你穿越一小段空间,甚至是物质。然而不幸的是,某种不确定性之类的东西使你无法完全控制自己以什么方式出现在哪。你在传送后会头晕脑胀,需要一段时间才能恢复。" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "突触刺激" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -203423,74 +203241,74 @@ msgid "" "responsibly!" msgstr "这个法术会刺激你大脑中的神经突触,使其速度超过正常的处理速度,大大增强你的思维处理能力,包括增强你的反应能力、速度和智力能力。请谨慎使用。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "激光术" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "你集中并对目标释放一束聚焦的光子,又名激光。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "魔剑苏生" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "此法术将召唤“活着”的魔法飞剑,切割敌人,切碎为止。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "召唤镜像" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "这个法术通过操纵光线形成一个几乎不可触及的影子生物,简而言之就是一个魔法全息投影。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "召唤飘浮碟" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "召唤一个能够减轻你的负担的飘浮碟。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "过载烧伤" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "施放过载术造成的副作用。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "喷嚏激光术" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -203498,356 +203316,356 @@ msgid "" msgstr "你将体内的生化电池过载,从你的脸上射出半定向的激光光束。这个法术的发明者一定有某种诡异的幽默感。" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "噗滋滋滋滋!" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "你将体内的生化能量过载并导入你的灵脉中,并将其导引至脸部射出。" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "你因为引导了大量魔力而精疲力竭。" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "引导大量魔力让你感到疲倦。" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "魔力疲乏带来的负荷已消逝不见。" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "你被风的力量所支撑和推动。" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "你被风的力量所支撑和推动。" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "你背后的风减弱了。" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "你可以在黑暗中视物。" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "你的视力开始适应黑暗。" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "黑暗失去了它的形状。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "幽影之拥" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "幽灵般的手臂正试图把你抱在原地!" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "虚幻的手臂从地上射出,抓住你!" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "幽灵般的手臂消失了。" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "没有谁能看到你。" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "你的身影渐渐消失了。" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "你可以再次看到你的手了。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "赐福" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "你充满了能量,它能改善你所做的每一件事。" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "你充满了能量,这会改善你所做的每一件事!" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "你的能量消失了。" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "你的身体随着翻卷的异形肌肉波荡,四肢被拉伸,眼中闪烁着幽幽的绿芒。" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "你的身体很快恢复正常。" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "树根和藤蔓缠绕着你的敌人。" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "树根和藤蔓缠绕你的敌人,使他们减速!" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "树根和藤蔓枯萎死亡。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "根须穿刺" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "从地上拔出根来刺穿你的敌人!" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "树根枯萎死亡。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "酸性烧伤" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "被酸液灼伤。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "加速" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "你的速度大大提高了。" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "你的速度被提升到超人的水平!" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "你速度的回到正常水平。" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "你的思维变得更加敏捷了。" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "你的思维加速了。" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "你的思维恢复到了正常状态。" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "你拥有巨魔的力量!" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "你感到自己非常强壮!" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "你的力量减弱了。" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "你拥有鹰的感知!" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "你能发现更多细节!" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "你的视力恢复正常。" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "你像猫一样灵活!" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "你的反应能力提高了!" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "你的反应恢复正常。" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "你像狐狸一样狡猾!" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "你的智力提高了!" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "你的智力恢复正常。" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "开发者之力刺痛着你的皮肤!" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "你的皮肤不再刺痛,你的生活再次变得空虚又毫无意义。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "调试用羽落术" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "你像羽毛一样轻盈地掉落。" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "你感觉身体轻如鸿毛。" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "你被引力狠狠拉向了地面。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "惊恐" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "受惊" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "十分惊恐" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "你的膝盖颤抖,你的心跳加快,你的胃中一阵作呕。" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "你感到非常害怕!" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "你的恐惧消散了。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "脏腑过劳" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "你因为将自身脏腑过度膨胀以将其覆盖这么大一片范围而感到恶心难受。" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "对流血和咬伤免疫,增加耐力重生速度,饥渴增长速度。" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "你感到血肉中的紧绷感消退了。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "生化毒素" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "你感觉到由于生化魔法导致的迟钝及虚弱。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "枭熊胃石" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -203856,267 +203674,169 @@ msgid "" msgstr "" "这个形状奇特的岩石曾经是枭熊复杂的消化系统的一部分,在枭熊的喉咙和胃之间形成了一种联系。它有可能在炼金术中起到类似的作用,帮助将两个完全不同的部分结合在一起。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "石壳" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "枭熊蛋的碎片。幸运的是,它可能仍然包含一些以前的力量,即便没有,它也仍旧锋利。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "符文铜手镯" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "这个手镯上刻着符文。当你看着它的时候,你会感觉到一种神秘的微弱气息。它将有助于将魔力灌注到物质中。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "符文银手镯" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "铜头环" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "镶有铜边的木质头环。在戴上它时按摩太阳穴会使你感到非常平静。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "基础药剂" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "烈性酒精之中注入了魔力并浓缩成液体,能够用来使法术稳定为液体形式。如果你愿意的话,你可以直接喝它。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "强效基础药剂" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "充满魔法能量的纯净乙醇。聚集在其中的魔力使药剂表面不断地波动起伏。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "大肾上腺" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "位于肾脏上方的负责分泌肾上腺素、皮质醇和醛固酮的器官。这块肾上腺非常巨大,不知道是自然存在的还是突变产生的。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "发光粉尘" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "一缕鬼火遗留下来的物理形态粉末,它似乎还在散发着神奇的光芒。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "魔力阅读灯" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "这款极其昂贵的小灯由发光粉末和魔法药水提供动力,其亮度仅够阅读,但是至少可以持续发光十年。关闭盖子可以隐藏光线。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "魔力阅读灯 (关)" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "这款极其昂贵的小灯由发光粉末和魔法药水提供动力,其亮度仅够阅读,但是至少可以持续发光十年。已经被盖子盖上了,打开盖子可以散发光芒。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "鲨蜥兽骨板" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "鲨蜥兽头后面的巨大骨板,一直以来都是用来制造护甲和盾牌的珍贵材料。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "鲨蜥兽珍宝" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "当一只鲨蜥兽钻入地球时,它的鳃会收集微量的贵金属和宝石,这些金属和宝石慢慢聚集成有光泽的珍宝,这些宝石因其美丽和力量而倍受珍视。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "龙之精粹" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "浓缩提纯后的龙之魔力精华。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "蚊蝠喙" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "一根从蚊蝠尸体上收获所得的长喙,可以勉强当成武器使用。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "恶魔甲壳块" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "一块恶魔蜘蛛的外骨骼。它不仅轻巧,而且很耐用,大概还有一些魔法属性。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "恶魔甲壳板" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "一大块恶魔蜘蛛的外骨骼,煞费苦心地从一只成年恶魔蜘蛛的尸体上切下来。这个尺寸的甲壳板可以用来制造载具装甲板。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "恶魔蜘蛛尖牙" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "恶魔蜘蛛的毒牙。它似乎还在滴着毒液,也许你能把它用在些炼金术配方中吧?" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "源动之焰" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." -msgstr "" -"源动之焰是经过魔法处理的煤或木炭。它能像镁一样剧烈燃烧,而且燃烧时间要长得多。由于它的广泛用途,成为为数不多的至今仍在大量被生产的魔法材料之一。" +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." +msgstr "源动之焰是经过魔法处理的煤或木炭。它能像镁一样剧烈燃烧,而且燃烧时间要长得多。这使得它成为许多法师非常实用的材料。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "魔力之尘" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "粉末状的魔力结晶。它所含的奥术能量不断脉动着发出微光。" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "龙血" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "注魔之血" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "山铜箭" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "液态汞" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "神弓伊奇巴尔" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -204124,396 +203844,372 @@ msgid "" msgstr "伊奇巴尔,传说中北欧众神之父奥丁使用的神弓。据说每次拉弦能够射出 10 只箭。这件上面覆盖满了金银饰品,以及一只装饰华丽的渡鸦。" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "由山铜制成的箭,正发出神秘的光芒。射击后有很大概率可以保持完好,但是只能从神弓伊奇巴尔上射出。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "恶魔甲壳护臂" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "一对由经过精心清理并裁剪过的恶魔蜘蛛躯壳制成的护臂,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "恶魔甲壳护甲" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "一副由经过精心清理并裁剪过的恶魔蜘蛛躯壳制成的全身护甲,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "恶魔甲壳头盔" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "一顶由恶魔蜘蛛躯壳制成制成的头盔,能覆盖你的整个头部,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "恶魔甲壳护手" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "一对由恶魔蜘蛛躯壳制成的护手,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "恶魔甲壳靴" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "一对由恶魔蜘蛛躯壳制成的长靴,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "恶魔甲壳犬具" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "一套自制的犬具,上面的恶魔甲壳片和薄薄的网状织物贴合在一起,保护狗的侧面和颈部。你可以将这套犬具穿在一匹友好的狗身上。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "恶魔甲壳马铠" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" "一套自制的马铠,包含保护马颈的鸡颈、保护马胸的当胸和保护马臀的搭后,上面的恶魔甲壳片和薄薄的网状织物贴合在一起。你可以将这套马铠穿在一匹友好的马身上。" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "科技魔法的最新进展使这个生化插件能够将血液中的固有能量转化成生化能量。血液越强,效率越高。可以容纳 100 ml 血液。" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "魔力结晶义鼻" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" -"一个使用魔力结晶和其他稳定金属制作而成的大型宝石。配有一个经过特别设计不会干扰你魔力脉络的供能装置(被安装在头骨之中)。警告:仅供科技法师使用。施放此法术视为你同意免除弗里肯激光公司及其子公司的所有责任。" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "黑龙鳞" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "一块黑龙的鳞片。它仍然保持着它的魔法属性和酸液防护。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "生黑龙皮" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "一卷仔细卷好的黑龙皮。这块皮的尺寸足够用来做载具装甲,上面的鳞片也多到能够做鳞甲。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "鞣制中的黑龙皮" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "你煞费苦心地展开鞣制中的黑龙皮,把它抖干净。" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "黑龙皮的鞣制尚未完成。" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "一张经过处理的黑龙皮,正在进行必要的化学变化以变得能够使用。当它鞣制完成后你就可以激活它以展开并使用它。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "黑龙皮" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "黑龙的优质龙皮,坚固、耐酸,具有很多鳞片,用它制造的盔甲如钢铁般坚固,重量却只有钢的一半。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "黑龙鳞靴" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "用黑龙鳞制成的靴子,在拥有极高的防御力的同时令人惊异的轻便。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "黑龙皮靴" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "用黑龙皮制成的靴子,在拥有极高的防御力的同时令人惊异的轻便。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "黑龙鳞盔" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "用黑龙鳞与黑龙皮制成的头盔,全覆面设计。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "黑龙皮盔" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "黑龙皮制成的头盔,提供出色的头部防护,又不会遮挡面部。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "黑龙鳞甲" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "全套黑龙鳞甲,部件覆盖躯干、腿、手臂,轻便且灵活。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "黑龙皮甲" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "全套黑龙皮甲,部件覆盖躯干、腿、手臂,轻便且灵活。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "黑龙鳞护手" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "一对耐用护手,由黑龙鳞制成,用于双手的防护。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "黑龙皮手套" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "黑龙鳞靴(XL)" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "用黑龙鳞制成的特大码的靴子,经过精心剪裁能容下各种变异肢体,在拥有极高的防御力的同时令人惊异的轻便。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "黑龙皮靴(XL)" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "用黑龙皮制成的特大码的靴子,经过精心剪裁能容下各种变异肢体,在拥有极高的防御力的同时令人惊异的轻便。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "黑龙鳞护手(XL)" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "一对特大码的耐用护手,由黑龙鳞制成,用于双手或其他变异肢体的防护。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "黑龙皮手套(XL)" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "一对特大码的耐用护手,由黑龙皮制成,用于双手或其他变异肢体的防护。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "黑龙鳞盔(XL)" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "用黑龙鳞与黑龙皮制成的巨型头盔,全覆面设计,能容下各种变异肢体。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "黑龙皮盔(XL)" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "黑龙皮制成的巨型头盔,提供出色的头部防护,又不会遮挡面部,能容下各种变异肢体。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "黑龙鳞甲(XL)" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "特大码的全套黑龙鳞甲,部件覆盖躯干、腿、手臂,能容下各种变异肢体。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "黑龙皮甲(XL)" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "特大码的全套黑龙皮甲,部件覆盖躯干、腿、手臂,能容下各种变异肢体。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "度假手册" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "你在地图上标记了一些地点。" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -204522,290 +204218,257 @@ msgid "" msgstr "" "这是一本精美的小册子,鼓励学生在湖畔度假地或偏远的小屋里度假。这本小册子有着岛屿上的一座塔和林中一座偏远小屋的华丽照片。里面附带着一张本地区的地图。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "巢穴地图" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "这是一张破旧的地图。它有一些奇形怪状的野兽的照片,装饰着精心绘制的地图标记。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "旧照片" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "一张快乐的老巫师的照片,他似乎正在地下室里和一个衣架跳舞。背景里有一堆手提箱。" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "次等魔力药剂" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "你不能买到这个,所以你需要留着这些用来对付最后一个Boss!事实上,甚至不要在那里使用它们!" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "魔力药剂" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "高等魔力药剂" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "猫之优雅药剂" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "这是猫之优雅药剂,它会在10分钟内提高你的敏捷度。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "巨魔之力药剂" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "这是巨魔之力药剂,它会在10分钟内提高你的力量。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "鹰眼药剂" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "这是鹰眼药水,它会在10分钟内提高你的感知。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "狐之狡黠药剂" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "这是狐之狡黠药剂,它会在10分钟内提高你的智力。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "丧尸巫毒娃娃" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "一只特别逼真的丧尸人偶,有着逼真的骨头和器官。死灵法术暂时阻止了它的腐坏,但是不会长久。用附带的针刺它会让它为你服务。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "骨片巫毒娃娃" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "一只特别逼真的丧尸人偶,覆盖着骨片,里面有逼真的器官。死灵法术暂时阻止了它的腐坏,但是不会长久。用附带的针刺它会让它为你服务。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "美洲狮巫毒娃娃" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "一只特别逼真的不死美洲狮人偶,有着逼真的皮毛、骨头和器官。死灵法术暂时阻止了它的腐坏,但是不会长久。用附带的针刺它会让它为你服务。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "扭曲恢复药剂" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "这瓶闻起来就恶心的液体通过将心跳加速至危险的水平来模拟不死生物的恢复能力。在危险或濒死状态下使用可能会致命。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "改良扭曲恢复药剂" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" -"这瓶闻起来就恶心的液体通过将心跳加速至危险的水平来模拟不死生物的恢复能力。在危险或濒死状态下使用可能会致命。改进的浸提技术减小了药剂对身体的负担。" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "生化术士符文" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像撕裂骨肉的符号,对于将魔力导入制品的生化术士来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "科技法师符文" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像齿轮和发条装置的符号,对于将魔力导入制品的科技法师来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "魔术师符文" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像水晶与魔力球的符号,对于将魔力导入制品的魔术师来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "塑地者符文" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像钢铁与岩石的符号,对于将魔力导入制品的塑地者来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "炽霜法师符文" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像寒冰与烈火的符号,对于将魔力导入制品的炽霜法师来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "风暴塑造者符文" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像闪电与雷雨云的符号,对于将魔力导入制品的风暴塑造者来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "德鲁伊符文" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像自然与绿树的符号,对于将魔力导入制品的德鲁伊来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "泛灵师符文" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像召唤师的符号,对于将魔力导入制品的泛灵师来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "炼金术士符文" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "这块注魔的小石块上面有一个像炼金术和魔药的符号。虽然它在制造中的用处十分广泛,但是因为缺少与任何魔法流派的共鸣,它无法用于制造高级的物品。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "生化术士之矛" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "一根造型奇诡的骨制矛头,固定在一根短粗的木棍之上。在矛头的底部镶有一个生化术士符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "科技法师之杖" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "这根法杖由一根撬棍在两端加上月牙形扳手和锤子构成,方便携带。锤头上镶嵌着一个科技法师符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "魔术师之杖" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "这根雕刻了符文的长棍上附有两只钢化玻璃罐,注入了魔力以提高耐久度,用于吸收魔力。棍尖上镶嵌有两个魔术师符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "炽霜法师焰形剑" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "带有形似火焰的起伏刀刃的剑。剑柄头上镶嵌着一个炽霜法师符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "风暴塑造者之斧" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "一把镶银边的铸造铜斧,装在一根木柄上面。斧柄洞里镶嵌着一个风暴塑造者符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "泛灵师献祭短刀" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "一把仪式用钢刀,泛灵师用它来放血进行召唤。剑格上面镶嵌着一个泛灵师符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "科技法师工具腰带" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "一条自制的皮革工具带,能够瞬间变出你所想要的任何工具。激活它来收拔武器。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "德鲁伊复合弓" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "一把采用多种材料复合制成以增加储能效率的弓。弓背两端镶嵌着两个德鲁伊符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "塑地者拳套" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "一个石制手套,上面围绕手的四周刻着符文,保护手的同时增强打击力量。手套的掌心镶嵌着塑地者符文。" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "枭熊蛋" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -204815,34 +204478,34 @@ msgid "" msgstr "" "这是个由枭熊产下的蛋,在你触摸到它之前,似乎与一块石头没有区别,你可以从里面感受到潜在生命能量的温暖光辉。很难相信一只枭熊能从这么小的东西中生长得如此之快。也许你可以小心地把它打开,以得到里面的黄金般的液体。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "枭熊蛋蛋黄" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "枭熊蛋内部的液体。很好吃。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "毛团" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "一大团恶心的动物唾沫和舔掉的毛的混合物。不要吞下它。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "龙肉" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" @@ -204851,3877 +204514,4423 @@ msgstr "" "龙肉,对烹饪的反应与其他肉截然不同,显然还残留着一些魔法性质。\n" "“天上龙肉,地下驴肉。咦?”" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "尖叫蘑菇" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "从尖叫蘑菇怪身上获得的蘑菇。可以用来炼制药剂。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "净化肉" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "和大灾变前实验室培育的牛肉没有区别。本来它应该是非常美味的,但不知为何只是勉强可以食用而已。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "未净肉" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "虽然不像之前那样被感染,尝起来也和真肉一样。但你可不想用它来做东西给你的同伴吃,尽管这样做了他们也一时半会发现不出有什么区别。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "粘土傀儡(损坏)" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "一个损坏的粘土傀儡,看起来像一件后现代艺术品。打碎可以获得粘土。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "塑料傀儡(损坏)" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "一个损坏的塑料傀儡,就像一个巨大的人偶被一只同样巨大的小狗咬碎了。打碎可以获得塑料。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "石傀儡(损坏)" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "一个损坏的石傀儡,看起来像一件后现代艺术品。打碎可以获得石头。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "铁傀儡(损坏)" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "一个损坏的铁傀儡,看起来像一件后现代艺术品。打碎可以获得铁。" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "力量腰带 +2" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "迅捷腰带" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" -msgstr[0] "次等法师法杖" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" +msgstr[0] "生树脂魔像(损坏)" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." -msgstr "一根精心制造的长杖,采用经过附魔的木头和秘银制成。当你使用它施放法术时它会在魔法的作用下微微发光,但它不是一个耐用的近战武器。" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "一具破损的生树脂魔像,正慢慢变成一滩液体。你可以从中回收一些少量的材料,但考虑到它现在已经是液态的,这会很困难。" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" -msgstr[0] "魔法师帽" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" +msgstr[0] "半固化树脂魔像(损坏)" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." -msgstr "一顶镶有许多星星的蓝色尖顶帽。戴着它可以加快你的魔力回复。" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" -msgstr[0] "火球之锤" - -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" -msgstr "小心使用!易燃!爆炸!" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" -msgstr[0] "魔法腰带" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "迅捷腰带" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "一具破损的树脂魔像,看起来有点像一大堆太妃糖。你可以从中回收一些材料,但肯定会有一些浪费。" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" -msgstr[0] "索尔的神奇腰带" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" +msgstr[0] "固化树脂魔像(损坏)" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." -msgstr "传说中雷神索尔的神奇腰带,至少看起来是这样的。它能使佩戴者的基础力量加倍。" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." +msgstr "一具破损的树脂魔像,现在已经变成了一堆瓦砾。如果你花些时间去处理,还是可以从中回收一些材料。" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "次级口袋腰带" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "魔石护手" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." -msgstr "一条很适合你腰部的宽腰带,上面覆盖着许多小口袋,能装下超出它们体积的物品,而且口袋中的物品重量大大减少。" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "一种柔韧的石头状魔法物质,用于保护和攻击。" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "高级口袋腰带" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" +msgstr[0] "火焰之指" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" -msgstr[0] "武器腰带" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "你将火焰调暗。" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." -msgstr "一条很适合你腰部的宽腰带,你可以在眨眼之间将任何武器收入其中,收入的物品似乎被存放在其他空间之中。" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "科技法师工具腰带" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "这是一朵你可以握在手中的小火苗。只要想着火焰,你就可以用它点燃其它物品。" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." -msgstr "一条自制的皮革工具带,能够瞬间变出你所想要的任何工具。激活它来收拔武器。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" +msgstr[0] "火焰之指(暗淡)" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" -msgstr[0] "铁鞭腰带" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "你点亮了火焰。" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" -msgstr "你抓起腰带,它瞬间在你手中舒展开,变成一根灵活的铁鞭子!" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "这是一朵你可以握在手中的小火苗。只要想着火焰,你就可以用它点燃其它物品,尽管现在它的火焰已经被调暗。" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." -msgstr "一根看上去似由金属编织而成但又十分灵活的皮带。你可以激活它,把它变成鞭子,然后切碎你的敌人。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "魔法灯" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" -msgstr[0] "铁鞭" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "你将你的魔法调暗,直到它完全熄灭。" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." -msgstr "你把鞭子在手中缠绕,使其在瞬间卷曲回皮带形状。" +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "一盏魔法灯,能照亮一小块区域。" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." -msgstr "一条编织而成、柔软灵活的钢铁长鞭,末端变成锋利的刀刃。能够轻易切割任何向你袭来的物品。使用它能够将其变回皮带。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" +msgstr[0] "魔法灯(暗淡)" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" -msgstr[0] "七里靴" +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "你将魔法恢复到全亮状态。" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." -msgstr "一双十分坚固却又非常舒适合身的旧钢头皮靴,看上去已经用了很久,而且能继续用上更久。穿上它让你移动变得轻松了不少。" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "一种你知道可以被调亮成强大光芒的魔法光环。" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "加速靴" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "魔法阅读灯" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" -msgstr[0] "逃脱之靴" +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." +msgstr "一盏小型魔法灯,能让你阅读书籍。" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." -msgstr "一双十分坚固却又非常舒适合身的旧钢头皮靴,这双靴子能够每日激活一次,将你带出任何糟糕的对局,会让你朝一个随机方向传送出一大段距离。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" +msgstr[0] "魔法阅读灯(暗淡)" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" -msgstr[0] "立地靴" +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "一种魔法光环,你知道它可以被调亮用作阅读光源。" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." -msgstr "一双十分坚固却又非常舒适合身的旧皮靴,上面雕刻着些似乎充满了橡胶的小型符文。穿上它能让你免疫电击。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "魔法大冰盾" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" -msgstr[0] "钢制护腕" +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "一个轻巧但坚硬的盾牌,完全是用魔法冰组成的。" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." -msgstr "一对源自中世纪的手臂防护的完整集合。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "光滑冰层" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "钢制护腕" +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." +msgstr "你的脚上有一层魔法形成的光滑冰层。虽然在平坦的地面上速度相当快,但在崎岖的地形上很难移动。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" -msgstr[0] "次级防御护腕" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" +msgstr[0] "风暴之锤" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." -msgstr "一个轻巧而坚固的钢制护腕,顶部刻着华丽的盾牌图案,并用白银突出其错综复杂的设计。它能散发出一道微弱光环保护你全身,减少你所受到的伤害。" +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" +msgstr "一个充满闪电的魔法战锤,用闪电击打你的敌人。当然,也可以把东西砸成碎片!" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" -msgstr[0] "高级防御护腕" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" +msgstr[0] "风暴之拳" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." -msgstr "一个轻巧而坚固的钢制护腕,顶部刻着华丽的盾牌图案,并用黄金突出其错综复杂的设计。它能散发出一道强力光环保护你全身,减少你所受到的伤害。" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." +msgstr "召唤闪电包裹手臂和拳头,使你可以在近战战斗中用它来击打敌人和保护自己。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" -msgstr[0] "次级闪电护腕" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "残暴之鞭" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." -msgstr "" -"一个轻巧而坚固的钢制护腕,顶部刻着华丽的闪电图案,并用白银突出其错综复杂的设计。它能散发出一道微弱光环保护你全身,减少你所受到的电击伤害,并且能够每日施放三次震颤电击法术。" +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." +msgstr "一条长而扭曲的触须,上面覆盖着锋利的骨质刀片和尖刺状突起。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" -msgstr[0] "高级闪电护腕" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "肉身成袋" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." -msgstr "" -"一个轻巧而坚固的钢制护腕,顶部刻着华丽的闪电图案,并用黄金突出其错综复杂的设计。它能散发出一道强力光环保护你全身,减少你所受到的电击伤害,并且能够每日施放三次闪电束法术。" +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." +msgstr "你的背上长出了一个坚硬的肉袋子,里面有细小的触手,可以抓住你放在里面的任何东西。它们不断改变和调整自己,以减少累赘。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" -msgstr[0] "\"静风\"消音器" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "恶毒骨矛" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." -msgstr "除了消音材料之外,这个消音器还含有一个小范围静音法术,能够把枪声降低到对听力安全的水平。" +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." +msgstr "这是一柄邪恶的长矛,完全是由骨头组成的。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" -msgstr[0] "魔法激光瞄具(导轨)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" +msgstr[0] "木弓" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." -msgstr "" -"小型可见激光发射器,使用魔力水晶发射激光,可安装在枪械上,增加命中率与瞄准速度。完全没有缺点——除了增加一点点重量。你可以旋转导轨将其变成管下瞄具。" +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." +msgstr "一把魔法生成的华丽反曲弓。由结实而有弹性的木料制成,拉开弓弦就会自动生成一只箭。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" -msgstr[0] "魔法激光瞄具(管下)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" +msgstr[0] "净化之种" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." -msgstr "" -"小型可见激光发射器,使用魔力水晶发射激光,可安装在枪械上,增加命中率与瞄准速度。完全没有缺点——除了增加一点点重量。你可以旋转导轨将其变成导轨瞄具。" +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "挤压净化之种" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "魔法蓝点瞄准镜" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "你挤压掌中的种子,它们开始变成粉末。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." -msgstr "在你的枪上安装一个使用魔力结晶发光的蓝点瞄具以取代机械瞄准具。提高命中率,增加重量。" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "这个魔法种子被挤压后会释放出净化粉末,能够用于净化一加仑的水。(一加仑约为3.785升)" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" -msgstr[0] "魔法面具" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" +msgstr[0] "微光粉末" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." -msgstr "一个普通的魔法面具。" +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "这些细粉发出逐渐增强的光。" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" -msgstr[0] "消失面具" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "朦胧光环" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." -msgstr "一个除了眼孔和口孔之外没有任何面部特征的面具,激活后,它会使其他生物在一段时间内忽略你的存在。" - -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" -msgstr[0] "完美视觉面具" +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." +msgstr "一个覆盖全身、看不见的魔法光环扭曲了你身体周围的光。让你在一个回合中获得两次额外闪避攻击的能力。" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." -msgstr "一个有着明显的蒸汽朋克风的半面具,覆盖在眼部附近,外部有着体积巨大的镜头,能够纠正并大大提高佩戴者的视力。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "防酸光环" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "长棍 +1" +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." +msgstr "一个覆盖全身的肉眼无法看见的防酸光环。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" -msgstr[0] "长棍 +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "高等防酸光环" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" -msgstr[0] "武术长棍 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "寒霜盔甲" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "武术长棍 +2" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "一层包覆全身的、薄薄的魔法冰层。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" -msgstr[0] "镔铁棍 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "石化皮肤" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "镔铁棍 +2" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "一层覆盖全身的薄薄的不断移动的岩石,仿佛是有生命的液体一般。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" -msgstr[0] "长剑 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "过载烧伤" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "长剑 +2" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "哎哟,这可是太聪明了!也许它很快就会消退?" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" -msgstr[0] "大钢锤 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "保护光环" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "大钢锤 +2" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "一个覆盖全身的肉眼无法看见的环境防护光环。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "这把木剑燃烧起来了!看起来握着它似乎还算安全,但它很快就会烧光。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" +msgstr[0] "腐烂骨棒" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "战锤 +1" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "一根由骨头制成的会跳动的棍子,沾满了不断蠕动的血衣,渴望吸收活物。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" -msgstr[0] "战锤 +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" +msgstr[0] "风行光环" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "棒球棍 +1" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "背后的风帮助你轻松旅行。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "棒球棍 +2" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "采自龙身上的血。它散发着热量,呈现出火焰般变化的纹理。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "铝质棒球棍 +1" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "充满了魔法能量的血液。它发出微弱的蓝光。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" -msgstr[0] "铝质棒球棍 +2" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "魔力结晶" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "钢矛 +1" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "一些结晶化的魔力。可以注入魔力进行充能,但无法再抽取出来。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" -msgstr[0] "钢矛 +2" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" +msgstr[0] "小型魔力水晶" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "长枪 +1" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "这是一个小型魔力水晶,专门被设计用来存储魔杖所需的能量。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" -msgstr[0] "长枪 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" +msgstr[0] "生枭熊毛皮" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "战戟 +1" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "一块从枭熊上仔细地削下来的生皮毛。还有连着毛皮。你可以加工它来存储并进一步的鞣制,或者直接吃掉它,如果你的肚子里真的是一根毛都没有了的话。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" -msgstr[0] "战戟 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" +msgstr[0] "硬化枭熊毛皮" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "长柄刀 +1" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "一张卷起来的硬化枭熊毛皮。相比生皮去除了多余的皮毛和残留肌肉脂肪组织,并且进行了防腐处理。依旧需要鞣制和处理才能变成可使用的毛皮。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" -msgstr[0] "长柄刀 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" +msgstr[0] "枭熊毛皮" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "薙刀 +1" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "这是由枭熊做成的毛皮,可以用来制造非常保暖的衣物。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" -msgstr[0] "薙刀 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" +msgstr[0] "龙骨" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "钉头槌 +1" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "一块龙骨!即使单独使用,这些骨头也是制作武器的极佳材料。然而,有些直觉告诉你,这些骨头隐藏的秘密远不止于此。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" -msgstr[0] "钉头槌 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" +msgstr[0] "龙骨碎片" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "晨星锤 +1" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "一小块龙骨碎片,形状几乎像一片瓷器碎片。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" -msgstr[0] "晨星锤 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" +msgstr[0] "鲨蜥兽骨板" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "剑 +1" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "鲨蜥兽头后面的巨大骨板,一直以来都是用来制造护甲和盾牌的珍贵材料。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" -msgstr[0] "剑 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" +msgstr[0] "恶魔甲壳块" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "弯刀 +1" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "一块恶魔蜘蛛的外骨骼。它不仅轻巧,而且很耐用,大概还有一些魔法属性。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" -msgstr[0] "弯刀 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" +msgstr[0] "恶魔甲壳板" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "穿甲刺剑 +1" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "一大块恶魔蜘蛛的外骨骼,煞费苦心地从一只成年恶魔蜘蛛的尸体上切下来。这个尺寸的甲壳板可以用来制造载具装甲板。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" -msgstr[0] "穿甲刺剑 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" +msgstr[0] "山铜块" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "骑士剑 +1" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "一块未经过处理的山铜。需要先将其打造成锭才能进一步使用。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" -msgstr[0] "骑士剑 +1" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" +msgstr[0] "山铜片" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "阔剑 +1" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "一块未经过处理的山铜碎片。需要先将其打造成锭才能进一步使用。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" -msgstr[0] "阔剑 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" +msgstr[0] "山铜锭" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "战斧 +1" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "一块山铜锭。约有3x7x12厘米大小,能够被用来锻造成各种物品。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" -msgstr[0] "战斧 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" +msgstr[0] "液态汞" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "骑兵刀 +1" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "液态的汞元素,以其在温度计中的使用而闻名。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" -msgstr[0] "骑兵刀 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" +msgstr[0] "秘银块" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "撬棍 +1" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "一块未经过处理的秘银。需要先将其打造成锭才能进一步使用。" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" -msgstr[0] "撬棍 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" +msgstr[0] "秘银锭" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "短弯刀 +1" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "一块秘银锭。约有3x7x12厘米大小,能够被用来锻造成各种物品。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" -msgstr[0] "短弯刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "Mjölnir,雷神之锤" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "消防斧 +1" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "妙尔尼尔,传说中雷神索尔使用的锤子。据传只要一击就能把整座大山夷为平地。你能通过锤子感受到来自仙宫阿斯加德的力量。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" -msgstr[0] "消防斧 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "Gungnir,永恒之枪" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "武士刀 +1" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" +"冈格尼尔,传说中北欧众神之父奥丁使用的长矛。据传它是完美的长矛,无论持用者的力量或技能如何,它都能完美地击中任何目标。拿着它让你有种被奥丁守护的感觉。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" -msgstr[0] "武士刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" +msgstr[0] "Gram,胜利之剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "战术匕首 +1" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "古拉姆,传说中英雄齐格鲁德使用的魔剑。据传是斩杀传说中恶龙法夫尼尔的剑。据说曾将侏儒雷金的铁砧劈成两半,它的剑刃无懈可击。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" -msgstr[0] "战术匕首 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "Laevateinn,灾厄之剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "猎刀 +1" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" +"一柄北欧神话丰饶之神弗雷与巨人苏尔特所使用的魔剑,又名烈焰之剑、胜利之剑、炎之魔剑。传说中欺骗之神(亦是火神)洛基使用的魔杖,所以又名灾厄之杖,在《洛基的吵骂》中,洛基责骂弗雷因美色丢失了此武器,据说是由洛基从冥界海拉城门上拔出来的。传说中这把剑永远燃烧着火痛名它的光芒如同太阳程耀眼,于请神的黄昏战结束时苏尔特持此剑焚毁了整个世界,后下落不明。它充满了神秘的魔力,来自欺诈之神自己的魔力。" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" -msgstr[0] "猎刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" +msgstr[0] "山铜战术匕首" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "生存刀 +1" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "一把由山铜而不是钢材制成的战术匕首。山铜制品比钢更锋利,更容易维护,虽然密度和钢一样,但它的刀刃更薄,减少了自身的重量。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" -msgstr[0] "生存刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" +msgstr[0] "山铜长剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "战壕匕首 +1" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "一把由山铜而不是钢材制成的长剑。山铜制品比钢更锋利,更容易维护,虽然密度和钢一样,但它的剑刃更薄,减少了自身的重量。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" -msgstr[0] "战壕匕首 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" +msgstr[0] "山铜消防斧" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "蛇剑 +1" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "一把由山铜而不是钢材制成的消防斧。这让它能够砍开更坚硬的材质,成为资金非常充足的消防局的首选消防斧。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" -msgstr[0] "蛇剑 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" +msgstr[0] "龙骨长剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "库克利弯刀 +1" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "一种由龙骨制成的长剑变种。它拥有极高的威力,同时毫不牺牲耐久性。甚至优于星陨矿,并且你隐约感觉到,这还不是它的最终形态。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" -msgstr[0] "库克利弯刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" +msgstr[0] "龙骨战斧" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "野太刀 +1" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "一种由龙骨制成的战斧变种。它拥有极高的威力,同时毫不牺牲耐久性。甚至优于星陨矿,并且你隐约感觉到,这还不是它的最终形态。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" -msgstr[0] "野太刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" +msgstr[0] "龙骨长枪" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "鹤嘴锄 +1" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "一种由龙骨制成的长枪变种。它拥有极高的威力,同时毫不牺牲耐久性。甚至优于星陨矿,并且你隐约感觉到,这还不是它的最终形态。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" -msgstr[0] "鹤嘴锄 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" +msgstr[0] "龙骨太刀" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "重矛 +1" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "一种由龙骨制成的太刀变种。它拥有极高的威力,同时毫不牺牲耐久性。甚至优于星陨矿,并且你隐约感觉到,这还不是它的最终形态。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" -msgstr[0] "重矛 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" +msgstr[0] "Gaul Marazs,盖尔玛拉兹" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "迅捷剑 +1" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" +"一把令人印象深刻的华丽金色战锤,镶嵌着蓝宝石和红宝石。上面刻着的文字似乎是古法语和古德语的某种奇怪混合体。你可以感觉到它散发出微弱的魔法光环,拿起武器会给你一种确凿的印象,即更多的力量还在休眠中。要是你能将其驾驭,再一次唤醒它就好了......" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" -msgstr[0] "迅捷剑 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" +msgstr[0] "酸液注入的龙骨长剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "日式短刀 +1" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "龙骨长剑的一种变体,由龙骨制成,内部注入了黑龙的酸性火焰。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" -msgstr[0] "日式短刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" +msgstr[0] "酸液注入的龙骨战斧" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "肋差 +1" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "龙骨战斧的一种变体,由龙骨制成,内部注入了黑龙的酸性火焰。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" -msgstr[0] "肋差 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" +msgstr[0] "酸液注入的龙骨长枪" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "双手巨剑 +1" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "龙骨长枪的一种变体,由龙骨制成,内部注入了黑龙的酸性火焰。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" -msgstr[0] "双手巨剑 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" +msgstr[0] "酸液注入的龙骨太刀" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "古埃及镰状剑 +1" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "龙骨太刀的一种变体,由龙骨制成,内部注入了黑龙的酸性火焰。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" -msgstr[0] "古埃及镰状剑 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" +msgstr[0] "巨木棒" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "西福斯短剑 +1" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "一根顶端有个十分粗壮疙瘩的坚固木棍。虽然它很重,但在力量强大的人手中,它是非常有效的武器。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" -msgstr[0] "西福斯短剑 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" +msgstr[0] "木制三叉戟" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "中式刀 +1" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" +"这根木制近战武器的顶端安装了一个手工锻造的三叉钢叉。它可以用来近距离穿刺敌人,也可以作为投掷武器使用,在知道如何正确使用的人手中可以很容易地解除对手的武装。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" -msgstr[0] "中式刀 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" +msgstr[0] "带刺标枪" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "这根大约有3英尺长的标枪上像箭一样安装了尾翼,提高了命中率。它的尖端有个看上去很邪恶的倒钩,能够导致大量出血。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "射出带刺标枪的假枪。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" -msgstr[0] "生化术士之矛" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" +msgstr[0] "浓缩魔力血清" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "一根造型奇诡的骨制矛头,固定在一根短粗的木棍之上。在矛头的底部镶有一个生化术士符文。" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "一种高度浓缩的魔法药剂。你不太确定它的效果都有什么……" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" -msgstr[0] "科技法师之杖" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" +msgstr[0] "丧尸巫毒娃娃" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "这根法杖由一根撬棍在两端加上月牙形扳手和锤子构成,方便携带。锤头上镶嵌着一个科技法师符文。" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "一只特别逼真的丧尸人偶,有着逼真的骨头和器官。死灵法术暂时阻止了它的腐坏,但是不会长久。用附带的针刺它会让它为你服务。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" -msgstr[0] "魔术师之杖" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" +msgstr[0] "骨片巫毒娃娃" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "这根雕刻了符文的长棍上附有两只钢化玻璃罐,注入了魔力以提高耐久度,用于吸收魔力。棍尖上镶嵌有两个魔术师符文。" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "一只特别逼真的丧尸人偶,覆盖着骨片,里面有逼真的器官。死灵法术暂时阻止了它的腐坏,但是不会长久。用附带的针刺它会让它为你服务。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" -msgstr[0] "炽霜法师焰形剑" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" +msgstr[0] "美洲狮巫毒娃娃" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "带有形似火焰的起伏刀刃的剑。剑柄头上镶嵌着一个炽霜法师符文。" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "一只特别逼真的不死美洲狮人偶,有着逼真的皮毛、骨头和器官。死灵法术暂时阻止了它的腐坏,但是不会长久。用附带的针刺它会让它为你服务。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" -msgstr[0] "风暴塑造者之斧" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" +msgstr[0] "火球法杖" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "一把镶银边的铸造铜斧,装在一根木柄上面。斧柄洞里镶嵌着一个风暴塑造者符文。" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "这是一款经典的法杖,可以毫不失误地发射火球。不过,一个熟练的炽霜法师可以更有效地使用它。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" -msgstr[0] "泛灵师献祭短刀" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" +msgstr[0] "魔法飞弹法杖" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "一把仪式用钢刀,泛灵师用它来放血进行召唤。剑格上面镶嵌着一个泛灵师符文。" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "这是一款经典的法杖,可以毫不失误地发射魔法飞弹。不过,一个熟练的魔术师可以更有效地使用它。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" -msgstr[0] "弹簧长杖(甩棍)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" +msgstr[0] "过时!血液燃料电池CBM" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "展开" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "过时物品! 仅为保存完整性存在。" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "你将弹簧长杖展开成长杖模式。" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "次等魔力药剂" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "这种多用途武器使用科技魔法增强过的弹簧以保持长杖两端在甩棍模式时收回。激活以展开。" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "你不能买到这个,所以你需要留着这些用来对付最后一个Boss!事实上,甚至不要在那里使用它们!" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" -msgstr[0] "弹簧长杖(长杖)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" +msgstr[0] "魔力药剂" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "折叠" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "高等魔力药剂" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "你将弹簧长杖折叠成甩棍模式。" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "猫之优雅药剂" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "这种多用途武器使用科技魔法增强过的弹簧以保持长杖两端在甩棍模式时收回。激活以折叠。" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" -msgstr[0] "热立方" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "这是猫之优雅药剂,它会在10分钟内提高你的敏捷度。" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "启动火炬模式" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" +msgstr[0] "巨魔之力药剂" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "你按下火炬按钮,热立方上方随即喷出了一道巨大的火焰。这道火焰会散发热量,但是不会引燃其它物品。" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "这是巨魔之力药剂,它会在10分钟内提高你的力量。" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "鹰眼药剂" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "一个有你拳头大的光滑钢制立方体,上面有数个按钮,能够启动热立方的不同功能。" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "这是鹰眼药水,它会在10分钟内提高你的感知。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" -msgstr[0] "热立方(点亮)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" +msgstr[0] "狐之狡黠药剂" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "热立方的火焰熄灭了。" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "这是狐之狡黠药剂,它会在10分钟内提高你的智力。" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" +msgstr[0] "扭曲恢复药剂" + +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "热立方目前处于火炬模式,正发出一道温暖的闪耀火焰,却不会引燃其它物品。" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "这瓶闻起来就恶心的液体通过将心跳加速至危险的水平来模拟不死生物的恢复能力。在危险或濒死状态下使用可能会致命。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" -msgstr[0] "魔法万能钥匙" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "改良扭曲恢复药剂" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "一把金制万能钥匙。你可以用它来开锁。" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" +"这瓶闻起来就恶心的液体通过将心跳加速至危险的水平来模拟不死生物的恢复能力。在危险或濒死状态下使用可能会致命。改进的浸提技术减小了药剂对身体的负担。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" -msgstr[0] "不灭火炬" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" +msgstr[0] "黑龙:沼泽遗迹" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "这是一把优质的木制雕花火炬。你可以随意令其燃烧,用它照亮四周,而它永远不会烧尽。" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" +"这本书详细介绍了黑龙,龙中最邪恶的一种。黑龙栖息在沼泽遗迹之中,能喷出酸液并对酸液免疫。这本书还介绍了如何鞣制黑龙的皮革,并用所得皮革制造防酸护甲。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" -msgstr[0] "无尽酒瓶" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "炼金术入门指南" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "你打开酒瓶,发现其中已经装满了香甜的威士忌!" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "一本关于液体魔法技艺的平装书,酒精需要自行购买。" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "酒瓶还没装满。" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgstr[0] "附魂者的死灵法术指南" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" -msgstr[0] "魔法裁缝助手" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "一本有关死灵法术的平装版典籍,介绍了将不死生物的灵魂依附到玩偶上的法术,以及模拟它们的恢复能力的方法。" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" +msgstr[0] "魔法科技图解" + +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -"一袋装着各种针、几卷线,几把小剪刀,甚至还有用来融化粘合塑料的高品质钢制雕花缝纫套装。可以用它来修改你的衣服和装甲。它主要运用你的裁缝技能。它同时包含一只魔法蜘蛛,能够缓慢但持续地产出新的丝线。" +"一本平装本书籍,主题是将现代科技和魔法结合的技术。书背上有一段免责声明:“坎尼斯工业对使用本书所涉及的任何产品所引发的故障或事故不负任何责任”。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" -msgstr[0] "蜘蛛盒子" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" +msgstr[0] "阿斯加德之武" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "这是一个装着一只蜘蛛的小玻璃盒。这只蜘蛛日以继夜地产出丝线并储存起来,你打开盒子便可以收集。" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "一本精美华丽的古书,似乎是用北欧符文写的。从书中详细的插图来看,它似乎包含了关于制造北欧众神所使用的各种武器的信息。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" -msgstr[0] "德鲁伊复合弓" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" +msgstr[0] "与毒共煮" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "一把采用多种材料复合制成以增加储能效率的弓。弓背两端镶嵌着两个德鲁伊符文。" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "一本皮面精装书,封面上有个凸印的大锅图案。书中详细地描述了各种使用魔法净化食物的方法。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" -msgstr[0] "M47A1 科技魔法\"美杜莎\"左轮手枪" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" +msgstr[0] "传奇炼金者手册" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" -"一把经过魔法增强的菲利普斯和罗杰斯公司出品的 M47 " -"\"美杜莎\"左轮手枪,这把手枪是一把多口径左轮手枪,专为生存主义者定制。虽然科技魔法提高了手枪发射小口径子弹时的可靠性,但由于是滑膛发射,和对应口径的左轮手枪相比命中率还是略低。" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "一本有着黄铜板封面的书。它号称能够教人如何制造山铜等魔法金属。即使按照炼金术手册的标准来说,它也要更枯燥乏味。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" -msgstr[0] "枪刃" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" +msgstr[0] "魔法生物防护手册" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "它的结构类似于一把伊比利亚短剑,这把向前倾斜的短刀上有一把短筒泵动式霰弹枪,连接在刀背上,以终结对手或先发打击。" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" -msgstr[0] "魔法铜戒指" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "一本皮革装订的书,封面上画着一个盾牌挡住了龙炎。里面描述了把各种怪物毛皮制成防护装备的方法。" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "一枚普通的魔法铜戒指。" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" +msgstr[0] "附魔师指南" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" -msgstr[0] "魔法戒指" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "一本厚重的关于武器和工具附魔理论与实践的教科书。" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "一枚普通的魔法银戒指。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "法术卷轴" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "一枚普通的魔法金戒指。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" +msgstr[0] "魔力结晶卷轴" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "一枚普通的魔法铂金戒指。" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "一名合格的巫师永远准备周全,把你的魔力结晶化以留待未来!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" -msgstr[0] "飞刃戒指" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" +msgstr[0] "黑暗视觉卷轴" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." -msgstr "一枚华丽的银制戒指,上面刻着匕首。它被激活时能够在你手中召唤出一把近乎完美的飞刀。" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "黑暗在奥术面前没有任何秘密。调整你的视觉使你能在完全黑暗中看清物体!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" -msgstr[0] "鳗鱼戒指" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" +msgstr[0] "隐身术卷轴" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." -msgstr "一个轻薄的银戒指,上面画着一条鳗鱼。让你每回合额外闪避一次攻击。" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "没有你的允许,光将不会与你发生作用。隐身!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" -msgstr[0] "双头鳗鱼戒指" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" +msgstr[0] "朦胧术卷轴" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "一个轻薄的金戒指,上面画着一条盘绕在自己身上的双头鳗鱼。让你每回合额外闪避两次攻击。" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "一个魔法光环扭曲了你身体周围的光线,使你更容易闪避敌人的攻击。" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" -msgstr[0] "力量戒指 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" +msgstr[0] "全息换位术卷轴" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "一枚铜戒指,戴上它让你觉得自己稍微强壮了一些。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" +msgstr[0] "神圣惩击卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" -msgstr[0] "力量戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" +msgstr[0] "生命分流卷轴" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "一枚银戒指,戴上它让你觉得自己强壮了不少。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" +msgstr[0] "心胜于痛卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" -msgstr[0] "力量戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" +msgstr[0] "召唤丧尸卷轴" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "一枚金戒指,戴上它让你觉得自己更加强壮了。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" +msgstr[0] "召唤骷髅卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" -msgstr[0] "力量戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" +msgstr[0] "召唤飘浮碟卷轴" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "一枚铂金戒指,戴上它让你觉得自己非常强壮。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" +msgstr[0] "召唤腐朽突袭兽卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" -msgstr[0] "敏捷戒指 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" +msgstr[0] "治疗轻伤卷轴" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "一枚铜戒指,戴上它让你觉得自己稍微灵敏了一些。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" +msgstr[0] "伤痛分流卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" -msgstr[0] "敏捷戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" +msgstr[0] "残暴之鞭卷轴" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "一枚银戒指,戴上它让你觉得自己灵敏了不少。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" +msgstr[0] "扭曲强化卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" -msgstr[0] "敏捷戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" +msgstr[0] "酸液喷射卷轴" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "一枚金戒指,戴上它让你觉得自己更加灵敏了。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" +msgstr[0] "肉身成袋卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" -msgstr[0] "敏捷戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" +msgstr[0] "白骨之矛卷轴" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "一枚铂金戒指,戴上它让你觉得自己非常灵敏。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" +msgstr[0] "炽能冲击卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" -msgstr[0] "智力戒指 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" +msgstr[0] "魔法阅读灯卷轴" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "一枚铜戒指,戴上它让你觉得自己稍微聪明了一些。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" +msgstr[0] "致盲闪光卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" -msgstr[0] "智力戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" +msgstr[0] "幽影攫抓卷轴" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "一枚银戒指,戴上它让你觉得自己聪明了不少。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" +msgstr[0] "保护光环卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" -msgstr[0] "智力戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" +msgstr[0] "藤蔓缠绕卷轴" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "一枚金戒指,戴上它让你觉得自己更加聪明了。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" +msgstr[0] "树根穿刺卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" -msgstr[0] "智力戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" +msgstr[0] "硬木投掷卷轴" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "一枚铂金戒指,戴上它让你觉得自己非常聪明。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" +msgstr[0] "自然之弓卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" -msgstr[0] "感知戒指 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" +msgstr[0] "自然冥想卷轴" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "一枚铜戒指,戴上它让你觉得自己稍微敏锐了一些。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" +msgstr[0] "袋装猫咪卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" -msgstr[0] "感知戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "大地之拳卷轴" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "一枚银戒指,戴上它让你觉得自己敏锐了不少。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "战争践踏卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" -msgstr[0] "感知指环 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" +msgstr[0] "坚如磐石卷轴" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "一枚金戒指,戴上它让你觉得自己更加敏锐了。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "碎片喷射卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" -msgstr[0] "感知戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "穿刺箭卷轴" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "一枚铂金戒指,戴上它让你觉得自己非常敏锐。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" +msgstr[0] "碎片风暴卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" -msgstr[0] "速度戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "石之箭卷轴" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "一枚铜戒指,戴上它让你觉得自己动作变得迅速了一些。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "定点炎爆卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" -msgstr[0] "速度戒指 +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "火焰之指卷轴" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "一枚银戒指,戴上它让你觉得自己迅速了不少。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "冰刺卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" -msgstr[0] "速度戒指 +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "火球术卷轴" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "一枚金戒指,戴上它让你觉得自己更加迅捷了。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" +msgstr[0] "极寒喷射卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" -msgstr[0] "速度戒指 +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "燃烧之手卷轴" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "一枚铂金戒指,戴上它让你觉得自己非常迅捷。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "寒霜喷射卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" -msgstr[0] "防护戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "寒冷之触卷轴" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "一枚铜戒指,戴上后能够减轻你受到的部分伤害。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "冰上滑行卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" -msgstr[0] "防护戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "白霜冲击卷轴" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "一枚银戒指,戴上之后能够可观地减轻你所受到的伤害。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "冰盾卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" -msgstr[0] "防护戒指 +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "霜甲卷轴" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "一枚金戒指,戴上之后能够显著减轻你所受到的伤害。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "魔法飞弹卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" -msgstr[0] "防护戒指 +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "相位门卷轴" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "一枚铂金戒指,戴上之后能够极大减轻你所受到的伤害。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "重力井卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" -msgstr[0] "魔法硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "奥术冲击卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" -msgstr[0] "长剑硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" +msgstr[0] "奥术闪电卷轴" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新长剑!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "加速术卷轴" -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的长剑。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "奥术光束卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" -msgstr[0] "骑士剑硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" +msgstr[0] "逃脱术卷轴" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新骑士剑!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "猫之优雅卷轴" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的骑士剑。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "鹰眼卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" -msgstr[0] "阔剑硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "巨魔之力卷轴" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新阔剑!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" +msgstr[0] "狐之狡黠卷轴" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的阔剑。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "震颤电击卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" -msgstr[0] "战斧硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "闪电束卷轴" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新战斧!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" +msgstr[0] "风击术卷轴" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的战斧。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "风行术卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" -msgstr[0] "重矛硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" +msgstr[0] "风暴之锤卷轴" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新重矛!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "祝福卷轴" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的重矛。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" +msgstr[0] "光明之刃卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" -msgstr[0] "钉头槌硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "心灵装甲卷轴" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新钉头槌!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" +msgstr[0] "魔法灯卷轴" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的钉头槌。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "魔能转换术卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" -msgstr[0] "武术长棍硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" +msgstr[0] "电击术卷轴" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把崭新的武术长棍!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "次级隧穿术卷轴" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的武术长棍。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" +msgstr[0] "突触刺激卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" -msgstr[0] "锤子硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "激光术卷轴" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新锤子!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" +msgstr[0] "魔剑苏生卷轴" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的锤子。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "召唤镜像卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" -msgstr[0] "螺丝刀组硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "闪电冲击卷轴" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一套闪亮的崭新螺丝刀组!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "死灵凝视卷轴" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" +msgstr[0] "净化之种卷轴" + +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的螺丝刀组。" +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." +msgstr "召唤大地的馈赠,可用于净水。等级越高,获得的种子数量就越多。" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" -msgstr[0] "工具箱硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" +msgstr[0] "喷嚏激光术卷轴" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一个闪亮的崭新工具箱!" +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." +msgstr "你将体内的生化电池过载,从你的脸上射出半定向的激光光束。" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的工具箱。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" +msgstr[0] "熔岩炸弹卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" -msgstr[0] "撬棍硬币" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" +msgstr[0] "防酸术卷轴" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新撬棍!" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "这法术能产生一个肉眼无法看见的防酸光环保护你。" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" +msgstr[0] "闪电雷暴卷轴" + +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的撬棍。" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." +msgstr "这幅卷轴详细描述了一个被称为\"闪电冲击\"的常见的风暴塑造者法术是如何被改造变得更强大的,但施放时将会消耗更多的魔力。" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" +msgstr[0] "沃血重萌卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "舍己济人卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" +msgstr[0] "石肤术卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "石柱术卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" +msgstr[0] "麻痹毒刺卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "脏腑四射卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" +msgstr[0] "凝结组织卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "电离术卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" +msgstr[0] "召唤鬼火卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "雾墙术卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" +msgstr[0] "水凝聚卷轴" + +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." +msgstr "允许你从周围的空气中凝聚水。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" +msgstr[0] "净水凝聚卷轴" + +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "允许你从周围的空气中凝聚净水。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" +msgstr[0] "创造盐酸卷轴" + +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "为你生产可用的盐酸。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" +msgstr[0] "召唤……恶魔(?)卷轴" + +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" +msgstr "你可以通过所有的草书文字判断这是一张真正的魔法卷轴。不过,这确实让它有些难以阅读……" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" +msgstr[0] "火焰风暴卷轴" + +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "这幅卷轴详细描述了一个被称为\"火球术\"的常见的炽霜法师法术是如何被改造变得更强大的,但施放时将会消耗更多的魔力。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" +msgstr[0] "寒冰风暴卷轴" + +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "这幅卷轴详细描述了一个被称为\"白霜冲击\"的常见的炽霜法师法术是如何被改造变得更强大的,但施放时将会消耗更多的魔力。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" +msgstr[0] "岩石封锁卷轴" + +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "这张卷轴详细描述了如何撕裂你脚下的大地,将一块中型巨石投掷出去。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" +msgstr[0] "陨石术卷轴" + +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." +msgstr "这张卷轴包含了一个强大的法术,可以从高空召唤一颗陨石。在这场大灾变中,也许再出现一个\"恐龙杀手\"会是件好事。" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" +msgstr[0] "酸液箭卷轴" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" -msgstr[0] "铁拳套 +1" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "这张卷轴详细描述了如何将酸液投掷到某人身上。" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" -msgstr[0] "铁拳套 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" +msgstr[0] "酸液弹卷轴" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" -msgstr[0] "火焰拳套" +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." +msgstr "这张卷轴包含了如何将酸液塑造成压缩球形的详细信息。" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" +msgstr[0] "酸液风暴卷轴" + +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "" -"一只沉重的金属护手,套在拳头上可以增加打击力度,下方增加了结实的衬垫保护穿戴者的手不受伤害。这只拳套被附过魔,发出只会伤害敌人的黑暗魔法火焰。" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "这幅卷轴详细描述了一个被称为\"酸液弹\"的法术是如何被改造变得更强大的,但施放时将会消耗更多的魔力。" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" -msgstr[0] "火焰拳套 +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +msgstr[0] "科技法师的CDDA调试指南" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "火焰拳套 +2" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "static std::string description( spell sp ) const;" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" -msgstr[0] "重击护手" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" +msgstr[0] "魔法入门指南" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "一对闪闪发光的金属护手,上面覆盖着魔法符文,使你可以使出威力无穷的拳击。" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" +msgstr "看起来就像一本典型的小册子,声称可以教人们魔法。 然而出于某种原因,你无法完全确定,觉得这本比平时多一点真相......" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" -msgstr[0] "霰弹拳套" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" +msgstr[0] "魔法师背包指南" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." -msgstr "一把安装在金属拳套上的锯短双管霰弹枪。由于没有吸收后坐力的枪托,这意味着需要一些力量才能开火。" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "这是一个可以随身携带的法术指南书,虽然有点笨重,但是可以教会你不少有用的法术。" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" -msgstr[0] "塑地者拳套" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" +msgstr[0] "异教徒的火焰魔法" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." -msgstr "一个石制手套,上面围绕手的四周刻着符文,保护手的同时增强打击力量。手套的掌心镶嵌着塑地者符文。" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "这本表皮烧焦的魔法书里包含了许多火焰法术。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "魔法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" +msgstr[0] "魔法元素论" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" -msgstr[0] "一次性法杖" +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This details complex diagrams, rituals, and choreography that describes " +"various spells." +msgstr "它详细描述了各种法术所使用的复杂符号、仪式和步伐编排。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" -msgstr[0] "下级魔法飞弹法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" +msgstr[0] "神祇简介" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." -msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是魔法飞弹。" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "这似乎是一本宗教书籍,但它有一些关于治疗魔法的备注。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" -msgstr[0] "次级魔法飞弹法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +msgstr[0] "圣骑士的现代施法指南" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" -msgstr[0] "高级魔法飞弹法杖" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "除了封面,这本书好像是用中古英语写的。尽管有些晦涩难懂,但你还是能理解大部分文字描述。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" -msgstr[0] "下级火球法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" +msgstr[0] "寒冬之悟" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是火球。" +"This slim book almost seems to be made from ice, it's cold to the touch." +msgstr "这本薄薄的书好像是用冰做的,摸起来很冷。里面包含了许多关于寒冷的法术。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" -msgstr[0] "次级火球法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" +msgstr[0] "风暴来临法典" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" -msgstr[0] "高级火球法杖" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "一本巨大的书,上面镶有交叉闪电和风暴云的印记,摸上去会感觉刺痛。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" -msgstr[0] "下级奥术光束法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" +msgstr[0] "普通魔法书" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是奥术光束。" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "一本小作文本,其中包含一名学徒魔法师创造的法术。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" -msgstr[0] "次级奥术光束法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" +msgstr[0] "光影和幻象" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" -msgstr[0] "高级奥术光束法杖" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." +msgstr "一本白色小册子,它淡淡地增强了四周的光。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" -msgstr[0] "下级定点炎爆法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "血肉之书" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." -msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是定点炎爆。" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "一本小书,表面覆盖着古铜色的人类皮肤。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" -msgstr[0] "次级定点炎爆法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" +msgstr[0] "树之书" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" -msgstr[0] "高级定点炎爆法杖" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "一本树皮封面的书。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" -msgstr[0] "下级白霜冲击法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "魔力能源的效用" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." -msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是白霜冲击。" +"This book details spells that use your mana to recover various physiological" +" effects." +msgstr "书中详细描述了使用魔力恢复各种生命效果的法术。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" -msgstr[0] "次级白霜冲击法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" +msgstr[0] "战斗法师宝典" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "高级白霜冲击法杖" +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "你的标准魔法书,写满了魔术师的战斗法术。你真走运!" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" -msgstr[0] "下级极寒喷射法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "地心空洞论" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." -msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是极寒喷射。" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." +msgstr "这本满是灰尘的魔法书似乎永远都是,嗯,满是灰尘。其中蕴含着大地的力量。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" -msgstr[0] "次级极寒喷射法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" +msgstr[0] "魔法移动宝典" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "高级极寒喷射法杖" +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." +msgstr "这本小巧轻便的书似乎并不完全存在,也许97%存在。它包含有关移动的魔术师法术。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" -msgstr[0] "一次性下级魔法飞弹法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "污迹斑斑的卷轴" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." -msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是魔法飞弹。" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." +msgstr "看起来像是有人想在上面设计出一个新法术,但却把一杯咖啡洒在上面,愤怒地把它揉成一团。你能看得出它应该能够施放出些法术,但不知道是否会有效。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" -msgstr[0] "一次性次级魔法飞弹法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" +msgstr[0] "亡灵仆从召唤入门" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "一次性高级魔法飞弹法杖" +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." +msgstr "这本书详细介绍了召唤不死仆从为你战斗的各种方法。但它们似乎在消失前只能维持较短的时间,之后就化为尘土。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" -msgstr[0] "一次性下级火球法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "科技魔法基本原理" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是火球。" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." +msgstr "这本厚厚的手册教导施法者如何操纵和增强各种形式的物质和能量。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" -msgstr[0] "一次性次级火球法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" +msgstr[0] "科技魔法新手入门指南" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" -msgstr[0] "一次性高级火球法杖" +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." +msgstr "非常简单的科技魔法指南。这本彩色的指南,充满了图表和卡通元素,教不太聪明的学生了一些非常基本的科技魔法法术。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" -msgstr[0] "一次性下级奥术光束法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "科技魔法与电磁光谱" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是奥术光束。" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "这本实验室参考材料书很厚,里面充满了如何将魔法与电磁辐射结合的信息。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" -msgstr[0] "一次性次级奥术光束法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +msgstr[0] "空间与地理:线性的谎言" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" -msgstr[0] "一次性高级奥术光束法杖" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" +"这本书非常详细地概述了时间和空间的摇摆不定和非欧几里得的理论。它似乎使用了十几种不同的坐标系,但作者并未对此做太多区分,这使得它很难被人理解。书里有很多术语,但是通过深入研究,你可能会学到一些关于传送的知识。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" -msgstr[0] "一次性下级定点炎爆法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "超越人类的极限" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是定点炎爆。" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "人类是寻求自我提升的生物。这本著作详细研究了许多可以暂时增强人类身体极限的法术,希望能从中寻找到一个更持久的解决方案。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" -msgstr[0] "一次性次级定点炎爆法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" +msgstr[0] "科技法师学徒的魔法书" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" -msgstr[0] "一次性高级定点炎爆法杖" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "一本相当简朴的科技法师魔法书,其中仅包含几种简单的科技魔法咒语。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" -msgstr[0] "一次性下级白霜冲击法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "风暴塑造者学徒的魔法书" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是白霜冲击。" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "一本相当简朴的风暴塑造者魔法书,其中仅包含几种简单的风暴塑造咒语。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" -msgstr[0] "一次性次级白霜冲击法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "塑地者学徒的魔法书" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" -msgstr[0] "一次性高级白霜冲击法杖" +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "一本相当简朴的塑地者魔法书,其中仅包含几种简单的塑地咒语。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" -msgstr[0] "一次性下级极寒喷射法杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "炽霜法师学徒的魔法书" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是极寒喷射。" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" -msgstr[0] "一次性次级极寒喷射法杖" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "一本相当简朴的炽霜法师魔法书,其中仅包含几种简单的火焰和冰霜咒语。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" -msgstr[0] "一次性高级极寒喷射法杖" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" +msgstr[0] "净化大锅" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" -msgstr[0] "魔石护手" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "这个由恶魔蜘蛛甲壳所制成的大锅似乎正在吸收四周的光线。 它能够容纳16升原料,并吸收其中的毒素。它可能还有其他需要你发现的隐藏属性。" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "一种柔韧的石头状魔法物质,用于保护和攻击。" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "一个便携式版本的火炭锻造台,它使用了恶魔蜘蛛甲壳进行附魔和强化,以便能够将魔法金属熔化成能够制造物品的锭。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" -msgstr[0] "火焰之指" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" +msgstr[0] "防火灰泥" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "这是一朵你可以握在手中的小火苗。只要想着火焰,你就可以用它点燃其它物品。" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "魔法灯" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "一堆炼金术制造的灰泥,已经准备好,随时可以用到需要抵抗龙炎般高温的工程建设项目中。" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "一盏魔法灯,能照亮一小块区域。" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "符文铜手镯" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "魔法阅读灯" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "这个手镯上刻着符文。当你看着它的时候,你会感觉到一种神秘的微弱气息。它将有助于将魔力灌注到物质中。" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "一盏小型魔法灯,能让你阅读书籍。" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "符文银手镯" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" -msgstr[0] "魔法大冰盾" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "铜头环" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "一个轻巧但坚硬的盾牌,完全是用魔法冰组成的。" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "镶有铜边的木质头环。在戴上它时按摩太阳穴会使你感到非常平静。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" -msgstr[0] "光滑冰层" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" +msgstr[0] "下级法师法杖" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "你的脚上有一层魔法形成的光滑冰层。虽然在平坦的地面上速度相当快,但在崎岖的地形上很难移动。" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "一根简单雕刻的木制法杖。当你施放法术时会微微发光。手持它能略微增加你的魔力容量。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" -msgstr[0] "风暴之锤" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" +msgstr[0] "次等法师法杖" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "一个充满闪电的魔法战锤,用闪电击打你的敌人。当然,也可以把东西砸成碎片!" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "一根精心制造的长杖,采用经过附魔的木头和秘银制成。当你使用它施放法术时它会在魔法的作用下微微发光,但它不是一个耐用的近战武器。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" -msgstr[0] "风暴之拳" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" +msgstr[0] "高级法师法杖" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "召唤闪电包裹手臂和拳头,使你可以在近战战斗中用它来击打敌人和保护自己。" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "一根雕刻精美的法杖,采用附魔木和秘银制成。当你施放法术时会微微发光,但它不是一种耐用的近战武器。手持它能大大增加你的魔力容量。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" -msgstr[0] "残暴之鞭" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "魔法师帽" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "一条长而扭曲的触须,上面覆盖着锋利的骨质刀片和尖刺状突起。" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "一顶镶有许多星星的蓝色尖顶帽。戴着它可以加快你的魔力回复。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" -msgstr[0] "肉身成袋" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" +msgstr[0] "火球之锤" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "你的背上长出了一个坚硬的肉袋子,里面有细小的触手,可以抓住你放在里面的任何东西。它们不断改变和调整自己,以减少累赘。" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "小心使用!易燃!爆炸!" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" -msgstr[0] "恶毒骨矛" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "魔法腰带" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "这是一柄邪恶的长矛,完全是由骨头组成的。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "迅捷腰带" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" -msgstr[0] "木弓" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "索尔的神奇腰带" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "一把魔法生成的华丽反曲弓。由结实而有弹性的木料制成,拉开弓弦就会自动生成一只箭。" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" -msgstr[0] "净化之种" +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." +msgstr "传说中雷神索尔的神奇腰带,至少看起来是这样的。它能使佩戴者的基础力量加倍。" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "挤压净化之种" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" +msgstr[0] "次级口袋腰带" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "你挤压掌中的种子,它们开始变成粉末。" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "一条很适合你腰部的宽腰带,上面覆盖着许多小口袋,能装下超出它们体积的物品,而且口袋中的物品重量大大减少。" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "这个魔法种子被挤压后会释放出净化粉末,能够用于净化一加仑的水。(一加仑约为3.785升)" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" +msgstr[0] "高级口袋腰带" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" -msgstr[0] "微光粉末" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "武器腰带" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "这些细粉发出逐渐增强的光。" +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." +msgstr "一条很适合你腰部的宽腰带,你可以在眨眼之间将任何武器收入其中,收入的物品似乎被存放在其他空间之中。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" -msgstr[0] "朦胧光环" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" +msgstr[0] "铁鞭腰带" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "一个覆盖全身、看不见的魔法光环扭曲了你身体周围的光。让你在一个回合中获得两次额外闪避攻击的能力。" +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" +msgstr "你抓起腰带,它瞬间在你手中舒展开,变成一根灵活的铁鞭子!" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" -msgstr[0] "防酸光环" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "一根看上去似由金属编织而成但又十分灵活的皮带。你可以激活它,把它变成鞭子,然后切碎你的敌人。" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "一个覆盖全身的肉眼无法看见的防酸光环。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" +msgstr[0] "铁鞭" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" -msgstr[0] "高等防酸光环" +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "你把鞭子在手中缠绕,使其在瞬间卷曲回皮带形状。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" -msgstr[0] "寒霜盔甲" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "一条编织而成、柔软灵活的钢铁长鞭,末端变成锋利的刀刃。能够轻易切割任何向你袭来的物品。使用它能够将其变回皮带。" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "一层包覆全身的、薄薄的魔法冰层。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "力量腰带 +2" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" -msgstr[0] "石化皮肤" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "七里靴" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "一层覆盖全身的薄薄的不断移动的岩石,仿佛是有生命的液体一般。" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" -msgstr[0] "过载烧伤" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." +msgstr "一双十分坚固却又非常舒适合身的旧钢头皮靴,看上去已经用了很久,而且能继续用上更久。穿上它让你移动变得轻松了不少。" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "哎哟,这可是太聪明了!也许它很快就会消退?" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "加速靴" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" -msgstr[0] "保护光环" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "逃脱之靴" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "一个覆盖全身的肉眼无法看见的环境防护光环。" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." +msgstr "一双十分坚固却又非常舒适合身的旧钢头皮靴,这双靴子能够每日激活一次,将你带出任何糟糕的对局,会让你朝一个随机方向传送出一大段距离。" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "立地靴" + +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "这把木剑燃烧起来了!看起来握着它似乎还算安全,但它很快就会烧光。" +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." +msgstr "一双十分坚固却又非常舒适合身的旧皮靴,上面雕刻着些似乎充满了橡胶的小型符文。穿上它能让你免疫电击。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" -msgstr[0] "腐烂骨棒" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" +msgstr[0] "钢制护腕" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "一根由骨头制成的会跳动的棍子,沾满了不断蠕动的血衣,渴望吸收活物。" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "一对源自中世纪的手臂防护的完整集合。" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "采自龙身上的血。它散发着热量,呈现出火焰般变化的纹理。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" +msgstr[0] "钢制护腕" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "被变形怪感染的生物的形似黑泥的血液。黑色淤泥状的表面如同被轻风吹动一般缓慢起伏。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "次级防御护腕" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "充满了魔法能量的血液。它发出微弱的蓝光。" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." +msgstr "一个轻巧而坚固的钢制护腕,顶部刻着华丽的盾牌图案,并用白银突出其错综复杂的设计。它能散发出一道微弱光环保护你全身,减少你所受到的伤害。" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "魔力结晶" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" +msgstr[0] "高级防御护腕" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "一些结晶化的魔力。可以注入魔力进行充能,但无法再抽取出来。" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "一个轻巧而坚固的钢制护腕,顶部刻着华丽的盾牌图案,并用黄金突出其错综复杂的设计。它能散发出一道强力光环保护你全身,减少你所受到的伤害。" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" -msgstr[0] "小型魔力水晶" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" +msgstr[0] "次级闪电护腕" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "这是一个小型魔力水晶,专门被设计用来存储魔杖所需的能量。" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" +"一个轻巧而坚固的钢制护腕,顶部刻着华丽的闪电图案,并用白银突出其错综复杂的设计。它能散发出一道微弱光环保护你全身,减少你所受到的电击伤害,并且能够每日施放三次震颤电击法术。" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" +msgstr[0] "高级闪电护腕" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" +"一个轻巧而坚固的钢制护腕,顶部刻着华丽的闪电图案,并用黄金突出其错综复杂的设计。它能散发出一道强力光环保护你全身,减少你所受到的电击伤害,并且能够每日施放三次闪电束法术。" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" +msgstr[0] "\"静风\"消音器" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "除了消音材料之外,这个消音器还含有一个小范围静音法术,能够把枪声降低到对听力安全的水平。" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" +msgstr[0] "魔法激光瞄具(导轨)" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" +"小型可见激光发射器,使用魔力水晶发射激光,可安装在枪械上,增加命中率与瞄准速度。完全没有缺点——除了增加一点点重量。你可以旋转导轨将其变成管下瞄具。" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" +msgstr[0] "魔法激光瞄具(下挂式)" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" +"小型可见激光发射器,使用魔力水晶发射激光,可安装在枪械上,增加命中率与瞄准速度。完全没有缺点——除了增加一点点重量。你可以旋转导轨将其变成导轨瞄具。" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "Mjölnir,雷神之锤" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" +msgstr[0] "魔法蓝点瞄准镜" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "妙尔尼尔,传说中雷神索尔使用的锤子。据传只要一击就能把整座大山夷为平地。你能通过锤子感受到来自仙宫阿斯加德的力量。" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "在你的枪上安装一个使用魔力结晶发光的蓝点瞄具以取代机械瞄准具。提高命中率,增加重量。" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "Gungnir,永恒之枪" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" +msgstr[0] "魔法面具" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" -"冈格尼尔,传说中北欧众神之父奥丁使用的长矛。据传它是完美的长矛,无论持用者的力量或技能如何,它都能完美地击中任何目标。拿着它让你有种被奥丁守护的感觉。" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "一个普通的魔法面具。" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" -msgstr[0] "Gram,胜利之剑" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" +msgstr[0] "消失面具" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "古拉姆,传说中英雄齐格鲁德使用的魔剑。据传是斩杀传说中恶龙法夫尼尔的剑。据说曾将侏儒雷金的铁砧劈成两半,它的剑刃无懈可击。" +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." +msgstr "一个除了眼孔和口孔之外没有任何面部特征的面具,激活后,它会使其他生物在一段时间内忽略你的存在。" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "Laevateinn,灾厄之剑" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" +msgstr[0] "完美视觉面具" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" -"一柄北欧神话丰饶之神弗雷与巨人苏尔特所使用的魔剑,又名烈焰之剑、胜利之剑、炎之魔剑。传说中欺骗之神(亦是火神)洛基使用的魔杖,所以又名灾厄之杖,在《洛基的吵骂》中,洛基责骂弗雷因美色丢失了此武器,据说是由洛基从冥界海拉城门上拔出来的。传说中这把剑永远燃烧着火痛名它的光芒如同太阳程耀眼,于请神的黄昏战结束时苏尔特持此剑焚毁了整个世界,后下落不明。它充满了神秘的魔力,来自欺诈之神自己的魔力。" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "一个有着明显的蒸汽朋克风的半面具,覆盖在眼部附近,外部有着体积巨大的镜头,能够纠正并大大提高佩戴者的视力。" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" -msgstr[0] "山铜战术匕首" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" +msgstr[0] "长棍 +1" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "一把由山铜而不是钢材制成的战术匕首。山铜制品比钢更锋利,更容易维护,虽然密度和钢一样,但它的刀刃更薄,减少了自身的重量。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "长棍 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" -msgstr[0] "山铜长剑" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" +msgstr[0] "武术长棍 +1" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "一把由山铜而不是钢材制成的长剑。山铜制品比钢更锋利,更容易维护,虽然密度和钢一样,但它的剑刃更薄,减少了自身的重量。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "武术长棍 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" -msgstr[0] "山铜消防斧" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" +msgstr[0] "镔铁棍 +1" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "一把由山铜而不是钢材制成的消防斧。这让它能够砍开更坚硬的材质,成为资金非常充足的消防局的首选消防斧。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "镔铁棍 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" +msgstr[0] "长剑 +1" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "长剑 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "大钢锤 +1" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "大钢锤 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "重钢锤 +1" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "重钢锤 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "战锤 +1" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "战锤 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" -msgstr[0] "山铜块" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "棒球棍 +1" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "一块未经过处理的山铜。需要先将其打造成锭才能进一步使用。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "棒球棍 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" -msgstr[0] "山铜片" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "铝质棒球棍 +1" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "一块未经过处理的山铜碎片。需要先将其打造成锭才能进一步使用。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "铝质棒球棍 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" -msgstr[0] "山铜锭" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "钢矛 +1" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "一块山铜锭。约有3x7x12厘米大小,能够被用来锻造成各种物品。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "钢矛 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" -msgstr[0] "液态汞" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "长枪 +1" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "液态的汞元素,以其在温度计中的使用而闻名。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "长枪 +2" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" -msgstr[0] "浓缩魔力血清" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "战戟 +1" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "战戟 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "长柄刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "长柄刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "薙刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "薙刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "钉头槌 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "钉头槌 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "晨星锤 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "晨星锤 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "弯刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "弯刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "穿甲刺剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "穿甲刺剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "骑士剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "骑士剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "阔剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "阔剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "战斧 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "战斧 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "骑兵刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "骑兵刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "撬棍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "撬棍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "短弯刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "短弯刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "消防斧 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "消防斧 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "武士刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "武士刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "战术匕首 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "战术匕首 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "猎刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "猎刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "生存刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "生存刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "战壕匕首 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "战壕匕首 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "蛇剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "蛇剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "库克利弯刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "库克利弯刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "野太刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "野太刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "鹤嘴锄 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "鹤嘴锄 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "重矛 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "重矛 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "迅捷剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "迅捷剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "日式短刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "日式短刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "肋差 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "肋差 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "双手巨剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "双手巨剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "古埃及镰状剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "古埃及镰状剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "西福斯短剑 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "西福斯短剑 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "中式刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "中式刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "琉森锤 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "琉森锤 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "弹簧长杖(甩棍)" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "展开" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "你将弹簧长杖展开成长杖模式。" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "一种高度浓缩的魔法药剂。你不太确定它的效果都有什么……" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "这种多用途武器使用科技魔法增强过的弹簧以保持长杖两端在甩棍模式时收回。激活以展开。" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" -msgstr[0] "火球法杖" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" +msgstr[0] "弹簧长杖(长杖)" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "折叠" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "你将弹簧长杖折叠成甩棍模式。" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "这是一款经典的法杖,可以毫不失误地发射火球。不过,一个熟练的炽霜法师可以更有效地使用它。" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "这种多用途武器使用科技魔法增强过的弹簧以保持长杖两端在甩棍模式时收回。激活以折叠。" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" -msgstr[0] "魔法飞弹法杖" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" +msgstr[0] "热立方" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "启动火炬模式" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "这是一款经典的法杖,可以毫不失误地发射魔法飞弹。不过,一个熟练的魔术师可以更有效地使用它。" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "你按下火炬按钮,热立方上方随即喷出了一道巨大的火焰。这道火焰会散发热量,但是不会引燃其它物品。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" -msgstr[0] "黑龙:沼泽遗迹" +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "一个有你拳头大的光滑钢制立方体,上面有数个按钮,能够启动热立方的不同功能。" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" +msgstr[0] "热立方(点亮)" + +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "热立方的火焰熄灭了。" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" -"这本书详细介绍了黑龙,龙中最邪恶的一种。黑龙栖息在沼泽遗迹之中,能喷出酸液并对酸液免疫。这本书还介绍了如何鞣制黑龙的皮革,并用所得皮革制造防酸护甲。" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "热立方目前处于火炬模式,正发出一道温暖的闪耀火焰,却不会引燃其它物品。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" -msgstr[0] "炼金术入门指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" +msgstr[0] "魔法万能钥匙" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "一本关于液体魔法技艺的平装书,酒精需要自行购买。" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "一把金制万能钥匙。你可以用它来开锁。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" -msgstr[0] "附魂者的死灵法术指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" +msgstr[0] "不灭火炬" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "一本有关死灵法术的平装版典籍,介绍了将不死生物的灵魂依附到玩偶上的法术,以及模拟它们的恢复能力的方法。" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "这是一把优质的木制雕花火炬。你可以随意令其燃烧,用它照亮四周,而它永远不会烧尽。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" -msgstr[0] "魔法科技图解" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" +msgstr[0] "无尽酒瓶" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "你打开酒瓶,发现其中已经装满了香甜的威士忌!" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "酒瓶还没装满。" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" +msgstr[0] "魔法裁缝助手" + +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -"一本平装本书籍,主题是将现代科技和魔法结合的技术。书背上有一段免责声明:“坎尼斯工业对使用本书所涉及的任何产品所引发的故障或事故不负任何责任”。" +"一袋装着各种针、几卷线,几把小剪刀,甚至还有用来融化粘合塑料的高品质钢制雕花缝纫套装。可以用它来修改你的衣服和装甲。它主要运用你的裁缝技能。它同时包含一只魔法蜘蛛,能够缓慢但持续地产出新的丝线。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" -msgstr[0] "阿斯加德之武" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" +msgstr[0] "蜘蛛盒子" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "一本精美华丽的古书,似乎是用北欧符文写的。从书中详细的插图来看,它似乎包含了关于制造北欧众神所使用的各种武器的信息。" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "这是一个装着一只蜘蛛的小玻璃盒。这只蜘蛛日以继夜地产出丝线并储存起来,你打开盒子便可以收集。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" -msgstr[0] "与毒共煮" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" +msgstr[0] "魔力阅读灯 (关)" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "一本皮面精装书,封面上有个凸印的大锅图案。书中详细地描述了各种使用魔法净化食物的方法。" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "这款极其昂贵的小灯由发光粉末和魔法药水提供动力,其亮度仅够阅读,但是至少可以持续发光十年。已经被盖子盖上了,打开盖子可以散发光芒。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" -msgstr[0] "传奇炼金者手册" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" +msgstr[0] "魔力阅读灯" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "一本有着黄铜板封面的书。它号称能够教人如何制造山铜等魔法金属。即使按照炼金术手册的标准来说,它也要更枯燥乏味。" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "这款极其昂贵的小灯由发光粉末和魔法药水提供动力,其亮度仅够阅读,但是至少可以持续发光十年。关闭盖子可以隐藏光线。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" -msgstr[0] "魔法生物防护手册" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" +msgstr[0] "M47A1 科技魔法\"美杜莎\"左轮手枪" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "一本皮革装订的书,封面上画着一个盾牌挡住了龙炎。里面描述了把各种怪物毛皮制成防护装备的方法。" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" +"一把经过魔法增强的菲利普斯和罗杰斯公司出品的 M47 " +"\"美杜莎\"左轮手枪,这把手枪是一把多口径左轮手枪,专为生存主义者定制。虽然科技魔法提高了手枪发射小口径子弹时的可靠性,但由于是滑膛发射,和对应口径的左轮手枪相比命中率还是略低。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" +msgstr[0] "枪刃" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "一本厚重的关于武器和工具附魔理论与实践的教科书。" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "它的结构类似于一把伊比利亚短剑,这把向前倾斜的短刀上有一把短筒泵动式霰弹枪,连接在刀背上,以终结对手或先发打击。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" -msgstr[0] "法术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" +msgstr[0] "魔法铜戒指" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" -msgstr[0] "魔力结晶卷轴" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "一枚普通的魔法铜戒指。" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "一名合格的巫师永远准备周全,把你的魔力结晶化以留待未来!" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" +msgstr[0] "魔法戒指" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" -msgstr[0] "黑暗视觉卷轴" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "一枚普通的魔法银戒指。" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "黑暗在奥术面前没有任何秘密。调整你的视觉使你能在完全黑暗中看清物体!" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "一枚普通的魔法金戒指。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" -msgstr[0] "隐身术卷轴" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "一枚普通的魔法铂金戒指。" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" +msgstr[0] "飞刃戒指" + +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "没有你的允许,光将不会与你发生作用。隐身!" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "一枚华丽的银制戒指,上面刻着匕首。它被激活时能够在你手中召唤出一把近乎完美的飞刀。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" -msgstr[0] "朦胧术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" +msgstr[0] "鳗鱼戒指" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "一个魔法光环扭曲了你身体周围的光线,使你更容易闪避敌人的攻击。" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "一个轻薄的银戒指,上面画着一条鳗鱼。让你每回合额外闪避一次攻击。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" -msgstr[0] "全息换位术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" +msgstr[0] "双头鳗鱼戒指" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" -msgstr[0] "神圣惩击卷轴" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "一个轻薄的金戒指,上面画着一条盘绕在自己身上的双头鳗鱼。让你每回合额外闪避两次攻击。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" -msgstr[0] "生命分流卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" +msgstr[0] "力量戒指 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" -msgstr[0] "心胜于痛卷轴" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "一枚铜戒指,戴上它让你觉得自己稍微强壮了一些。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" -msgstr[0] "召唤丧尸卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" +msgstr[0] "力量戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" -msgstr[0] "召唤骷髅卷轴" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "一枚银戒指,戴上它让你觉得自己强壮了不少。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" -msgstr[0] "召唤飘浮碟卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" +msgstr[0] "力量戒指 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" -msgstr[0] "召唤腐朽突袭兽卷轴" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "一枚金戒指,戴上它让你觉得自己更加强壮了。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" -msgstr[0] "治疗轻伤卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" +msgstr[0] "力量戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" -msgstr[0] "伤痛分流卷轴" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "一枚铂金戒指,戴上它让你觉得自己非常强壮。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" -msgstr[0] "残暴之鞭卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" +msgstr[0] "敏捷戒指 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" -msgstr[0] "扭曲强化卷轴" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "一枚铜戒指,戴上它让你觉得自己稍微灵敏了一些。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" -msgstr[0] "酸液喷射卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" +msgstr[0] "敏捷戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" -msgstr[0] "肉身成袋卷轴" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "一枚银戒指,戴上它让你觉得自己灵敏了不少。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "白骨之矛卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" +msgstr[0] "敏捷戒指 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" -msgstr[0] "炽能冲击卷轴" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "一枚金戒指,戴上它让你觉得自己更加灵敏了。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "魔法阅读灯卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" +msgstr[0] "敏捷戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" -msgstr[0] "致盲闪光卷轴" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "一枚铂金戒指,戴上它让你觉得自己非常灵敏。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "幽影攫抓卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" +msgstr[0] "智力戒指 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" -msgstr[0] "保护光环卷轴" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "一枚铜戒指,戴上它让你觉得自己稍微聪明了一些。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "藤蔓缠绕卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" +msgstr[0] "智力戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" -msgstr[0] "树根穿刺卷轴" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "一枚银戒指,戴上它让你觉得自己聪明了不少。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "硬木投掷卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" +msgstr[0] "智力戒指 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" -msgstr[0] "自然之弓卷轴" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "一枚金戒指,戴上它让你觉得自己更加聪明了。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "自然冥想卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" +msgstr[0] "智力戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" -msgstr[0] "袋装猫咪卷轴" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "一枚铂金戒指,戴上它让你觉得自己非常聪明。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "大地之拳卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" +msgstr[0] "感知戒指 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" -msgstr[0] "战争践踏卷轴" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "一枚铜戒指,戴上它让你觉得自己稍微敏锐了一些。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "坚如磐石卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" +msgstr[0] "感知戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" -msgstr[0] "碎片喷射卷轴" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "一枚银戒指,戴上它让你觉得自己敏锐了不少。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "穿刺箭卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" +msgstr[0] "感知指环 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" -msgstr[0] "碎片风暴卷轴" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "一枚金戒指,戴上它让你觉得自己更加敏锐了。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "石之箭卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" +msgstr[0] "感知戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" -msgstr[0] "定点炎爆卷轴" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "一枚铂金戒指,戴上它让你觉得自己非常敏锐。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "火焰之指卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" +msgstr[0] "速度戒指 +3" + +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "一枚铜戒指,戴上它让你觉得自己动作变得迅速了一些。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" -msgstr[0] "冰刺卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" +msgstr[0] "速度戒指 +5" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "火球术卷轴" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "一枚银戒指,戴上它让你觉得自己迅速了不少。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" -msgstr[0] "极寒喷射卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" +msgstr[0] "速度戒指 +7" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "燃烧之手卷轴" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "一枚金戒指,戴上它让你觉得自己更加迅捷了。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" -msgstr[0] "寒霜喷射卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" +msgstr[0] "速度戒指 +10" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "寒冷之触卷轴" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "一枚铂金戒指,戴上它让你觉得自己非常迅捷。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" -msgstr[0] "冰上滑行卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" +msgstr[0] "防护戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" -msgstr[0] "白霜冲击卷轴" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "一枚铜戒指,戴上后能够减轻你受到的部分伤害。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "冰盾卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" +msgstr[0] "防护戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "霜甲卷轴" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "一枚银戒指,戴上之后能够可观地减轻你所受到的伤害。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" -msgstr[0] "魔法飞弹卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" +msgstr[0] "防护戒指 +6" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "相位门卷轴" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "一枚金戒指,戴上之后能够显著减轻你所受到的伤害。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "重力井卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" +msgstr[0] "防护戒指 +8" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" -msgstr[0] "奥术冲击卷轴" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "一枚铂金戒指,戴上之后能够极大减轻你所受到的伤害。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "奥术闪电卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" +msgstr[0] "魔法硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "加速术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" +msgstr[0] "长剑硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" -msgstr[0] "奥术光束卷轴" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新长剑!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "逃脱术卷轴" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的长剑。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "猫之优雅卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" +msgstr[0] "骑士剑硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" -msgstr[0] "鹰眼卷轴" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新骑士剑!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" -msgstr[0] "巨魔之力卷轴" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的骑士剑。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" -msgstr[0] "狐之狡黠卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" +msgstr[0] "阔剑硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" -msgstr[0] "震颤电击卷轴" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新阔剑!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" -msgstr[0] "闪电束卷轴" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的阔剑。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" -msgstr[0] "风击术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" +msgstr[0] "战斧硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" -msgstr[0] "风行术卷轴" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新战斧!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" -msgstr[0] "风暴之锤卷轴" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的战斧。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" -msgstr[0] "祝福卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" +msgstr[0] "重矛硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" -msgstr[0] "光明之刃卷轴" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新重矛!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" -msgstr[0] "心灵装甲卷轴" +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的重矛。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" -msgstr[0] "魔法灯卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" +msgstr[0] "钉头槌硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" -msgstr[0] "魔能转换术卷轴" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新钉头槌!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" -msgstr[0] "电击术卷轴" +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的钉头槌。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" -msgstr[0] "次级隧穿术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" +msgstr[0] "武术长棍硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" -msgstr[0] "突触刺激卷轴" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把崭新的武术长棍!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" -msgstr[0] "激光术卷轴" +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的武术长棍。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" -msgstr[0] "魔剑苏生卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" +msgstr[0] "锤子硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" -msgstr[0] "召唤镜像卷轴" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新锤子!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" -msgstr[0] "闪电冲击卷轴" +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的锤子。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" -msgstr[0] "死灵凝视卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" +msgstr[0] "螺丝刀组硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" -msgstr[0] "净化之种卷轴" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一套闪亮的崭新螺丝刀组!" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." -msgstr "召唤大地的馈赠,可用于净水。等级越高,获得的种子数量就越多。" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的螺丝刀组。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" -msgstr[0] "喷嚏激光术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" +msgstr[0] "工具箱硬币" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "你将体内的生化电池过载,从你的脸上射出半定向的激光光束。" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" -msgstr[0] "熔岩炸弹卷轴" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一个闪亮的崭新工具箱!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" -msgstr[0] "防酸术卷轴" +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的工具箱。" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." -msgstr "这法术能产生一个肉眼无法看见的防酸光环保护你。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" +msgstr[0] "撬棍硬币" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" -msgstr[0] "闪电雷暴卷轴" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "你念出硬币上篆刻的咒文,它迅速增大,化作了一把闪亮的崭新撬棍!" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." -msgstr "这幅卷轴详细描述了一个被称为\"闪电冲击\"的常见的风暴塑造者法术是如何被改造变得更强大的,但施放时将会消耗更多的魔力。" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "一大枚银币。当念出硬币背面的文字时,它会变成正面图案内的物品,比如说这枚上面的撬棍。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" -msgstr[0] "沃血重萌卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" +msgstr[0] "瓶式千斤顶 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" -msgstr[0] "舍己济人卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" +msgstr[0] "瓶式千斤顶 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" -msgstr[0] "石肤术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" +msgstr[0] "手术刀 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "石柱术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" +msgstr[0] "手术刀 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" -msgstr[0] "麻痹毒刺卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" +msgstr[0] "屠宰刀 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" -msgstr[0] "脏腑四射卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" +msgstr[0] "屠宰刀 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" -msgstr[0] "凝结组织卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" +msgstr[0] "剁肉刀 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "电离术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" +msgstr[0] "剁肉刀 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" -msgstr[0] "召唤鬼火卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" +msgstr[0] "切肉刀 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" -msgstr[0] "雾墙术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" +msgstr[0] "切肉刀 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" -msgstr[0] "科技法师的CDDA调试指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" +msgstr[0] "屠宰工具箱 +1" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "static std::string description( spell sp ) const;" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" +msgstr[0] "屠宰工具箱 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" -msgstr[0] "魔法入门指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" +msgstr[0] "铁拳套 +1" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "你可能会说这更像是一本宣传册子,而不是一本魔法书,但它似乎至少有些你可以使用的有趣法术。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" +msgstr[0] "铁拳套 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" -msgstr[0] "魔法师背包指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" +msgstr[0] "火焰拳套" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "这是一个可以随身携带的法术指南书,虽然有点笨重,但是可以教会你不少有用的法术。" +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." +msgstr "" +"一只沉重的金属护手,套在拳头上可以增加打击力度,下方增加了结实的衬垫保护穿戴者的手不受伤害。这只拳套被附过魔,发出只会伤害敌人的黑暗魔法火焰。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" -msgstr[0] "异教徒的火焰魔法" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" +msgstr[0] "火焰拳套 +1" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "这本表皮烧焦的魔法书里包含了许多火焰法术。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" +msgstr[0] "火焰拳套 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" -msgstr[0] "魔法元素论" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" +msgstr[0] "重击护手" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "它详细描述了各种法术所使用的复杂符号、仪式和步伐编排。" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." +msgstr "一对闪闪发光的金属护手,上面覆盖着魔法符文,使你可以使出威力无穷的拳击。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" -msgstr[0] "神祇简介" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" +msgstr[0] "霰弹拳套" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "这似乎是一本宗教书籍,但它有一些关于治疗魔法的备注。" +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." +msgstr "一把安装在金属拳套上的锯短双管霰弹枪。由于没有吸收后坐力的枪托,这意味着需要一些力量才能开火。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" -msgstr[0] "圣骑士的现代施法指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" +msgstr[0] "魔法杖" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "除了封面,这本书好像是用中古英语写的。尽管有些晦涩难懂,但你还是能理解大部分文字描述。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" +msgstr[0] "一次性法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" -msgstr[0] "寒冬之悟" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" +msgstr[0] "下级魔法飞弹法杖" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "这本薄薄的书好像是用冰做的,摸起来很冷。里面包含了许多关于寒冷的法术。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是魔法飞弹。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" -msgstr[0] "风暴来临法典" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" +msgstr[0] "次级魔法飞弹法杖" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." -msgstr "一本巨大的书,上面镶有交叉闪电和风暴云的印记,摸上去会感觉刺痛。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" +msgstr[0] "高级魔法飞弹法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" -msgstr[0] "普通的魔法书" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" +msgstr[0] "下级火球法杖" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "一本小型书籍,内部包含了由一名新人魔法师创造的几个法术。" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是火球。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" -msgstr[0] "光影和幻象" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" +msgstr[0] "次级火球法杖" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "一本白色小册子,它淡淡地增强了四周的光。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" +msgstr[0] "高级火球法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" -msgstr[0] "血肉之书" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" +msgstr[0] "下级奥术光束法杖" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." -msgstr "一本小书,表面覆盖着古铜色的人类皮肤。" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是奥术光束。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" -msgstr[0] "树之书" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" +msgstr[0] "次级奥术光束法杖" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "一本树皮封面的书。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" +msgstr[0] "高级奥术光束法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" -msgstr[0] "魔力能源的效用" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" +msgstr[0] "下级定点炎爆法杖" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "书中详细描述了使用魔力恢复各种生命效果的法术。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." +msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是定点炎爆。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" -msgstr[0] "战斗法师宝典" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" +msgstr[0] "次级定点炎爆法杖" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" -msgstr "你的标准魔法书,写满了魔术师的战斗法术。你真走运!" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" +msgstr[0] "高级定点炎爆法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" -msgstr[0] "地心空洞论" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" +msgstr[0] "下级白霜冲击法杖" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "这本满是灰尘的魔法书似乎永远都是,嗯,满是灰尘。其中蕴含着大地的力量。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." +msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是白霜冲击。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" -msgstr[0] "魔法移动宝典" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" +msgstr[0] "次级白霜冲击法杖" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "这本小巧轻便的书似乎并不完全存在,也许97%存在。它包含有关移动的魔术师法术。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "高级白霜冲击法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" -msgstr[0] "污迹斑斑的卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" +msgstr[0] "下级极寒喷射法杖" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." -msgstr "看起来像是有人想在上面设计出一个新法术,但却把一杯咖啡洒在上面,愤怒地把它揉成一团。你能看得出它应该能够施放出些法术,但不知道是否会有效。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." +msgstr "一根细长的木制法杖,在底端有一个魔法水晶插槽,激活时会施放一次法术。这根法杖发射的是极寒喷射。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" -msgstr[0] "亡灵仆从召唤入门" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" +msgstr[0] "次级极寒喷射法杖" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "这本书详细介绍了召唤不死仆从为你战斗的各种方法。但它们似乎在消失前只能维持较短的时间,之后就化为尘土。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" +msgstr[0] "高级极寒喷射法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" -msgstr[0] "科技魔法基本原理" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" +msgstr[0] "一次性下级魔法飞弹法杖" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "这本厚厚的手册教导施法者如何操纵和增强各种形式的物质和能量。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." +msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是魔法飞弹。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" -msgstr[0] "科技魔法新手入门指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" +msgstr[0] "一次性次级魔法飞弹法杖" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." -msgstr "非常简单的科技魔法指南。这本彩色的指南,充满了图表和卡通元素,教不太聪明的学生了一些非常基本的科技魔法法术。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" +msgstr[0] "一次性高级魔法飞弹法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" -msgstr[0] "科技魔法与电磁光谱" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" +msgstr[0] "一次性下级火球法杖" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "这本实验室参考材料书很厚,里面充满了如何将魔法与电磁辐射结合的信息。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." +msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是火球。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" -msgstr[0] "空间与地理:线性的谎言" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" +msgstr[0] "一次性次级火球法杖" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" -"这本书非常详细地概述了时间和空间的摇摆不定和非欧几里得的理论。它似乎使用了十几种不同的坐标系,但作者并未对此做太多区分,这使得它很难被人理解。书里有很多术语,但是通过深入研究,你可能会学到一些关于传送的知识。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" +msgstr[0] "一次性高级火球法杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" -msgstr[0] "超越人类的极限" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" +msgstr[0] "一次性下级奥术光束法杖" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." -msgstr "人类是寻求自我提升的生物。这本著作详细研究了许多可以暂时增强人类身体极限的法术,希望能从中寻找到一个更持久的解决方案。" - -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" -msgstr[0] "净化大锅" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." +msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是奥术光束。" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "这个由恶魔蜘蛛甲壳所制成的大锅似乎正在吸收四周的光线。 它能够容纳16升原料,并吸收其中的毒素。它可能还有其他需要你发现的隐藏属性。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" +msgstr[0] "一次性次级奥术光束法杖" -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "一个便携式版本的火炭锻造台,它使用了恶魔蜘蛛甲壳进行附魔和强化,以便能够将魔法金属熔化成能够制造物品的锭。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" +msgstr[0] "一次性高级奥术光束法杖" -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" -msgstr[0] "防火灰泥" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" +msgstr[0] "一次性下级定点炎爆法杖" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "一堆炼金术制造的灰泥,已经准备好,随时可以用到需要抵抗龙炎般高温的工程建设项目中。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." +msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是定点炎爆。" -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "鲨蜥兽骨板" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" +msgstr[0] "一次性次级定点炎爆法杖" -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" -msgstr[0] "巨木棒" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" +msgstr[0] "一次性高级定点炎爆法杖" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" +msgstr[0] "一次性下级白霜冲击法杖" + +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." -msgstr "一根顶端有个十分粗壮疙瘩的坚固木棍。虽然它很重,但在力量强大的人手中,它是非常有效的武器。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." +msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是白霜冲击。" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" -msgstr[0] "木制三叉戟" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" +msgstr[0] "一次性次级白霜冲击法杖" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" -"这根木制近战武器的顶端安装了一个手工锻造的三叉钢叉。它可以用来近距离穿刺敌人,也可以作为投掷武器使用,在知道如何正确使用的人手中可以很容易地解除对手的武装。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" +msgstr[0] "一次性高级白霜冲击法杖" -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" -msgstr[0] "带刺标枪" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" +msgstr[0] "一次性下级极寒喷射法杖" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "这根大约有3英尺长的标枪上像箭一样安装了尾翼,提高了命中率。它的尖端有个看上去很邪恶的倒钩,能够导致大量出血。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." +msgstr "一根细长的木制法杖,在底端镶嵌有一颗魔法水晶,激活时会施放一次法术。这根法杖发射的是极寒喷射。" -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "射出带刺标枪的假枪。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" +msgstr[0] "一次性次级极寒喷射法杖" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" +msgstr[0] "一次性高级极寒喷射法杖" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "折叠山铜车架" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "一种由山铜管制成的折叠框架。不像铝那么轻,但非常坚固。" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "山铜车架" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "一个由山铜制成的车架。比钢制车架要坚固得多,但同时也比它昂贵得多。" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "鲨蜥兽骨板" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "恶魔蜘蛛" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "恶魔幼蛛" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -208731,7 +208940,7 @@ msgstr "" "尽管它有小狗那么大,但你可以看出这是一只非常年轻的蜘蛛。红色的身体是你给它取这个名字的原因;在大灾变之前从没见过这种生物。它行动敏捷,巨大毒牙正滴下毒液。" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -208740,13 +208949,13 @@ msgid "" msgstr "" "这只蜘蛛有汽车那么大。它那巨大的复眼似乎是无尽的黑暗,似乎在吸走空气中的光。它的栗色外壳上布满了看起来很邪恶的尖刺,上面冒出一种粘稠的黑色液体,接触地面时会发出咝咝声。" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "恶魔蜘蛛女王" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -208755,38 +208964,38 @@ msgid "" msgstr "" "这只巨大的蜘蛛有一辆货车那么大,你根本不知道这么庞大的身躯是如何保持稳定并移动的。巨大的腹部看上去非常肿胀。邪恶的智慧在它的眼睛里燃烧,就像魔法在它几丁质倒钩周围噼啪作响一样。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "恐怖存在" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "骇人存在" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "可怕存在" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "黑龙幼体" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " "you see the glint of sadism in its eyes." msgstr "这是一只不到五岁的小黑龙。它的鳞片光滑,龙角刚刚从头上长出。即使是如此幼小的黑龙,你也能从它的眼中看出一丝残暴。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "小黑龙" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -208796,77 +209005,78 @@ msgid "" msgstr "" "这只黑龙似乎还处于幼年。它的眼睛已经开始在眼眶中下陷,而它的弯曲的节状龙角的尖端才刚刚开始变暗。你仅仅是看它一眼就知道这种生物邪恶到底。尽管这只龙还没有发育完全,但它已经有一头成年公牛的大小。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "成年黑龙" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "一只布满黑色鳞片的怪物,有着深沉的眼窝,内部闪烁着邪恶的绿光。它的脸和头骨看起来像是骷髅一样,酸液从匕首状的下颚上滴落下来。" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" -msgstr[0] "" +msgstr[0] "哥布林" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" +"一个矮小、顽皮的绿色类人生物,穿着脏兮兮且略显破旧的衣服。手持一根木棒,脸上带着某种狡黠的笑容。你可以看出,它喜欢制造麻烦,且可能不会轻易退缩。" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" -msgstr[0] "" +msgstr[0] "哥布林投石手" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." -msgstr "" +msgstr "一个矮小的绿色类人生物,投掷石块的本事和嘴上骂人的功夫一样出色。它们非常擅长嘲讽,同时在各方面都更加难以对付。" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" -msgstr[0] "" +msgstr[0] "哥布林首领" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." -msgstr "" +msgstr "一个丑陋的哥布林,通过频繁施以暴力和稍微多一点的狡诈统治着其他同类。它更加强壮,手中的武器散发着微弱的魔法气息。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "粘土傀儡" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "一个用粘土制成的巨大人型傀儡,它的比例不协调,看上去很脆弱。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "塑料傀儡" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -208875,36 +209085,110 @@ msgid "" msgstr "" "传统上,制造傀儡是一个需要各类手工工具和精细工艺的长达数月的过程。一个石头傀儡是一个魔法装置,更是一件艺术作品。3D打印技术的出现使得制造傀儡成为容易入门的爱好,而塑料傀儡也迅速流行起来。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "石傀儡" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "一个用石头制成的巨大人型傀儡,它的拳头看起来像火箭。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "铁傀儡" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "一个用铁制成的巨大人型傀儡,某种有毒气体从嘴里渗出。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "生树脂魔像" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" +"传统上,制造魔像是一项漫长而艰难的过程,如此巨大的魔像通常需要数月时间才能完成。然而,现代材料的出现使得魔像的制造变得更简单、更快捷。这个魔像似乎仍然非常新穎,几乎就像是刚刚被浇注而成的一样,它可能能够非常迅速地从伤口中恢复。" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "半固化树脂魔像" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" +"传统上,制造魔像是一项漫长而艰难的过程,如此巨大的魔像通常需要数月时间才能完成。然而,现代材料的出现使得魔像的制造变得更简单、更快捷。这个魔像似乎已经部分固化,但还未完全硬化。因此,它可能可以在一定时间内从小伤中恢复。" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "硬化树脂魔像" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" +"传统上,制造魔像是一项漫长而艰难的过程,如此巨大的魔像通常需要数月时间才能完成。然而,现代材料的出现使得魔像的制造变得更简单、更快捷。这个魔像似乎已经完全固化,几乎像石头一样坚硬。你无法确定那只是它的纹理,还是隐藏着某种更可怕的东西……" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "山铜傀儡" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "一个巨大的,由山铜制成的傀儡,其手臂被锻造成锋利的刀刃。" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "秘银傀儡" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "一个巨大的,由秘银制成的人形傀儡,几乎刀枪不入,幸运的是,它的攻击性较弱" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "蜥蜴人战士" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -208916,29 +209200,29 @@ msgid "" msgstr "" "一种高大而强壮的人形爬行动物,它的尾巴肌肉发达,皮肤表面覆盖着深灰绿色的鳞片。它们是部落群居的生物,通常活动在洞穴和其附近的水域中,特别是在有龙族和古龙居住的地区。它们通常不会有敌意,虽然它们不关心外人,但是一旦被激怒了也会非常危险。虽然它们通常喜欢用巨木棒战斗,但当它们使用锋利的牙齿和爪子时也同样凶猛。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "蜥蜴人猎手" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "蜥蜴人猎手的体型比普通战士要小,但依靠轻巧的身材和精确的标枪投掷,它们依然同样致命。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "蜥蜴人猎手向你掷出一根带刺标枪!" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "蜥蜴人萨满" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -208949,13 +209233,13 @@ msgid "" msgstr "" "蜥蜴人非常地聪明和狡猾,但使用魔法的能力却相当罕见。蜥蜴人萨满在幼年时期就从部落中挑选出来,那时它们所展现出的魔法能力就已经标志了年轻部落战士的命运。外界对于它们所必须经历的启蒙仪式知之甚少,但很少有人能在其中幸存下来。蜥蜴人萨满是德鲁伊魔法师,可以使用大自然的力量与敌人战斗,并在需要时召唤援军。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "蜥蜴人酋长" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -208965,59 +209249,60 @@ msgid "" msgstr "" "在蜥蜴人之中,野心是一种罕见特性。蜥蜴人酋长通过表现出异乎寻常的强大野心赢得了自己的地位,而外界往往将其误认为是过度残酷的暴力行为。这位蜥蜴人酋长是部落中最大、最强壮的一员,它所携带的造型凶猛的三叉戟是作为对它的锋利牙齿和爪子的赞美。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "鳄鱼" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "作为一名曾经和未来的蜥蜴人萨满,这只大鳄鱼不再有任何人形特征,而且看起来非常非常危险。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "枭熊" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -"这只可怕的枭熊兽可能是某个疯狂的魔法师进行基因实验的结果。这些生物生活在温带气候中错综复杂的森林地区里,以及地下迷宫之中。它们是贪婪的食尸者,好斗的猎手,而且总是脾气暴躁。它们一看见猎物就攻击,并且会战斗到死。" +"可怕的枭熊很可能是某个疯狂法师进行基因实验的产物。这些生物栖息在每个温带气候的错综复杂的森林区域,以及地下迷宫中。它们比普通的熊更容易生气,所以最好保持距离。从最近才开始看到它们的情况来看,你有种预感,它们并不是一个非常古老的物种。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "黑布丁怪" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "这团蠕动的粘稠黑泥在地面起伏着。当它朝你蹒跚移动时,微弱的嘶嘶声从它下方的地面中传来。" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "黑布丁怪喷出酸液灼烧 %3$s !" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "魔眼怪" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -209027,23 +209312,23 @@ msgstr "" "一只邪恶的巨眼在黑暗中向外窥探,眼睛的闪光显示出它怪异的智慧和令人不安的恶意。巨眼中渗出某种粉色的液体,其人形的身体覆盖着诡异的蓝黑色尖锐三角甲板。" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "魔眼怪朝%3$s凝视!" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "枭熊幼兽" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "鲨蜥兽" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -209053,199 +209338,243 @@ msgid "" msgstr "" "鲨蜥兽是一个某个疯狂的魔法师的实验结果,他将啮龟和犰狳进行杂交并注入了恶魔的灵液。它们生活在温带地区,以马、人和大多数其他动物为食。愚蠢的鲨蜥兽脾气暴躁,总是饥肠辘辘,它们什么也不怕。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "鬼火" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "鬼火可以是黄色、白色、绿色或蓝色。它们很容易被误认为是灯笼,尤其是在它们居住的多雾的沼泽中。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "巨魔" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "一只体型庞大的绿色皮肤的类人生物。巨魔以其厚皮和自然再生能力而闻名。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "蚊蝠" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "这只可怕的飞行生物看起来就像一只大蝙蝠和一只超大蚊子的杂交。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "尖叫蘑菇怪" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "尖叫蘑菇怪是一种和人一样大的蘑菇,通过发出刺耳的尖叫声来驱赶打扰它的生物。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "劣魔" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "劣魔就像一团融化的血肉,勉强能看出它有着人形的头部和躯干。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "兽人战士" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" +"一种体型硕大、行为粗暴的人形生物。他手持利剑,力气大得足以致命,当它发怒时,你可别挡它的道。它还穿着厚重的盔甲,皮肤强韧得可以夸张地说像铁一样。一般来说,它的智力比哥布林低,但最好不要提起这点。" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "兽人弓箭手" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "一个手持强弓的大块头。弓箭手在兽人社会中没有那么受重視,但仍然非常有效。若有需要,它会毫不犹豫用弓狠狠地砸向你。" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "兽人血战士" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" +"与常见的绿色皮肤兽人不同,血战士被认为是受到兽人神灵的祝福。它们看起来确实像是神选之人,而且从你能察觉到的情况来看,它们的力量也与此相符。你最好做好准备迎战,因为它们一定会让你尝尝苦头。" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "祝福你。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "我将清除这片土地的诅咒。你会帮助我们还是阻碍我们?" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "你好,。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "祝福你。愿你清除那些不平静之物。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "我必须先清理此处之后方能继续前进。" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "哦,又是你。" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "哼?*喃喃自语*……你是谁?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "我很忙,怎么了?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "然后丢下我这座塔和我所有的研究?我还是不要了。" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "啊,又见面了。" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "你也在追寻能量吗?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "是的,是的,……*电气爆裂*是不是很漂亮?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "我必须找到更多能量之后方能继续前进。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "魔法测试员" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "我是个流浪的魔法测试员。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "大魔术师" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "我是个老魔术师。离开我的草坪!" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "科技魔法学徒" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "我在寻找更多能量。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "治疗者" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "我要清除这片土地的诅咒。" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "上古遗存" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "古老的魔法创造者。他们在大灾变到来之后才被人知晓,他们有着自己的目的而且毫不关心像你这样的凡人。" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "灰白之火" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "一个视大灾变为诅咒的组织。他们发誓要让这个世界摆脱诅咒,并会不惜一切代价完成这份事业。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "取回魔法书" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "我把那本书放到哪个该死的地方了……" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "我好像把我那本《战斗法师宝典》弄丢了。也许是那个没用的徒弟偷的。去把它拿来给我。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "……什么?哦,你还在这里。快去把我的书找来。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "真是和我那徒弟一样没用……" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -209254,222 +209583,222 @@ msgid "" msgstr "" "你想让我替你做你该做的工作吗?呃。那个徒弟说过想去城里四处逛逛,也许你可以从那里开始。哦,那本书叫《战斗法师宝典》,你起码能读懂书名,不是吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "我的书呢?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "终于来了。花了你这么久。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "胡说!没用!浪费我的时间!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "呃,我这是被什么东西诅咒了?都是些没用的废物。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "收集储能模块CBM" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "更多能量……更多能量……更多能量!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "我需要更多能量。帮我收集更多的储能模块,我就把这本书给你。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "我不管它从哪里来,只要它是干净的就行。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "你也想要更多能量,难道不是吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "电器店里可能会有我需要的东西。或者你可以把它从其他人体内挖出来。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "找到了吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "完美。更多能量……能量……" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "我必须找到更多能量,这次挫折可真不凑巧。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "杀死50只丧尸" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "你会响应号召吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "这个世界已经陷入混乱和死亡。从这世上除掉那受诅咒的五十人,助我清除这诅咒,你就必得赏赐。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "祝福你。我将视你努力来判断你是多数人之一或少数人之一。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "你不想帮我清除这个诅咒?也许你也是诅咒的一部分……" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "复苏觉醒之人聚集在城镇里,离中心越近,你就会发现越多。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "祝福你。你是少数人之一。我们能一起完成伟大事业。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "欺骗是被诅咒者的领域。你让我失望了。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "诅咒对你来说太强了吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "杀死150只丧尸" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "你已经证明了你是少数人之一,你会再和少数人站在一起吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "我们必须继续净化。从此处再除掉一百五十被诅咒的人,你就必得大的福。" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "祝福你。你是少数人的真正见证。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "我明白了。也许有一天你会找到回到我们身边的路。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "即使是最黑暗的角落亦有复苏觉醒之人骚动。找到它们,消灭它们。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "祝福你。你是我们事业的宝贵财富。也许你甚至可能是我们的救赎之人。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "你已经走了这么远。只会堕落。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "这片土地的诅咒感染了那些不寻求净化之人。" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "魔术师" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "科技法师" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "治疗者" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "大地纹丝不动,拒绝服从你的命令。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "深坑进一步加深了。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "更多的沙土从坑中移出。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "土壤为你移开了。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "这里的岩石被磨成沙子。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "这块岩石化作了尘埃。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "空气中的灰尘都落到地上了。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "这里的真菌萎缩死亡了。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "地面震荡,一截非自然的光滑石墙升起。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "枯木重生。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "生命从枯死的草丛中重新涌发。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "魔术师" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "作为和魔法本身一样古老的魔法流派,魔术师专精于随心所欲结合并塑造宇宙的能量。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "泛灵师" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -209478,48 +209807,48 @@ msgid "" msgstr "" "泛灵师是一个相对较新的魔法理论流派,它由许多注重与自然世界的联系以及和谐的古老理论融合而成。但这并不意味着泛灵师们只会被动挨打:不要忘了,自然界可是一个野蛮的地方。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "炽霜法师" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "追随大奥术师开尔文勋爵的脚步,炽霜法师们凝聚魔力,操控温度,引发炽烈爆炸,制造刺骨严寒。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "风暴塑造者" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "风暴塑造者遵循古老的奥术信条,依靠冥想与风暴和潮汐融为一体来改造这个世界。通过他们与这些力量的深入联系,他们可以请求强大力量的改变。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "科技法师" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "科技法师是现代魔法师的新兴流派,他们将神秘的奥法力量与他们对宇宙基本性质的深入了解结合为一体。他们使用科技来强化他们的魔法,反之亦然。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "塑地者" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -209528,12 +209857,12 @@ msgid "" msgstr "" "塑地者将自身思想深深地沉入地球的石头和金属之中,并与它的秘密融为一体。对于一位塑地者大师来说,法术可以像他们所创造出来的石头一样持久,而持续时间可以用地质时代来衡量。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "生化术士" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -209542,12 +209871,12 @@ msgid "" msgstr "" "生化术士着重于操纵甚至吸收血肉:自己的,以及其他活物或者死尸的血肉。大多数魔法师认为他们的法术令人恶心与不安,但没人敢质疑它们的威力,当然也没有人敢质疑他们对各种情况的适应力。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "德鲁伊" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -209556,103 +209885,103 @@ msgstr "" "德鲁伊忠心遵循自然界中重生复苏的野性传统,特别是植物界中所存在的死亡和重生的轮回。一位强大的德鲁伊和那个世界的联系将会和与人类世界的联系一样紧密。" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "魔触之魂" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "你的灵脉和魔法一同搏动。" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "一股魔法力量从体内涌动而出。" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "飞升至超自然。" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "飞升至超自然。" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "魔法在你体内。你就是魔法。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "魔力固化" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "你体内的灵脉变得更容易受你控制了,这让你能够很自然地制造出魔力结晶。" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "你的双手闪耀着魔法能量。你可以用指尖发射能够追踪敌人的火焰箭。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "精妙法术" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "由于你的灵脉已经从你的手臂上脱离,你在施法时不再需要移动你的手臂。手臂累赘不再增加法术失败几率。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "默发法术" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "你不再需要发出声音便可将自身意志强加于这个世界之上。嘴部累赘不再增加法术失败几率。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "虚弱" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "你的身体异常虚弱。力量 -2。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "魔力发光" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "你的身体将无法使用的魔力以光和热的形式释放出来,让你发出柔和的光芒。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "法力虹吸" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -209661,273 +209990,293 @@ msgstr "这是法力虹吸系列突变的法术部分。如果你学会了这个 #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "暴力能够唤醒你体内的灵脉。当你在近战中攻击命中敌人时,你就有几率获得一些魔力。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "魔力汲取" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "魔力漩涡" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "次等魔力容纳" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "你可以在你的身体里储存比正常略多的魔力。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "中等魔力容纳" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "你可以在你的身体里储存比正常多的魔力。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "高等魔力容纳" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "你可以在你的身体里储存比正常多很多的魔力。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "较低魔力容纳" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "你的身体里储存的魔力比正常略少。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "低效魔力容纳" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "你的身体里储存的魔力比正常少。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "极低魔力容纳" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "你的身体里储存的魔力比正常少很多。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "次等魔力再生" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "你的自然魔力再生比正常速度稍快。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "中等魔力再生" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "你的自然魔力再生比正常速度快。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "高等魔力再生" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "你的自然魔力再生比正常快很多。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "稍慢魔力再生" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "你的自然魔力再生比正常速度稍慢。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "缓慢魔力再生" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "你的自然魔力再生比正常速度慢。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "极慢魔力再生" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "你的自然魔力再生比正常要慢很多。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "次等魔力敏感" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "你可以感觉到你体内的魔力比正常情况更好一些,现在你能获得较高的魔力储备上限增加25%。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "中等魔力敏感" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "你可以感觉到你体内的魔力比正常情况下要好,魔力储备上限增加90%。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "高等魔力敏感" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "你可以感觉到你体内的魔力比正常情况下要好得多,现在你能获得更高的魔力储备上限增加150%。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "稍弱魔力敏感" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "你很难感觉到你体内的魔力,你的魔力储备只能发挥出部分水平,影响了你的上限。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "较弱魔力敏感" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "极弱魔力敏感" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "调试法术突变" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "将所有调试法术设置为最高级。" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "一个昂贵的魔法金属车辆框架。其他载具部件能够安装在它上面,在它四周增加新的车辆框架,就可以增加载具大小。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "飘浮碟" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "魔法车轮" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "一系列魔法能量,使飘浮碟能够移动。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "魔法车架" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "一个由纯粹魔力构成的飘浮碟,可以用来搬运物品。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "魔力" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "魔力动力" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "看见这个说明出bug了。" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "魔法门" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "一圈晦涩难懂的符号刻在金属墙上,它们那犹如异界的形状不断吸引着你的眼球。" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "魔法商店" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "魔法商店(屋顶)" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "恶魔蜘蛛巢" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "旧书店" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "沼泽" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "黑龙巢穴" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "湖畔度假村" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "湖畔度假村船屋" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "法师塔" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "森林墓地" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "魔法学院" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" -msgstr "" +msgstr "哥布林营地" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "兽人营地" #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" @@ -211173,39 +211522,39 @@ msgstr "与树木交談。" #: data/mods/Monster_Girls/categories.json #: data/mods/Monster_Girls/thresh_mutation.json msgid "Kitsune" -msgstr "" +msgstr "狐妖" #. ~ Mutation class: Kitsune mutagen_message #: data/mods/Monster_Girls/categories.json msgid "You suddenly have an indescribable craving for chicken..." -msgstr "" +msgstr "你突然对鸡肉产生了难以形容的渴望……" #. ~ Mutation class: Kitsune iv_message #: data/mods/Monster_Girls/categories.json msgid "" "Your blood runs wild with mischief and merriment as the mutagen flows " "through it." -msgstr "" +msgstr "你的血液因恶作剧和欢乐而沸腾,变异因子在其中流动。" #. ~ Mutation class: Kitsune Male memorial messsage #: data/mods/Monster_Girls/categories.json msgctxt "memorial_male" msgid "Learned what the fox says." -msgstr "" +msgstr "学会了狐狸怎么叫。" #. ~ Mutation class: Kitsune Female memorial messsage #: data/mods/Monster_Girls/categories.json msgctxt "memorial_female" msgid "Learned what the fox says." -msgstr "" +msgstr "学会了狐狸怎么叫。" #: data/mods/Monster_Girls/dreams.json msgid "You have a strange dream about foxes." -msgstr "" +msgstr "你做了一个关于狐狸的怪梦。" #: data/mods/Monster_Girls/dreams.json msgid "Your dreams give you a mischievous furry feeling." -msgstr "" +msgstr "你的梦境让你感到一种淘气又毛茸茸的感觉。" #: data/mods/Monster_Girls/dreams.json msgid "In a dream, you see a curiously harpy-like reflection of yourself." @@ -211231,12 +211580,12 @@ msgstr "在梦里,你瞥见自己身上竟然长出了一条奇怪的牛尾巴 #: data/mods/Monster_Girls/dreams.json msgid "You have a vivid dream of sneaking up to a chicken coop." -msgstr "" +msgstr "你清晰地梦到自己悄悄靠近鸡舍。" #: data/mods/Monster_Girls/dreams.json msgid "" "Whilst dreaming, you see yourself… but with a pair of fox ears on your head?" -msgstr "" +msgstr "在梦中,你看到了自己……但是你的头上多了一对狐狸耳朵?" #: data/mods/Monster_Girls/dreams.json msgid "" @@ -211266,11 +211615,11 @@ msgstr "你梦见自己变成了半人半蜘蛛的模样,这让你感到害怕 msgid "" "You vividly dream of running away from a chicken coop, your prey held by the" " neck between your teeth." -msgstr "" +msgstr "你清晰地梦到自己叼着猎物的脖子,从鸡舍里跑出来。" #: data/mods/Monster_Girls/dreams.json msgid "You vividly dream of… a wedding altar?!?" -msgstr "" +msgstr "你清晰地梦到……一个婚礼祭坛?!" #: data/mods/Monster_Girls/dreams.json msgid "" @@ -211280,17 +211629,17 @@ msgstr "一个富有魅力的三尖树送了你一束由丧尸头组成的花束 #: data/mods/Monster_Girls/dreams.json msgid "You vividly dream of committing tax fraud: the ultimate trick!" -msgstr "" +msgstr "你清晰地梦到自己犯下了偷税漏税的\"终极恶作剧\"!" #: data/mods/Monster_Girls/dreams.json msgid "" "You find yourself subconsciously moving your head from your normal pillow to" " your tail as you sleep." -msgstr "" +msgstr "你发现自己在睡觉时,不自觉地把头从普通的枕头移到了自己的尾巴上。" #: data/mods/Monster_Girls/dreams.json msgid "You dream of sharing your love of mischief with a partner." -msgstr "" +msgstr "你梦到与一个伴侣分享你对恶作剧的热爱。" #: data/mods/Monster_Girls/modinfo.json msgid "Monster Girls Mutations" @@ -211410,19 +211759,19 @@ msgstr[0] "精灵诱变血清" #: data/mods/Monster_Girls/mutagens.json msgid "Kitsune mutagen" msgid_plural "Kitsune mutagens" -msgstr[0] "" +msgstr[0] "狐妖诱变剂" #: data/mods/Monster_Girls/mutagens.json msgid "Kitsune serum" msgid_plural "Kitsune serums" -msgstr[0] "" +msgstr[0] "狐妖诱变血清" #. ~ Description for Kitsune serum #: data/mods/Monster_Girls/mutagens.json msgid "" "A super-concentrated mutagen the color of amber. You need a syringe to " "inject it… if you really want to?" -msgstr "" +msgstr "超浓缩的诱变剂,有着琥珀色。你需要一个针管来注射……如果你真的想用的话。" #. ~ Description for {'str': 'Nekomimi'} #: data/mods/Monster_Girls/thresh_mutation.json @@ -211514,7 +211863,7 @@ msgid "" "spirits, you embody their mischievous nature perfectly. Perhaps one day, " "you'll find that special partner-in-crime to live up to the other reputation" " Kitsunes have." -msgstr "" +msgstr "虽然你可能没有获得日本狐妖的神秘力量,但你完美地体现了它们淘气的本性。也许有一天,你会找到那个特别的\"共犯\",来实现狐妖的另一种名声。" #: data/mods/Mundane_Zombies/modinfo.json msgid "Mundane Zombies" @@ -212431,7 +212780,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW gyroscopic stabilizer" msgid_plural "LW gyroscopic stabilizers" -msgstr[0] "" +msgstr[0] "LW型陀螺稳定仪" #: data/mods/No_Hope/Items/gunmods.json msgid "An advanced Leadworks built-in gyroscopic stabilizer." @@ -212440,7 +212789,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW red dot sight" msgid_plural "LW red dot sights" -msgstr[0] "" +msgstr[0] "LW型红点瞄准镜" #: data/mods/No_Hope/Items/gunmods.json msgid "Built in red-dot sight for the Leadworks weapon." @@ -212449,7 +212798,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW rifle scope" msgid_plural "LW rifle scopes" -msgstr[0] "" +msgstr[0] "LW型步枪瞄准镜" #: data/mods/No_Hope/Items/gunmods.json msgid "Built in rifle scope for the Leadworks weapon." @@ -212458,7 +212807,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW ACOG scope" msgid_plural "LW ACOG scopes" -msgstr[0] "" +msgstr[0] "LW型 ACOG 瞄准镜" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -212469,7 +212818,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW holographic sight" msgid_plural "LW holographic sights" -msgstr[0] "" +msgstr[0] "LW型全息瞄准镜" #: data/mods/No_Hope/Items/gunmods.json msgid "Leadworks built-in holographic sight." @@ -212478,7 +212827,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW underbarrel laser sight" msgid_plural "LW underbarrel laser sights" -msgstr[0] "" +msgstr[0] "LW型管下激光瞄具" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -212489,7 +212838,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW forward grip" msgid_plural "LW forward grips" -msgstr[0] "" +msgstr[0] "LW型前置握把" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -212500,7 +212849,7 @@ msgstr "枪管前方的 Leadworks 内置握把可实现更强的后坐力控制 #: data/mods/No_Hope/Items/gunmods.json msgid "LW bipod" msgid_plural "LW bipods" -msgstr[0] "" +msgstr[0] "LW型双脚架" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -212512,7 +212861,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW underslung shotgun" msgid_plural "LW underslung shotguns" -msgstr[0] "" +msgstr[0] "LW型下挂式霰弹枪" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -216147,6 +216496,10 @@ msgstr "切换激活/查看" msgid "Toggle safe fuel mod" msgstr "开关节能模式" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "切换贴图" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "开关自启模式" @@ -216339,10 +216692,6 @@ msgstr "丢下物品于相邻位置" msgid "View/Activate Bionics" msgstr "查看/激活生化插件" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "切换贴图" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "查看/激活变异" @@ -222368,9 +222717,10 @@ msgstr "生化插件" msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" -"[%s]重新分配,[%s]切换标签页,[%s]开关节能模式,[%s]开关自启模式。" +"[%s]重新分配,[%s]切换标签页,[%s]开关节能模式,[%s]开关贴图可见,[%s]开关自启模式。" #: src/bionics_ui.cpp #, c-format @@ -222437,6 +222787,10 @@ msgstr "开" msgid "(incapacitated)" msgstr "(失效)" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "(隐藏)" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "(节能模式)" @@ -223270,6 +223624,10 @@ msgstr "%s 没有多余的手来穿它!" msgid "Can't wear more than one %s!" msgstr "不能再穿一件 %s!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -224268,7 +224626,7 @@ msgstr "进入冬眠。" #: src/character.cpp msgid "You enter hibernation." -msgstr "" +msgstr "你进入了冬眠状态。" #: src/character.cpp msgid "You need to be nearly full of food and water to enter hibernation." @@ -237525,7 +237883,7 @@ msgstr "* 这种弹药 可以生火。" #: src/item.cpp msgid "Weapon can't be loaded in its current state." -msgstr "" +msgstr "该武器无法在当前状态下填充弹药。" #: src/item.cpp msgid "" @@ -238971,8 +239329,13 @@ msgid "Test which group?" msgstr "测试哪一组?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" -msgstr "1000次生成结果:" +msgid "How many iterations to test?" +msgstr "测试需要多少次迭代?" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" +msgstr "%zu次生成结果:" #: src/item_factory.cpp src/trait_group.cpp #, c-format @@ -244944,11 +245307,17 @@ msgstr "在%s内" #: src/magic.cpp msgid "ERROR: Invalid energy string. Defaulting to NONE" -msgstr "错误:能量字符串无效。缺省为无" +msgstr "错误:能量字符串无效。已默认设置为 NONE" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" -msgstr "错误:伤害字符串无效,缺省为无" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "错误:'None' 伤害无效,并已废弃用于法术!请切换为 'True' (开启)" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" +msgstr "错误:伤害类型字符串无效。已默认设置为物理打击" #: src/magic.cpp #, c-format @@ -246079,6 +246448,8 @@ msgid "" "Errors for \"bash\" field in \"%s\": \"%s\":\n" "%s" msgstr "" +"错误:在\"%s\"的\"bash\"字段中发现错误:\"%s\":\n" +"%s" #: src/mapgen.cpp msgid "Wreckage" @@ -250107,11 +250478,12 @@ msgstr "%1$s 的机械臂抓住了 %2$s!" msgid "%1$s slams %2$s to the ground!" msgstr "%1$s 把 %2$s 摔倒在地!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" -msgstr "丧尸踢中了你的 %1$s 并且造成了 %2$d 点伤害……" +msgid "The %1$s kicks your %2$s for %3$d damage…" +msgstr "%1$s 踢中了你的 %2$s 并且造成了 %3$d 点伤害……" #: src/monattack.cpp #, c-format @@ -254349,7 +254721,7 @@ msgstr "默认世界" msgid "Android" msgstr "安卓" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -261978,6 +262350,11 @@ msgstr "%s 的播种机由于低温关闭了。" msgid "Your %s winks out of existence." msgstr " %s 一眨眼就消失不见了。" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "%1s 受到 %.1f 点冲击伤害。" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -262119,6 +262496,16 @@ msgstr "%s 的引擎发出了扑哧声。" msgid "Your %s is not fast enough to keep up with the %s" msgstr "你的 %s 跟不上 %s 的速度" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "%1s 撞上了 %2s!" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "%1s 撞毁了 %2s!" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -262711,11 +263098,6 @@ msgstr "你把 %s 打包成便携状态了。" msgid "You let go of %s as you fold it." msgstr "你将 %s 折叠起来,并松开了它。" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "%s(折叠)" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/lang/po/zh_TW.po b/lang/po/zh_TW.po index 53a6a3109dae..ddb1f980dc81 100644 --- a/lang/po/zh_TW.po +++ b/lang/po/zh_TW.po @@ -8,14 +8,15 @@ # 摸鱼哥, 2024 # Coolthulhu , 2024 # Zarathustra, 2024 -# hiro9888 , 2024 -# Jeremy Wu , 2024 +# H_Hedgehog, 2025 +# hiro9888 , 2025 +# Jeremy Wu , 2025 # msgid "" msgstr "" "Project-Id-Version: cataclysm-bn\n" -"POT-Creation-Date: 2024-12-28 01:16+0000\n" -"Last-Translator: Jeremy Wu , 2024\n" +"POT-Creation-Date: 2025-01-18 01:15+0000\n" +"Last-Translator: Jeremy Wu , 2025\n" "Language-Team: Chinese (Taiwan) (https://app.transifex.com/bn-team/teams/113585/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -7723,6 +7724,17 @@ msgstr "调试用透视" msgid "You can see through everything!" msgstr "你可以看透一切!" +#: data/json/effects.json +msgid "Irradiation triangle" +msgstr "辐射三角" + +#. ~ Description of effect 'Irradiation triangle'. +#: data/json/effects.json +msgid "" +"This irradiates you every 15 minutes while aboveground so long as you have " +"it in your inventory!" +msgstr "只要你将它放在物品栏中,并且身处地面上,它每隔15分钟就会对你施加辐射!" + #: data/json/effects.json msgid "Took Xanax" msgstr "吃了抗焦慮藥" @@ -11054,7 +11066,7 @@ msgstr "啟動" #: data/mods/Aftershock/items/tool_armor.json #: data/mods/Aftershock/items/tools.json #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json -#: data/mods/Magiclysm/items/enchanted_misc.json src/iuse.cpp +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json src/iuse.cpp msgid "Turn off" msgstr "關閉" @@ -11502,75 +11514,91 @@ msgstr "彈匣" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "AMMO" msgstr "彈藥" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/mods/Magiclysm/qualities.json +#: data/json/item_category.json data/mods/Magical_Nights/qualities.json msgid "WEAPONS" msgstr "武器" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json -msgid "TOOLS" -msgstr "工具" +#: data/json/item_category.json +msgid "OTHER TOOLS" +msgstr "其他工具" + +#: data/json/item_category.json +msgid "ENTRY TOOLS" +msgstr "破门工具" + +#: data/json/item_category.json +msgid "WORKSHOP TOOLS" +msgstr "工作坊工具" + +#: data/json/item_category.json +msgid "COOKING TOOLS" +msgstr "烹饪工具" + +#: data/json/item_category.json +msgid "CHEMISTRY TOOLS" +msgstr "化学工具" + +#: data/json/item_category.json +msgid "FARM TOOLS" +msgstr "农用工具" + +#: data/json/item_category.json +msgid "DEPLOYABLES" +msgstr "可部署设备" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/recycle_center.json +#: data/mods/No_Hope/Mapgen/recycle_center.json +msgid "ELECTRONICS" +msgstr "電子" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CLOTHING" msgstr "衣物" #. ~ Crafting recipes category name #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FOOD" msgstr "食物" +#: data/json/item_category.json +msgid "COOKING INGREDIENTS" +msgstr "烹饪原料" + #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "DRUGS" msgstr "藥物" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "BOOKS" msgstr "書籍" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPELLBOOKS" msgstr "咒语书" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json -msgid "MAPS" -msgstr "地圖" - #. ~ Crafting recipes subcategory of 'WEAPON' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "MODS" msgstr "模組" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "MUTAGENS" msgstr "突變劑" -#: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json src/character_display.cpp +#: data/json/item_category.json src/character_display.cpp msgid "BIONICS" msgstr "生化插件" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "VEHICLE PARTS" msgstr "車輛零件" @@ -11584,51 +11612,89 @@ msgstr "車輛零件" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "OTHER" msgstr "其他" #. ~ Crafting recipes subcategory of 'CHEM' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "FUEL" msgstr "燃料" #. ~ Crafting recipes subcategory of 'FOOD' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SEEDS" msgstr "種子" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CHEMICAL STUFF" msgstr "化學製品" #. ~ Sign #: data/json/item_category.json data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json #: data/mods/No_Hope/Mapgen/recycle_center.json msgid "BATTERIES" msgstr "電池" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "SPARE PARTS" msgstr "備用零件" +#: data/json/item_category.json +msgid "METAL SCRAP" +msgstr "金属废料" + +#: data/json/item_category.json +msgid "ELECTRONIC SCRAP" +msgstr "电子废料" + +#: data/json/item_category.json +msgid "FABRICS" +msgstr "织物" + +#: data/json/item_category.json +msgid "WOOD SCRAP" +msgstr "木头废料" + +#: data/json/item_category.json +msgid "PLASTIC SCRAP" +msgstr "塑料废料" + +#: data/json/item_category.json +msgid "CERAMIC SCRAP" +msgstr "陶瓷废料" + +#: data/json/item_category.json +msgid "GLASS SCRAP" +msgstr "玻璃废料" + +#: data/json/item_category.json +msgid "VALUABLES" +msgstr "贵重物品" + +#. ~ Sign +#: data/json/item_category.json data/json/mapgen/landscaping_supply.json +#: data/mods/No_Hope/Mapgen/landscaping_supply.json +msgid "ROCKS" +msgstr "石頭" + +#: data/json/item_category.json +msgid "SOIL" +msgstr "土壤" + #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/item_category.json data/json/recipes/recipes.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "CONTAINERS" msgstr "容器" #: data/json/item_category.json -#: data/mods/Item_Category_Overhaul/categories.json msgid "ARTIFACTS" msgstr "神器" +#: data/json/item_category.json +msgid "MAPS" +msgstr "地圖" + #: data/json/item_category.json msgid "ITEMS WORN" msgstr "穿戴中的物品" @@ -12371,12 +12437,12 @@ msgstr "物資:屍體" msgid "Destination for corpses" msgstr "存放屍體的位置。" -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Loot: Maps" msgstr "战利品:地图" #. ~ Description for Loot: Maps -#: data/json/loot_zones.json data/mods/Item_Category_Overhaul/zones.json +#: data/json/loot_zones.json msgid "Destination for maps." msgstr "所有地图的分类放置区域。" @@ -12418,6 +12484,177 @@ msgid "" "action." msgstr "使用\"整理战利品\"指令将不会整理该区域内的收藏物品。" +#: data/json/loot_zones.json +msgid "Loot: Other Tools" +msgstr "其他工具区" + +#. ~ Description for Loot: Other Tools +#: data/json/loot_zones.json +msgid "Destination for other tools." +msgstr "其他工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Entry Tools" +msgstr "破门工具区" + +#. ~ Description for Loot: Entry Tools +#: data/json/loot_zones.json +msgid "Destination for entry tools." +msgstr "破门工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Workshop Tools" +msgstr "工作坊工具区" + +#. ~ Description for Loot: Workshop Tools +#: data/json/loot_zones.json +msgid "Destination for workshop tools." +msgstr "工作坊工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Tools" +msgstr "烹饪工具区" + +#. ~ Description for Loot: Cooking Tools +#: data/json/loot_zones.json +msgid "Destination for cooking tools." +msgstr "烹饪工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Chemistry Tools" +msgstr "化学工具区" + +#. ~ Description for Loot: Chemistry Tools +#: data/json/loot_zones.json +msgid "Destination for chemistry tools." +msgstr "化学工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Farm Tools" +msgstr "农用工具区" + +#. ~ Description for Loot: Farm Tools +#: data/json/loot_zones.json +msgid "Destination for farm tools." +msgstr "农用工具的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Deployables" +msgstr "可部署设备区" + +#. ~ Description for Loot: Deployables +#: data/json/loot_zones.json +msgid "Destination for deployable objects." +msgstr "可部署设备的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Electronics" +msgstr "电子产品区" + +#. ~ Description for Loot: Electronics +#: data/json/loot_zones.json +msgid "Destination for electronics." +msgstr "电子产品的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Cooking Ingredients" +msgstr "烹饪原料区" + +#. ~ Description for Loot: Cooking Ingredients +#: data/json/loot_zones.json +msgid "Destination for cooking ingredients." +msgstr "烹饪原料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Metal" +msgstr "金属废料区" + +#. ~ Description for Loot: Scrap Metal +#: data/json/loot_zones.json +msgid "Destination for scrap metal." +msgstr "金属废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Electronics" +msgstr "电子废料区" + +#. ~ Description for Loot: Scrap Electronics +#: data/json/loot_zones.json +msgid "Destination for scrap electronics." +msgstr "电子废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Fabric" +msgstr "织物废料区" + +#. ~ Description for Loot: Scrap Fabric +#: data/json/loot_zones.json +msgid "Destination for scrap fabric." +msgstr "织物废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Wood" +msgstr "木头废料区" + +#. ~ Description for Loot: Scrap Wood +#: data/json/loot_zones.json +msgid "Destination for scrap wood." +msgstr "木头废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Plastic" +msgstr "塑料废料区" + +#. ~ Description for Loot: Scrap Plastic +#: data/json/loot_zones.json +msgid "Destination for scrap plastic." +msgstr "塑料废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Ceramics" +msgstr "陶瓷废料区" + +#. ~ Description for Loot: Scrap Ceramics +#: data/json/loot_zones.json +msgid "Destination for scrap ceramics." +msgstr "陶瓷废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Scrap Glass" +msgstr "玻璃废料区" + +#. ~ Description for Loot: Scrap Glass +#: data/json/loot_zones.json +msgid "Destination for scrap glass." +msgstr "玻璃废料的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Valuables" +msgstr "贵重物品区" + +#. ~ Description for Loot: Valuables +#: data/json/loot_zones.json +msgid "Destination for valuables." +msgstr "贵重物品的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Rocks" +msgstr "石头区" + +#. ~ Description for Loot: Rocks +#: data/json/loot_zones.json +msgid "Destination for rocks and minerals." +msgstr "石头和矿物的放置区域。" + +#: data/json/loot_zones.json +msgid "Loot: Soil" +msgstr "土壤区" + +#. ~ Description for Loot: Soil +#: data/json/loot_zones.json +msgid "Destination for soil." +msgstr "土壤的放置区域。" + #: data/json/loot_zones.json msgid "No Auto Pickup" msgstr "關閉自動撿取" @@ -12934,7 +13171,7 @@ msgstr "" "\n" "命中按智力的 25% 增加,同时按敏捷的 25% 减少。 " -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Eskrima" msgstr "菲律賓劍棍術" @@ -12973,7 +13210,7 @@ msgstr "" "\n" "命中+2。" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Fencing" msgstr "擊劍" @@ -13014,7 +13251,7 @@ msgstr "" "被格挡的伤害按敏捷的 50% 减少。" #: data/json/martialarts.json data/json/items/book/martial.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "戰鬥之花" @@ -13203,7 +13440,7 @@ msgstr "" "防御伤害减少25%的力量值。 \n" "+1.0 闪避技能。" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Krav Maga" msgstr "以色列格鬥術" @@ -13341,7 +13578,7 @@ msgstr "" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json #: data/mods/CRT_EXPANSION/martial/CRT_martial_arts_expansion.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Medieval Swordsmanship" msgstr "中世紀劍術" @@ -13424,7 +13661,7 @@ msgstr "" "\n" "格挡后的伤害按力量的 50% 减少。" -#: data/json/martialarts.json data/mods/Magiclysm/martialarts.json +#: data/json/martialarts.json data/mods/Magical_Nights/martialarts.json msgid "Ninjutsu" msgstr "忍術" @@ -13643,7 +13880,7 @@ msgstr "" "持续 1 回合。" #: data/json/martialarts.json data/mods/Aftershock/martialarts.json -#: data/mods/Magiclysm/martialarts.json +#: data/mods/Magical_Nights/martialarts.json msgid "Silat" msgstr "印尼刀術" @@ -14948,7 +15185,7 @@ msgid "Resin" msgstr "樹脂" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json src/veh_interact.cpp +#: data/mods/Magical_Nights/materials.json src/veh_interact.cpp msgid "dented" msgstr "凹陷的" @@ -14957,22 +15194,22 @@ msgid "gouged" msgstr "破洞的" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "scratched" msgstr "刮傷的" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "cut" msgstr "割傷的" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "cracked" msgstr "破裂的" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shattered" msgstr "粉碎的" @@ -14985,7 +15222,7 @@ msgid "bent" msgstr "彎曲的" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "smashed" msgstr "砸爛的" @@ -14997,7 +15234,7 @@ msgstr "損毀" msgid "Biosilicified Chitin" msgstr "生物矽化甲殼" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "chipped" msgstr "切斷的" @@ -15010,7 +15247,7 @@ msgid "Brass" msgstr "彈殼" #: data/json/materials.json data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "marked" msgstr "刮痕的" @@ -15028,7 +15265,7 @@ msgstr "硬纸板" #: data/json/materials.json data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/items/materials.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "ripped" msgstr "扯破的" @@ -15037,12 +15274,12 @@ msgid "torn" msgstr "撕裂的" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "shredded" msgstr "破碎的" #: data/json/materials.json data/json/obsoletion/uncategorized.json -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "tattered" msgstr "破爛的" @@ -15102,7 +15339,7 @@ msgstr "肉" msgid "bruised" msgstr "刮傷的" -#: data/json/materials.json data/mods/Magiclysm/materials.json +#: data/json/materials.json data/mods/Magical_Nights/materials.json msgid "sliced" msgstr "割傷的" @@ -15524,7 +15761,7 @@ msgstr "自動" #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/CrazyCataclysm/crazy_items.json #: data/mods/DinoMod/items/laser_items.json -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/monster_weapons.json #: data/mods/Modular_Turrets/roboguns.json data/mods/No_Hope/Items/guns.json msgctxt "gun_type_type" msgid "rifle" @@ -19828,12 +20065,12 @@ msgid "" "brain. You can't tell which one is worse though." msgstr "現在不是抱怨律師費太少的時候了, 你的客戶要吃了你的腦子。但是, 你不知道到底哪個比較糟。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Priest" msgstr "牧師" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Priest" msgstr "牧師" @@ -19858,18 +20095,18 @@ msgid "" "you." msgstr "當大災變來臨時。你盡了你的全力保護你教區內的信徒, 但是顯然, 只是祈禱是不夠的。現在他們都死了, 你應該要找到更切實的東西來保護自己。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Kannushi" msgstr "神主" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Kannushi" msgstr "神主" #. ~ Profession (male Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19878,7 +20115,7 @@ msgid "" msgstr "你是一間神社的維護者, 平時負責表演儀式與祭祀的任務。你比較希望那些死者只有靈魂來到神社, 而不是連同它們腐爛的屍體也一起帶來。" #. ~ Profession (female Kannushi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were one of the maintainers of a Shinto shrine, performing rituals and " @@ -19886,12 +20123,12 @@ msgid "" "your shrine, and not their rotting corpses." msgstr "你是一間神社的維護者, 平時負責表演儀式與祭祀的任務。你比較希望那些死者只有靈魂來到神社, 而不是連同它們腐爛的屍體也一起帶來。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Imam" msgstr "阿訇" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Mourchida" msgstr "莫悉達" @@ -19920,18 +20157,18 @@ msgstr "" "你花費了許多時間在當地的清真寺, 習得先知與古蘭經上之言, 並帶領導當地的信徒們禱告。那時信徒們自各處來到這聆聽你的講解, " "現在他們則是為了吃掉你的大腦而來。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Rabbi" msgstr "拉比" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Rabbi" msgstr "拉比" #. ~ Profession (male Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " @@ -19939,19 +20176,19 @@ msgid "" msgstr "当灾变袭来时,你正在庙里和你的信徒们举行者宗教典礼。现在,你相信,救世主弥赛亚只能是你自己!" #. ~ Profession (female Rabbi) description -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You were celebrating with your flock in the temple when the Cataclysm " "struck. You sure could use a messiah right now!" msgstr "当灾变袭来时,你正在庙里和你的信徒们举行者宗教典礼。现在,你相信,救世主弥赛亚只能是你自己!" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Guru" msgstr "古魯" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Guru" msgstr "古魯" @@ -19974,12 +20211,12 @@ msgid "" "what to do about the ravenous undead." msgstr "你花了許多年在世界各地旅行, 變得越來越睿智與博學。正常情況下, 你可以回答任何問題, 但即使是你也不太清楚該如何對付這些飢渴的不死者。" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Preacher" msgstr "傳教士" -#: data/json/professions.json data/mods/Magiclysm/professions.json +#: data/json/professions.json data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Preacher" msgstr "傳教士" @@ -20760,15 +20997,15 @@ msgstr "你有一份替機器編寫程式的工作,像全自動街道清潔機 #: data/json/professions.json msgctxt "profession_male" -msgid "Skater Boy" -msgstr "滑板男孩" +msgid "Skater Boy (Rollerblades)" +msgstr "轮滑仔" #: data/json/professions.json msgctxt "profession_female" -msgid "Skater Girl" -msgstr "滑板女孩" +msgid "Skater Girl (Rollerblades)" +msgstr "轮滑妹" -#. ~ Profession (male Skater Boy) description +#. ~ Profession (male Skater Boy (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_male" msgid "" @@ -20776,7 +21013,7 @@ msgid "" "can't roll." msgstr "你愛玩滑板! 至少現在的大人們都不會叫你不准滑了。" -#. ~ Profession (female Skater Girl) description +#. ~ Profession (female Skater Girl (Rollerblades)) description #: data/json/professions.json msgctxt "prof_desc_female" msgid "" @@ -20784,6 +21021,34 @@ msgid "" "can't roll." msgstr "你愛玩滑板! 至少現在的大人們都不會叫你不准滑了。" +#: data/json/professions.json +msgctxt "profession_male" +msgid "Skater Boy (Skateboard)" +msgstr "滑板仔" + +#: data/json/professions.json +msgctxt "profession_female" +msgid "Skater Girl (Skateboard)" +msgstr "滑板妹" + +#. ~ Profession (male Skater Boy (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_male" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "你超爱轮滑!你踩着滑板的时间比下地走路要多的多。一切都变得一团糟,但至少现在那些烦人的大人们不会再告诉你哪里不准滑了。" + +#. ~ Profession (female Skater Girl (Skateboard)) description +#: data/json/professions.json +msgctxt "prof_desc_female" +msgid "" +"You love to skate! You've probably spent more time on a skateboard than " +"off. Things have gotten pretty bad, but at least the grown-ups aren't " +"telling you where you can't roll." +msgstr "你超爱轮滑!你踩着滑板的时间比下地走路要多的多。一切都变得一团糟,但至少现在那些烦人的大人们不会再告诉你哪里不准滑了。" + #: data/json/professions.json msgctxt "profession_male" msgid "Juvenile Delinquent" @@ -28043,7 +28308,6 @@ msgid "awl" msgstr "錐子" #: data/json/tool_qualities.json data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "curved needle" msgid_plural "curved needles" msgstr[0] "彎針" @@ -28159,7 +28423,6 @@ msgstr "卸彈" #: data/json/tool_qualities.json #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "anvil" msgid_plural "anvils" msgstr[0] "鐵砧" @@ -28223,7 +28486,6 @@ msgid_plural "none" msgstr[0] "無" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bubble wrap" msgid_plural "bubble wraps" msgstr[0] "泡泡紙" @@ -28243,21 +28505,18 @@ msgid "Crunch!" msgstr "嘎嚓!" #: data/json/traps.json data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cot" msgid_plural "cots" msgstr[0] "行軍床" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "funnel" msgid_plural "funnels" msgstr[0] "集雨器" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift funnel" msgid_plural "makeshift funnels" msgstr[0] "粗製集雨器" @@ -28275,8 +28534,7 @@ msgid "microlab shifting hall" msgstr "微型实验室机关走廊" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/traps.json +#: data/mods/Magical_Nights/traps.json msgid "bear trap" msgid_plural "bear traps" msgstr[0] "捕獸夾" @@ -28308,13 +28566,11 @@ msgid "tripwire" msgstr "絆索" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift perimeter alarm" msgid_plural "makeshift perimeter alarms" msgstr[0] "自制周边警报器" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crossbow trap" msgid_plural "crossbow traps" msgstr[0] "十字弓陷阱" @@ -28355,7 +28611,6 @@ msgid "Swinnng!" msgstr "咻!" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "land mine" msgid_plural "land mines" msgstr[0] "地雷" @@ -28372,7 +28627,6 @@ msgid "buried land mine" msgstr "埋藏的地雷" #: data/json/traps.json data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teleport pad" msgid_plural "teleport pads" msgstr[0] "傳送板" @@ -28416,7 +28670,6 @@ msgid "ledge" msgstr "窗台" #: data/json/traps.json data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "booby trap" msgid_plural "booby traps" msgstr[0] "詭雷" @@ -28427,14 +28680,12 @@ msgstr "玻璃坑" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather funnel" msgid_plural "leather funnels" msgstr[0] "皮製漏斗" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "birchbark funnel" msgid_plural "birchbark funnels" msgstr[0] "樺皮漏斗" @@ -28445,7 +28696,6 @@ msgstr "降流管漏斗" #: data/json/traps.json data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal funnel" msgid_plural "metal funnels" msgstr[0] "金屬集雨器" @@ -28809,7 +29059,8 @@ msgstr "大雨" msgid "Thunder Storm" msgstr "雷雨" -#: data/json/weather_type.json data/mods/Magiclysm/Spells/stormshaper.json +#: data/json/weather_type.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Storm" msgstr "暴雨" @@ -28851,6 +29102,18 @@ msgid "" msgstr "" "这是一个实心立方体,重量比起它的尺寸所预估得要重得多。当你盯着它看时,你的目光会被它不断吸引,直到你仿佛从天而降般看见你和你周围环境的俯视图。" +#: data/json/artifact/premade_artifacts.json +msgid "The irradiation triangle" +msgid_plural "The irradiation triangles" +msgstr[0] "辐射三角" + +#. ~ Description for {'str': 'The irradiation triangle'} +#: data/json/artifact/premade_artifacts.json +msgid "" +"Who so ever dares to hold this triangle inside inventory when not " +"underground shall gain 1 to 3 irradiation every 10 minutes." +msgstr "任何胆敢将此三角形物品放在物品栏中而不身处地下的人,每10分钟都会获得1到3点辐射值。" + #: data/json/artifact/premade_artifacts.json msgid "chaos dagger" msgid_plural "chaos daggers" @@ -28927,7 +29190,8 @@ msgstr "一个大型笨重的金属装置,用于冷却大面积区域,现在 #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "metal screeching!" msgstr "金屬嘎嘎聲!" @@ -28957,7 +29221,8 @@ msgstr "金屬嘎嘎聲!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/mapgen/city_blocks/urban_37_office_tower_beehive.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/pride_flags/furniture.json msgid "clang!" msgstr "鐺!" @@ -29301,7 +29566,6 @@ msgstr "一个用于清洗衣物的洗衣机,已停电,无法运行。" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/fake.json data/json/items/furniture.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "oven" msgid_plural "ovens" msgstr[0] "烤箱" @@ -29408,8 +29672,9 @@ msgstr "一块与该建筑电网相连接的风力发电机。" #: data/json/furniture_and_terrain/terrain-roofs.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/json/obsoletion/uncategorized.json data/mods/Magiclysm/terrain.json -#: data/mods/No_Hope/terrain.json data/mods/pride_flags/furniture.json +#: data/json/obsoletion/uncategorized.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/pride_flags/furniture.json msgid "whack!" msgstr "嘩!" @@ -29653,7 +29918,7 @@ msgstr "一个连接到电网的便携式食物脱水机,用以加工并长期 #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/obsoletion/uncategorized.json #: data/mods/CRT_EXPANSION/constructions/crt_terrain.json -#: data/mods/Magiclysm/terrain.json data/mods/pride_flags/furniture.json +#: data/mods/Magical_Nights/terrain.json data/mods/pride_flags/furniture.json #: src/mapdata.cpp msgid "crunch!" msgstr "匡噹!" @@ -29681,7 +29946,7 @@ msgstr "匡噹!" #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/furniture_and_terrain/terrain-recreational.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "whump." msgstr "呼。" @@ -29800,7 +30065,6 @@ msgstr "你接通了冰箱的电源。" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "refrigerator" msgid_plural "refrigerators" msgstr[0] "冰箱" @@ -29859,7 +30123,6 @@ msgstr "你开启了冰柜的电源。" #: data/json/furniture_and_terrain/furniture-appliances.json #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "freezer" msgid_plural "freezers" msgstr[0] "冰櫃" @@ -30179,7 +30442,7 @@ msgstr "顶灯" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-walls.json #: data/json/furniture_and_terrain/terrain-windows.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/ballistics.cpp msgid "glass breaking!" msgstr "玻璃破碎聲!" @@ -30266,7 +30529,7 @@ msgstr "一个连接电网的灯光开关,这个是关闭的。" #: data/json/furniture_and_terrain/terrain-doors.json #: data/json/furniture_and_terrain/terrain-fences-gates.json #: data/mods/Aftershock/items/furniture.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json src/mapdata.h #: src/vehicle_move.cpp msgid "smash!" @@ -30293,7 +30556,7 @@ msgstr "碰!" #: data/json/furniture_and_terrain/terrain-windows.json #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/terrain.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/terrain.json data/mods/No_Hope/terrain.json msgid "whump!" msgstr "呼!" @@ -30462,7 +30725,7 @@ msgstr "雕刻石像" #: data/json/furniture_and_terrain/furniture-graves.json #: data/json/furniture_and_terrain/furniture-rural.json #: data/json/furniture_and_terrain/furniture-terrains.json -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json #: data/mods/desert_region/desert_terrain.json msgid "thump." msgstr "咚。" @@ -30799,7 +31062,7 @@ msgstr "一个在室内靠墙砌的生火取暖用的设备。" #: data/json/obsoletion/uncategorized.json #: data/mods/Aftershock/maps/terrain.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/furniture.json data/mods/No_Hope/terrain.json +#: data/mods/Magical_Nights/furniture.json data/mods/No_Hope/terrain.json #: src/map.cpp msgid "crash!" msgstr "轟隆!" @@ -30816,7 +31079,6 @@ msgstr "柴爐用於加熱和烹飪。比火堆更有效率。" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brazier" msgid_plural "braziers" msgstr[0] "火盆" @@ -30828,7 +31090,6 @@ msgstr "一个金属盆,用于安全的燃烧物品。" #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hobo stove" msgid_plural "hobo stoves" msgstr[0] "輕型柴爐" @@ -30842,7 +31103,6 @@ msgstr "小型的简易木制火炉,用金属罐或大小合适的类似容器 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (200L)" msgid_plural "fire barrels (200L)" msgstr[0] "火桶(200公升)" @@ -30863,7 +31123,6 @@ msgstr "用来烧火的大金属桶。它的桶壁上有多个孔以保障空气 #: data/json/furniture_and_terrain/furniture-fireplaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire barrel (100L)" msgid_plural "fire barrels (100L)" msgstr[0] "火桶(100公升)" @@ -31009,7 +31268,6 @@ msgstr "一种生长在淡水体表面的可爱的花。传统上与许多东方 #: data/json/furniture_and_terrain/furniture-flora.json #: data/json/items/generic.json data/json/items/comestibles/seed.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "sunflower" msgid_plural "sunflowers" msgstr[0] "向日葵" @@ -31871,7 +32129,6 @@ msgstr "一个带有几个水龙头的机器,可以提供干净的水。也被 #: data/json/furniture_and_terrain/furniture-plumbing.json #: data/json/items/tool/cooking.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "water purifier" msgid_plural "water purifiers" msgstr[0] "淨水器" @@ -32286,7 +32543,6 @@ msgstr "凳子" #: data/json/furniture_and_terrain/furniture-seats.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp chair" msgid_plural "camp chairs" msgstr[0] "露營椅" @@ -32426,7 +32682,6 @@ msgstr "嘩。" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mattress" msgid_plural "mattresses" msgstr[0] "床墊" @@ -32450,7 +32705,6 @@ msgstr "劈哩!" #: data/json/furniture_and_terrain/furniture-sleep.json #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "down mattress" msgid_plural "down mattresses" msgstr[0] "羽絨床墊" @@ -32991,9 +33245,21 @@ msgid "" " heavy things." msgstr "堅固的工作台,由金屬製成。它非常適合用來製作大型且沉重的東西。" +#: data/json/furniture_and_terrain/furniture-surfaces.json +msgid "Robotic workbench" +msgstr "机器人工作台" + +#. ~ Description for Robotic workbench +#. ~ Description for {'str': 'robobench', 'str_pl': 'robobenches'} +#: data/json/furniture_and_terrain/furniture-surfaces.json +#: data/json/items/vehicle/tables.json +msgid "" +"Having upgraded the basic workbench, you've now created a robotic workbench " +"that helps speed up crafting." +msgstr "在升级了基础工作台后,您现在已经创建了一个机器人工作台,可以帮助加快制作速度。" + #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather tarp" msgid_plural "leather tarps" msgstr[0] "皮革篷布" @@ -33026,7 +33292,6 @@ msgstr "沙沙~" #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fiber mat" msgid_plural "fiber mats" msgstr[0] "植物纖維墊" @@ -33041,7 +33306,6 @@ msgstr "由布料編織而成的大型墊子, 可用於代替野餐地毯, 但 #: data/json/furniture_and_terrain/furniture-surfaces.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tourist table" msgid_plural "tourist tables" msgstr[0] "旅遊桌" @@ -33539,7 +33803,6 @@ msgstr "用於金屬加工。" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "still" msgid_plural "stills" msgstr[0] "蒸餾器" @@ -33553,7 +33816,6 @@ msgstr "釀造和化學的重要組成部分,可以精煉液體混合物。" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal kiln" msgid_plural "charcoal kilns" msgstr[0] "碳化爐" @@ -33568,7 +33830,6 @@ msgstr "一座石製碳化爐, 設計用於無氧狀態下將木材和有機材 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "filled charcoal kiln" msgid_plural "filled charcoal kilns" msgstr[0] "已裝填的碳化爐" @@ -33632,7 +33893,6 @@ msgstr "一個特製的用來煙燻食物的架子, 可以讓食物更好吃且 #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal smoking rack" msgid_plural "metal smoking racks" msgstr[0] "金屬煙燻架" @@ -33669,7 +33929,6 @@ msgstr "專門用來燒製陶器和磚塊的窯。" #: data/json/furniture_and_terrain/furniture-tools.json #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stepladder" msgid_plural "stepladders" msgstr[0] "梯子" @@ -35158,7 +35417,7 @@ msgstr "高质量且坚固的方格地板,以减少滑倒和摔倒的风险, #: data/json/furniture_and_terrain/terrain-liquids.json #: data/json/furniture_and_terrain/terrain-traps.json #: data/json/furniture_and_terrain/terrain-walls.json -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json #: data/mods/desert_region/desert_terrain.json msgid "thump" msgstr "咚" @@ -35541,7 +35800,6 @@ msgstr "泥土地,看来土壤适合耕种。也可以开发建设项目。" #: data/json/furniture_and_terrain/terrain-floors-indoor.json #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sand" msgid_plural "sand" msgstr[0] "沙子" @@ -35797,7 +36055,6 @@ msgstr "一段现浇混凝土路面。因为缺乏维护而毁于冻胀和大裂 #: data/json/furniture_and_terrain/terrain-floors-outdoors.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "concrete" msgid_plural "concrete" msgstr[0] "混凝土" @@ -37456,7 +37713,6 @@ msgstr "採集地下水的深井。安裝的水泵能抽取地下水。" #: data/json/furniture_and_terrain/terrain-manufactured.json #: data/json/items/furniture.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plutonium generator" msgid_plural "plutonium generators" msgstr[0] "钚反应堆" @@ -38098,7 +38354,6 @@ msgstr "交通标志,用于指示水平铁路交叉口——如果火车还在 #: data/json/furniture_and_terrain/terrain-railroads.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small railroad track" msgid_plural "small railroad tracks" msgstr[0] "窄軌軌道" @@ -39134,7 +39389,6 @@ msgstr "一面完全由蜡制成的墙。" #: data/json/overmap/overmap_terrain/overmap_terrain_microlab.json #: data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json #: data/mods/CheesyInnaWoodsFixes/mining/furniture_and_terrain/terrain_walls_bn.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "solid rock" msgstr "堅硬的岩石" @@ -40062,7 +40316,6 @@ msgstr "这是一个下水井。沉重的铁制井盖盖在通往隐藏在地下 #: data/json/furniture_and_terrain/terrain-zlevel-transitions.json #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "manhole cover" msgid_plural "manhole covers" msgstr[0] "人孔蓋" @@ -40238,6 +40491,42 @@ msgstr "向上铁轨(底部)" msgid "The lower end of rail track leading up." msgstr "一段通往上层的铁轨底部。" +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (high end)" +msgstr "向下混凝土坡(顶部)" + +#. ~ Description for concrete ramp down (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading down." +msgstr "一段通往下层的混凝土斜坡顶部。" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp down (low end)" +msgstr "向下混凝土坡(底部)" + +#. ~ Description for concrete ramp down (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading down." +msgstr "一段通往下层的混凝土斜坡底部。" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (high end)" +msgstr "向上混凝土坡(顶部)" + +#. ~ Description for concrete ramp up (high end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The upper end of a concrete ramp leading up." +msgstr "一段通往上层的混凝土斜坡顶部。" + +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "concrete ramp up (low end)" +msgstr "向上混凝土坡(底部)" + +#. ~ Description for concrete ramp up (low end) +#: data/json/furniture_and_terrain/terrain-zlevel-transitions.json +msgid "The lower end of a concrete ramp leading up." +msgstr "一段通往上层的混凝土斜坡底部。" + #. ~ Message for terrain 'None' #: data/json/furniture_and_terrain/terrain-zztesting.json msgid "You attempt to use the console, but it's no use." @@ -40299,7 +40588,6 @@ msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "你看到這個的話就是有 BUG。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "thread" msgid_plural "thread" msgstr[0] "縫線" @@ -40310,7 +40598,6 @@ msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "一小段棉線, 能夠補充針線包。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sinew" msgid_plural "sinews" msgstr[0] "筋腱" @@ -40321,7 +40608,6 @@ msgid "A tough sinew cut from a corpse, usable as thread." msgstr "從屍體切割下的堅韌的筋, 可當做縫線。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plant fiber" msgid_plural "plant fibers" msgstr[0] "植物纖維" @@ -40332,7 +40618,6 @@ msgid "Tough thin fiber, taken from a plant. Can be used as thread." msgstr "從植物取出的堅韌纖維。能夠用來當作縫線。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "yarn" msgid_plural "yarn" msgstr[0] "毛線" @@ -40353,7 +40638,6 @@ msgid "A cleansing agent made into bars." msgstr "做成塊狀的肥皂。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "duct tape" msgid_plural "duct tapes" msgstr[0] "強力膠帶" @@ -40364,7 +40648,6 @@ msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "一捆非常強韌的膠帶。用途很多。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rolling paper" msgid_plural "rolling papers" msgstr[0] "捲菸紙" @@ -40375,7 +40658,6 @@ msgid "These are thin paper strips intended for the rolling of cigarettes." msgstr "一張用來捲香煙的薄紙。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper wire" msgid_plural "copper wires" msgstr[0] "銅線" @@ -40420,7 +40702,6 @@ msgid_plural "watery plutonium slurry" msgstr[0] "稀釋鈽漿液" #: data/json/items/ammo.json data/json/snippets/music.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rock" msgid_plural "rocks" msgstr[0] "石頭" @@ -40644,7 +40925,6 @@ msgid "A chunk of useful rubber, can be molded easily." msgstr "一大塊有用的橡膠,可以很容易地塑型。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper" msgid_plural "coppers" msgstr[0] "銅塊" @@ -40685,7 +40965,6 @@ msgid "" msgstr "藉由緩慢地燃燒木頭產生的易燃碳材。能用於需要純淨、高溫火焰的物品製作配方。也可以用於過濾, 去除空氣和水中的汙染物。" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "碳化鈣預混料" @@ -40887,7 +41166,6 @@ msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "氧氣和氮氣以特定比例混和,用於潛水。" #: data/json/items/ammo.json data/json/items/ammo_types.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tinder" msgid_plural "tinder" msgstr[0] "火種" @@ -40918,7 +41196,6 @@ msgid "A metal die used to play various role-playing games" msgstr "這金屬骰子用於各種角色扮演遊戲" #: data/json/items/ammo.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bronze" msgid_plural "bronze" msgstr[0] "青銅" @@ -41233,7 +41510,6 @@ msgstr "電磁鋼筋拋射物" #: data/json/items/ammo_types.json data/json/items/tool/electronics.json #: data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "UPS" msgid_plural "UPS's" msgstr[0] "UPS" @@ -43161,7 +43437,6 @@ msgid "" msgstr "少量純硫磺。主要用於製作電池酸液,也可用於當爆裂物的燃料。燃燒時會產生酸性煙霧,對細菌跟人體有致命的傷害,氧化後可製造紙張漂白劑。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of sulfur" msgid_plural "chunks of sulfur" msgstr[0] "硫磺塊" @@ -43174,7 +43449,6 @@ msgid "" msgstr "一块纯硫磺。打碎后可以使用。将其扔向某人可能会使他们的眼睛受到严重灼伤。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cement" msgid_plural "cement" msgstr[0] "水泥" @@ -43188,7 +43462,6 @@ msgid "" msgstr "波特蘭很可能早已不復存在, 但它的回憶仍存於水泥之中。這種普遍存在的粘合劑可用於各種先進砌築, 只需要加水。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "limestone" msgid_plural "limestone" msgstr[0] "石灰石" @@ -43202,7 +43475,6 @@ msgid "" msgstr "一把石灰石碎块。可用于科学实验,或者用弹弓发射。也许可以用来制造点什么…" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "quicklime" msgid_plural "quicklime" msgstr[0] "生石灰" @@ -43225,7 +43497,6 @@ msgid "" msgstr "一大把新英格蘭沙。如果你有台熊熊燃燒的火爐, 你就可以把它變成玻璃。或者你也可以拿它來做水泥。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soil" msgid_plural "soil" msgstr[0] "土壤" @@ -43250,7 +43521,6 @@ msgid "" msgstr "小石灰石碎片。相當脆弱, 不太可能當作武器, 但它是鹼性的, 可能有些別的用途。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "rock salt" msgid_plural "rock salt" msgstr[0] "岩鹽" @@ -43261,7 +43531,6 @@ msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "一把岩鹽結晶。可以提煉成食鹽。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "薔薇輝石" @@ -43274,7 +43543,6 @@ msgid "" msgstr "一大塊的薔薇輝石,被二氧化錳覆蓋並穿透紋理,可以使用鑿子來採取。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zincite" msgid_plural "zincite" msgstr[0] "紅鋅礦" @@ -43630,7 +43898,6 @@ msgid "" msgstr "一小撮硝石, 有時用來作肥料。這種普遍存在的硝酸鹽是黑色火藥和簡單的火箭推進劑, 如 \"火箭糖\" 的主要成分。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "niter" msgid_plural "niter" msgstr[0] "硝石" @@ -43643,7 +43910,6 @@ msgid "" msgstr "一塊大的硝酸鹽晶體, 硝酸鉀的礦物形態。它可以加工成硝酸鉀。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of iron ore" msgid_plural "chunks of iron ore" msgstr[0] "铁矿石块" @@ -43997,7 +44263,6 @@ msgstr "" "这些经过加工的海藻的透明立方体可以溶解在沸水中,形成非常坚固,耐高温的凝胶。这种凝胶既可以用来当作电泳分离设备的溶剂基质,也还是保证你的果冻制造成功的秘密配方。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel grille" msgid_plural "steel grilles" msgstr[0] "鋼格柵" @@ -44042,7 +44307,6 @@ msgid "A small pellet of fissile material. Handle carefully." msgstr "一小塊裂變材料。小心處理。" #: data/json/items/chemicals_and_resources.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden bead" msgid_plural "wooden beads" msgstr[0] "木珠" @@ -45507,7 +45771,6 @@ msgstr "又大又重的冰柜,用于餐馆、大型商店和其他需要大量 #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass refrigerator" msgid_plural "glass refrigerators" msgstr[0] "玻璃冰箱" @@ -45519,7 +45782,6 @@ msgstr "一个玻璃冰箱。用于在商店中展示冷冻商品。" #: data/json/items/furniture.json #: data/mods/Aftershock/vehicles/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass freezer" msgid_plural "glass freezers" msgstr[0] "玻璃冰櫃" @@ -45645,7 +45907,6 @@ msgid "" msgstr "一株枯萎的植物。适合生火或堆起来睡觉。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fur pelt" msgid_plural "fur pelts" msgstr[0] "皮草塊" @@ -45656,7 +45917,6 @@ msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "從動物身上割下的皮草, 能用於製作溫暖的衣物。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "faux fur pelt" msgid_plural "faux fur pelts" msgstr[0] "人造皮草塊" @@ -45667,7 +45927,6 @@ msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "色彩繽紛的人造皮草塊, 能用於製作衣物。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "leather patch" msgid_plural "leather patches" msgstr[0] "皮革補丁" @@ -45678,7 +45937,6 @@ msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "一個皮製的小補丁, 可以用來修補衣物。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "felt patch" msgid_plural "felt patches" msgstr[0] "毛氈補丁" @@ -45689,7 +45947,6 @@ msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "短小的毛氈補丁, 毛纖維可以被拆解。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "Nomex patch" msgid_plural "Nomex patches" msgstr[0] "諾梅克斯補丁" @@ -45700,7 +45957,6 @@ msgid "A small bolt of Nomex fire-resistant fabric." msgstr "一小塊諾梅克斯阻燃纖維。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "superglue" msgid_plural "superglue" msgstr[0] "萬能膠" @@ -45711,7 +45967,6 @@ msgid "A tube of strong glue. Used in many crafting recipes." msgstr "一管強力膠。能用於許多物品製作配方。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bone glue" msgid_plural "bone glues" msgstr[0] "骨膠" @@ -45744,7 +45999,6 @@ msgid "A token, representing fertilization of a plant." msgstr "一個標示物, 用來標出已施過肥的作物。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel chain" msgid_plural "steel chains" msgstr[0] "鋼鏈" @@ -45757,7 +46011,6 @@ msgid "" msgstr "一條沉重的鋼鏈。適合拿來當武器或是做為合成的材料。使用其作為武器有機會綑綁你的目標, 允許你進行額外的徒手攻擊。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of chitin" msgid_plural "chunks of chitin" msgstr[0] "甲殼塊" @@ -45768,7 +46021,6 @@ msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "一件昆蟲的外骨骼, 輕又耐用。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cluster of gas sacs" msgid_plural "clusters of gas sacs" msgstr[0] "气囊团" @@ -45798,7 +46050,6 @@ msgid "" msgstr "一套略微椭圆的圆盘,由高级陶瓷制成,让你想起鳞片。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of biosilicified chitin" msgid_plural "chunks of biosilicified chitin" msgstr[0] "生物矽化甲殼塊" @@ -45812,7 +46063,6 @@ msgid "" msgstr "一塊經過生物矽化處理的外骨骼。它不只耐酸, 而且非常堅固。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of rags" msgid_plural "bundles of rags" msgstr[0] "布條束" @@ -45825,7 +46075,6 @@ msgid "" msgstr "一捆被紧紧地捆在一起以存放的棉布条,使用或拆解来解包布条。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of leather" msgid_plural "bundles of leather" msgstr[0] "皮革補丁束" @@ -45839,7 +46088,6 @@ msgid "" msgstr "將大量的皮革補丁緊緊地捆成一束, 以便於存放。可拆解回原來的大量皮革補丁。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bundle of felt" msgid_plural "bundles of felt" msgstr[0] "毛氈補丁束" @@ -45910,7 +46158,6 @@ msgid "" msgstr "一塊和你拳頭差不多大小的石頭。外表被相當複雜的螺旋所覆蓋。你沒辦法判斷這是人為雕刻、天然形成、還是某種化石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "USB drive" msgid_plural "USB drives" msgstr[0] "USB 隨身碟" @@ -45921,7 +46168,6 @@ msgid "A USB thumb drive. Useful for holding software." msgstr "拇指大小的隨身碟, 儲存資料用。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "data card" msgid_plural "data cards" msgstr[0] "資料晶片卡" @@ -45934,7 +46180,6 @@ msgid "" msgstr "某種類型的先進的數據存儲裝置。適用於存儲非常大量的資訊。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "FEMA 数据库" @@ -45948,7 +46193,6 @@ msgid "" msgstr "撤离计划、灾难风险预测、人员名单以及灾变前最后一分钟的通信都从FEMA服务器上删除并存储在外部硬盘中。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "candlestick" msgid_plural "candlesticks" msgstr[0] "燭台" @@ -45995,7 +46239,6 @@ msgid "" msgstr "一片 8 吋的圓鋸刀片。能夠用來製作鋸子, 或是投擲。沒有戴著紮實的手套就手持, 很容易出事。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tree spile" msgid_plural "tree spiles" msgstr[0] "楓樹插管" @@ -46009,7 +46252,6 @@ msgid "" msgstr "一個中空的金屬圓筒, 插在樹木外皮上以慢慢獲取樹液。可在冬末初春之間用來收穫楓樹汁。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wire" msgid_plural "wires" msgstr[0] "鐵絲線" @@ -46022,7 +46264,6 @@ msgid "" msgstr "一條細長而相對僵硬的鐵絲。就像是你在鐵絲護欄上會看到的那種。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "barbed wire" msgid_plural "barbed wires" msgstr[0] "帶刺鐵絲" @@ -46033,7 +46274,6 @@ msgid "A length of stiff wire, covered in sharp barbs." msgstr "一條僵硬的鐵絲, 上面帶著銳利的刺。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "steel mesh" msgid_plural "steel meshes" msgstr[0] "鋼絲網" @@ -46047,7 +46287,6 @@ msgid "" msgstr "一张细钢丝网,可以用作烘干机滤网或者用来滤咖啡。你也可以把它做成纱窗用来遮挡蚊虫,但是如今的蚊虫只需要勾花围栏就能挡住了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rebar" msgid_plural "rebars" msgstr[0] "鋼筋" @@ -46106,7 +46345,6 @@ msgid "This is a spent magnesium flare. It is essentially trash." msgstr "這是已經用過的鎂光照明彈。基本上是垃圾。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spring" msgid_plural "springs" msgstr[0] "彈簧" @@ -46154,7 +46392,6 @@ msgid "" msgstr "家庭號帳篷, 很笨重但是空間很大。這個帳篷已經損壞而無法使用。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heating element" msgid_plural "heating elements" msgstr[0] "加熱元件" @@ -46165,7 +46402,6 @@ msgid "A heating element, like the ones used in hotplates or kettles." msgstr "一個加熱元件, 常用於電熱板或水壺的零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bimetal thermostat" msgid_plural "bimetal thermostats" msgstr[0] "雙金屬恆溫器" @@ -46177,7 +46413,6 @@ msgid "" msgstr "一種簡單的恆溫器,由雙金屬片的熱膨脹控制。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "television" msgid_plural "televisions" msgstr[0] "電視" @@ -46188,7 +46423,6 @@ msgid "A large LCD television, full of delicious electronics." msgstr "一台大屏幕液晶电视,接收不到信号无法观看电视节目,可以使用工具拆解以获得其中零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pilot light" msgid_plural "pilot lights" msgstr[0] "點火器" @@ -46225,7 +46459,6 @@ msgid "" msgstr "一个结构复杂的机械引信。它似乎可以在受到强烈撞击后引爆稳定炸药。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "toaster" msgid_plural "toasters" msgstr[0] "烤麵包機" @@ -46236,7 +46469,6 @@ msgid "A small two slice toaster, not much use as anything but spare parts" msgstr "能放入兩片土司的簡單烤箱, 沒什麼太大的作用但能拆出零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "microwave" msgid_plural "microwaves" msgstr[0] "微波爐" @@ -46249,7 +46481,6 @@ msgid "" msgstr "一個家用微波爐, 可以看得出來有烤過豆子。拆了它取零件吧。" #: data/json/items/generic.json data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "laptop computer" msgid_plural "laptop computers" msgstr[0] "筆記型電腦" @@ -46259,9 +46490,7 @@ msgstr[0] "筆記型電腦" msgid "A broken laptop, basically a paperweight now." msgstr "一台損壞的筆電, 大概只能當紙鎮用。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken eyebot" msgid_plural "broken eyebots" msgstr[0] "損壞的眼球機器人" @@ -46274,9 +46503,7 @@ msgid "" "backup. Could be gutted for parts." msgstr "一具損壞的眼球機器人。不能叫支援就顯得沒什麼威脅性了。可以挖些零件出來。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken skitterbot" msgid_plural "broken skitterbots" msgstr[0] "損毀的掠行機器人" @@ -46289,7 +46516,6 @@ msgid "" msgstr "一台損毀的掠行機器人, 基本上已經沒有威脅了, 現在它癱瘓於堅實的地板上。可以分解出零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken lab defense bot" msgid_plural "broken lab defense bots" msgstr[0] "損壞的實驗室警衛機器人" @@ -46302,7 +46528,6 @@ msgid "" msgstr "一台損毀的警衛機器人, 基本上已經沒有威脅了, 現在它很安靜, 死氣沉沉。可以分解出零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken police bot" msgid_plural "broken police bots" msgstr[0] "損毀的警用機器人" @@ -46315,7 +46540,6 @@ msgid "" msgstr "一台損毀的警用機器人, 基本上已經沒有威脅了, 現在它很安靜, 死氣沉沉。可以分解出零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken nurse bot" msgid_plural "broken nurse bots" msgstr[0] "損毀的護士機器人" @@ -46328,7 +46552,6 @@ msgid "" msgstr "一個損毀的護士機器人。它光滑的臉龐茫然地望向虛空。可以拆解來獲得部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken grocery bot" msgid_plural "broken grocery bots" msgstr[0] "損毀的雜貨店機器人" @@ -46348,7 +46571,6 @@ msgid "" msgstr "損毀的雜貨店機器人的身體。沾滿髒污的臉仍在微笑。可以拆解來獲得部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken hauler bot" msgid_plural "broken hauler bots" msgstr[0] "搬运机器人(损坏)" @@ -46361,7 +46583,6 @@ msgid "" msgstr "一个坏掉的搬运机器人,现在只是一堆瘫废的机械臂和破烂底盘罢了。 现在只能用作零部件了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot control bot" msgid_plural "broken riot control bots" msgstr[0] "損毀的鎮暴機器人" @@ -46374,7 +46595,6 @@ msgid "" msgstr "一台損毀的鎮暴機器人, 基本上已經沒有威脅, 現在它的催淚瓦斯用完了。可以分解出零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken prototype robot" msgid_plural "broken prototype robots" msgstr[0] "損毀的原型機器人" @@ -46386,9 +46606,7 @@ msgid "" " parts." msgstr "一個損毀的原型機器人,比先前更加殘破。可以拆解來獲得部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken miner bot" msgid_plural "broken miner bots" msgstr[0] "損毀的挖礦機器人" @@ -46402,7 +46620,6 @@ msgid "" msgstr "一台損毀的挖礦機器人, 基本上已經沒有威脅, 現在它不再能鑽任何東西了。可以分解出零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken recon mech" msgid_plural "broken recon mechs" msgstr[0] "偵察機甲(損壞)" @@ -46415,19 +46632,16 @@ msgid "This is a broken mech exoskeleton suit, it looks beyond repair." msgstr "这是一套损坏的机甲,看起来已经没法修了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken mech lifter" msgid_plural "broken mech lifters" msgstr[0] "起重機甲(損壞)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken combat mech" msgid_plural "broken combat mechs" msgstr[0] "戰鬥機甲(損壞)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken riot dispatch" msgid_plural "broken riot dispatches" msgstr[0] "防暴派遣者(損壞)" @@ -46441,7 +46655,6 @@ msgid "" msgstr "一台損毀的鎮暴母艦, 基本上已經沒有威脅了。它的機身中段裝滿了被摧毀的鋸鳥,引擎聲聽起來行將就木。可以分解出零件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken military dispatch" msgid_plural "broken military dispatches" msgstr[0] "軍用派遣者(損壞)" @@ -46456,9 +46669,7 @@ msgid "" msgstr "" "一台損毀的軍用母艦。儘管你可以清楚看見它敞開的機腹內滿載的鋸鳥都已經傷痕累累並解除武裝,你仍然可以回想起那一天,在鋸鳥支配下的恐怖。可以拆解出零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken manhack" msgid_plural "broken manhacks" msgstr[0] "損壞的鋸鳥" @@ -46472,9 +46683,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "一台損壞的鋸鳥。現在它癱在地面上, 似乎沒什麼威脅性了。可以把它拆開來看看。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken grenade hack" msgid_plural "broken grenade hacks" msgstr[0] "損壞的手榴彈無人機" @@ -46487,9 +46696,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "一台損壞的手榴彈無人機。現在它癱瘓於地上, 基本上已經沒有威脅了。可以分解出零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken mininuke hack" msgid_plural "broken mininuke hacks" msgstr[0] "損壞的迷你核彈無人機" @@ -46502,9 +46709,7 @@ msgid "" "be gutted for parts." msgstr "一台損壞的迷你核彈無人機。儘管已成了殘骸仍能令你顫抖。可以分解出零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken tear gas hack" msgid_plural "broken tear gas hacks" msgstr[0] "損壞的催涙彈無人機" @@ -46517,9 +46722,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "一台損壞的催涙彈無人機。現在它癱瘓於地上, 基本上已經沒有威脅了。可以分解出零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken EMP hack" msgid_plural "broken EMP hacks" msgstr[0] "損壞的電磁脈衝無人機" @@ -46532,9 +46735,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "一台損壞的電磁脈衝 (EMP) 無人機。現在它癱瘓於地上, 基本上已經沒有威脅了。可以分解出零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken flashbang hack" msgid_plural "broken flashbang hacks" msgstr[0] "損壞的閃光彈無人機" @@ -46547,9 +46748,7 @@ msgid "" "solid ground. Could be gutted for parts." msgstr "一台損壞的閃光彈無人機。現在它癱瘓於地上, 基本上已經沒有威脅了。可以分解出零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken C-4 hack" msgid_plural "broken C-4 hacks" msgstr[0] "損壞的C-4 無人機" @@ -46588,7 +46787,6 @@ msgid "" msgstr "一个从某些工业机械上回收的高功率激光源。单独使用无任何功能,但在电子工艺中可能会派上用场。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "processor board" msgid_plural "processor boards" msgstr[0] "主機板" @@ -46599,7 +46797,6 @@ msgid "A central processor unit, useful in advanced electronics crafting." msgstr "一個中央處理器。在製作高階電子裝置時很有用。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "RAM" msgid_plural "RAMs" msgstr[0] "記憶體" @@ -46610,7 +46807,6 @@ msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "一根記憶體。在製作高階電子裝置時很有用。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "power converter" msgid_plural "power converters" msgstr[0] "電源轉換器" @@ -46621,7 +46817,6 @@ msgid "A power supply unit. Useful in lots of electronics recipes." msgstr "一個電源供應器。能用於許多電子物品製作配方。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier circuit" msgid_plural "amplifier circuits" msgstr[0] "功率放大器" @@ -46634,7 +46829,6 @@ msgid "" msgstr "一個用來放大信號強度的電路。能用於許多電子物品製作配方。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "transponder circuit" msgid_plural "transponder circuits" msgstr[0] "轉發器電路" @@ -46647,7 +46841,6 @@ msgid "" msgstr "一個用於發射重複信號的電路裝置, 適合用於製作通訊設備。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "signal receiver" msgid_plural "signal receivers" msgstr[0] "信號接收器" @@ -46660,7 +46853,6 @@ msgid "" msgstr "一個用於收訊的模組, 適合用於製作通訊設備。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large LCD screen" msgid_plural "large LCD screens" msgstr[0] "大型液晶螢幕" @@ -46673,7 +46865,6 @@ msgid "" msgstr "一个大型背光式屏幕,用于显示图像。用于制造某些电子设备。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small LCD screen" msgid_plural "small LCD screens" msgstr[0] "小型液晶螢幕" @@ -46686,7 +46877,6 @@ msgid "" msgstr "一種小型的背光螢幕, 能夠顯示畫面。能用於一些電子物品製作配方。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "high-quality lens" msgid_plural "high-quality lenses" msgstr[0] "高品質鏡頭" @@ -46700,7 +46890,6 @@ msgid "" msgstr "一個高品質鏡頭, 適合用於聚焦或散光。或許可以用來生火。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small high-quality lens" msgid_plural "small high-quality lenses" msgstr[0] "小型高品質鏡頭" @@ -46714,7 +46903,6 @@ msgid "" msgstr "一個小型高品質鏡頭, 適合用於聚焦或散光。或許可以用來製造。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pair of tinted glass" msgid_plural "pairs of tinted glass" msgstr[0] "著色眼鏡" @@ -46727,7 +46915,6 @@ msgid "" msgstr "一副細小的深色眼鏡, 像用來製作太陽眼鏡的東西。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "burnt out bionic" msgid_plural "burnt out bionics" msgstr[0] "燒焦的生化插件" @@ -46770,7 +46957,6 @@ msgstr "" "这是一个先进光学存储系统,包含了制造复杂硅光子电路所必须的指令。里面的数据显然曾经价值千万,但是事到如今,你不知道它除了拿来当个花哨的高科技镇纸之外还能用来做什么。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "antenna" msgid_plural "antennas" msgstr[0] "天線" @@ -46781,7 +46967,6 @@ msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "一個構造簡單的薄鋁軸。能用於許多電子物品製作配方。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "micro motor" msgid_plural "micro motors" msgstr[0] "微型馬達" @@ -46794,7 +46979,6 @@ msgid "" msgstr "一台非常小的電動馬達, 常用於遙控車。能用於許多電子物品製作配方。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "circuit board" msgid_plural "circuit boards" msgstr[0] "電路板" @@ -46807,7 +46991,6 @@ msgid "" msgstr "一片上面有許多電路的印刷版, 用來連結各種電子元件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "electronic scrap" msgid_plural "electronic scraps" msgstr[0] "電子廢料" @@ -46831,7 +47014,6 @@ msgid "" msgstr "一個能把無線電站轉換成自動中繼器的系統。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "desk fan" msgid_plural "desk fans" msgstr[0] "桌扇" @@ -46842,7 +47024,6 @@ msgid "A small fan, used to propel air around a room." msgstr "一個小電扇, 能夠推動房間中的氣流。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic armor plate" msgid_plural "ceramic armor plates" msgstr[0] "陶瓷裝甲板" @@ -46867,7 +47048,6 @@ msgid "" msgstr "一个充满水的鱼缸,标签上写着\"送给艾德\"和里面的鱼的名字\"霍斯\",看起来鱼已经变异出微小的鹿角。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rag" msgid_plural "rags" msgstr[0] "布條" @@ -46898,7 +47078,6 @@ msgid "" msgstr "一件沾滿血跡的大布條。能夠用沸水洗淨。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pipe cleaner" msgid_plural "pipe cleaners" msgstr[0] "管道清潔器" @@ -46912,7 +47091,6 @@ msgid "" msgstr "這是一種用於清潔管道、瓶子或類似物體內部表面的工具。這工具細到可用於清除槍管內的灰塵和髒污。" #: data/json/items/generic.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clock" msgid_plural "clocks" msgstr[0] "時鐘" @@ -46936,7 +47114,6 @@ msgid "A small assortment of gears and other clockwork gubbins." msgstr "一組小齒輪和小的發條。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card" msgid_plural "SD-Memory cards" msgstr[0] "SD 記憶卡" @@ -46947,7 +47124,6 @@ msgid "A memory card, used. Might be worth a look." msgstr "一張使用過的記憶卡。內容也許值得一看。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (clean)" msgid_plural "SD-Memory cards (clean)" msgstr[0] "SD 記憶卡 (空)" @@ -46961,7 +47137,6 @@ msgid "" msgstr "這張記憶卡不是還沒用過就是被清空了。然而你還是可以用它來存你的資料!" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "SD-Memory card (encrypted)" msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "SD 記憶卡 (加密)" @@ -46975,7 +47150,6 @@ msgid "" msgstr "這張記憶似已開啟韌體加密。希望它裡面是真的值得加密的內容。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Science SD-Memory card" msgid_plural "Science SD-Memory cards" msgstr[0] "科學 SD 記憶卡" @@ -47005,7 +47179,6 @@ msgid "" msgstr "一大塊圓餅似的鐵蓋, 封閉了下水道與階梯。要抬起它必須使用撬棍。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pine bough" msgid_plural "pine boughs" msgstr[0] "松樹樹枝" @@ -47018,7 +47191,6 @@ msgid "" msgstr "松樹的樹枝, 滲著黏黏的汁液而且還長滿小刺。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "pinecone" msgid_plural "pinecones" msgstr[0] "松果" @@ -47050,7 +47222,6 @@ msgid "" msgstr "向日葵,帶著黃色花瓣和一些尚未被動物吃掉的種子。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "洋甘菊花" @@ -47062,13 +47233,11 @@ msgid "" msgstr "白色洋甘菊花,自古以來就被用作為草藥。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "lotus flower" msgid_plural "lotus flowers" msgstr[0] "荷花" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "大戟花" @@ -47081,7 +47250,6 @@ msgid "" msgstr "一种黄绿色的花。花朵可以制成预防哮喘发作的茶。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of clay" msgid_plural "lumps of clay" msgstr[0] "黏土塊" @@ -47092,7 +47260,6 @@ msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "一坨新鮮的黏土。能用於一些物品製作配方。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "brick" msgid_plural "bricks" msgstr[0] "磚塊" @@ -47103,7 +47270,6 @@ msgid "A fire hardened building block used in masonry construction." msgstr "一個燒製硬化的磚用以建造磚石建築。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mortar" msgid_plural "mortar" msgstr[0] "沙漿" @@ -47114,7 +47280,6 @@ msgid "Some mortar, ready to be used in building projects." msgstr "一袋沙漿, 已經準備於用在建築工程中了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "soft adobe brick" msgid_plural "soft adobe bricks" msgstr[0] "軟土坯磚" @@ -47137,7 +47302,6 @@ msgid "" msgstr "一块压实的土壤和天然纤维,仍然太湿,无法用它建造。您可以把它装到托盘上,让它晾干以便批量处理。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe brick" msgid_plural "adobe bricks" msgstr[0] "土坯磚" @@ -47150,7 +47314,6 @@ msgid "" msgstr "一块压实的土壤和天然纤维,烘焙得足够干燥,可以硬化成砖块。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "土坯砂漿" @@ -47163,7 +47326,6 @@ msgid "" msgstr "一团厚厚的泥巴糊,含沙量低,一旦干了就能减少碎裂。用来粘合更大更重的泥块和黏土。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tanbark" msgid_plural "tanbark" msgstr[0] "鞣料樹皮" @@ -47174,7 +47336,6 @@ msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather." msgstr "一大块富含单宁的树皮,用于鞣制皮革。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "birchbark" msgid_plural "birchbarks" msgstr[0] "樺樹樹皮" @@ -47185,7 +47346,6 @@ msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "一片既堅硬又防水的樹皮, 從樺樹上取得。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "willowbark" msgid_plural "willowbark" msgstr[0] "柳樹樹皮" @@ -47198,7 +47358,6 @@ msgid "" msgstr "一片從柳樹上取得的樹皮, 可用於製作阿斯匹靈。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "diamond" msgid_plural "diamonds" msgstr[0] "鑽石" @@ -47209,7 +47368,6 @@ msgid "A sparkling diamond." msgstr "一顆閃閃發光的鑽石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "garnet" msgid_plural "garnets" msgstr[0] "石榴石" @@ -47220,7 +47378,6 @@ msgid "A sparkling garnet." msgstr "一颗闪闪发光的石榴石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amethyst" msgid_plural "amethysts" msgstr[0] "紫水晶" @@ -47231,7 +47388,6 @@ msgid "A sparkling amethyst." msgstr "一颗闪闪发光的紫水晶。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aquamarine" msgid_plural "aquamarines" msgstr[0] "海藍寶石" @@ -47242,7 +47398,6 @@ msgid "A sparkling aquamarine." msgstr "一颗闪闪发光的海蓝宝石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "emerald" msgid_plural "emeralds" msgstr[0] "祖母綠" @@ -47253,7 +47408,6 @@ msgid "A sparkling emerald." msgstr "一颗闪闪发光的祖母绿。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "alexandrite" msgid_plural "alexandrites" msgstr[0] "紫翠玉" @@ -47264,7 +47418,6 @@ msgid "A sparkling alexandrite." msgstr "一颗闪闪发光的紫翠玉。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pearl" msgid_plural "pearls" msgstr[0] "珍珠" @@ -47275,7 +47428,6 @@ msgid "A lustrous pearl." msgstr "一颗光滑圆润的珍珠。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ruby" msgid_plural "rubies" msgstr[0] "紅寶石" @@ -47286,7 +47438,6 @@ msgid "A sparkling ruby." msgstr "一颗闪闪发光的红宝石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peridot" msgid_plural "peridots" msgstr[0] "橄欖石" @@ -47297,7 +47448,6 @@ msgid "A sparkling peridot." msgstr "一颗闪闪发光的橄榄石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sapphire" msgid_plural "sapphires" msgstr[0] "藍寶石" @@ -47308,7 +47458,6 @@ msgid "A sparkling sapphire." msgstr "一颗闪闪发光的蓝宝石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "opal" msgid_plural "opals" msgstr[0] "蛋白石" @@ -47319,7 +47468,6 @@ msgid "A lustrous opal." msgstr "一颗光滑圆润的蛋白石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tourmaline" msgid_plural "tourmalines" msgstr[0] "電氣石" @@ -47330,7 +47478,6 @@ msgid "A sparkling tourmaline." msgstr "一颗闪闪发光的电气石。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "citrine" msgid_plural "citrines" msgstr[0] "黃水晶" @@ -47341,7 +47488,6 @@ msgid "A sparkling citrine." msgstr "一颗闪闪发光的黄水晶。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "topaz" msgid_plural "topazs" msgstr[0] "藍黃玉" @@ -47352,7 +47498,6 @@ msgid "A sparkling blue topaz." msgstr "一颗闪闪发光的蓝黄玉。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured hide" msgid_plural "cured hides" msgstr[0] "加工生皮" @@ -47366,7 +47511,6 @@ msgid "" msgstr "一张卷起来的硬皮。相比生皮去除了多余的皮毛和残留肌肉脂肪组织,并且进行了防腐处理。依旧经过鞣制和处理才能变成有用的皮革。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cured pelt" msgid_plural "cured pelts" msgstr[0] "加工毛皮" @@ -47402,7 +47546,6 @@ msgid "Old straw doll. Represents a woman in a dress." msgstr "老舊的稻草娃娃。穿著女人的衣服。 " #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pillow" msgid_plural "pillows" msgstr[0] "枕頭" @@ -47413,7 +47556,6 @@ msgid "A pillow to rest your head on when sleeping." msgstr "枕頭可以在睡覺時讓你的頭休息。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "body pillow" msgid_plural "body pillows" msgstr[0] "等身抱枕" @@ -47426,7 +47568,6 @@ msgid "" msgstr "一個巨大的等身長抱枕, 正面畫有一個動漫角色, 背面則是角色的… 少了些布料的版本。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "down-filled pillow" msgid_plural "down-filled pillows" msgstr[0] "羽絨枕" @@ -47437,7 +47578,6 @@ msgid "A fluffy pillow to rest your head on when sleeping." msgstr "蓬鬆的羽絨枕可以在睡覺時讓你的頭休息。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "teddy bear" msgid_plural "teddy bears" msgstr[0] "泰迪熊" @@ -47456,7 +47596,6 @@ msgid "" msgstr "一个可爱的毛绒泰迪熊。它穿着一件小小的红色t恤,但没有裤子。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "money bundle" msgid_plural "money bundles" msgstr[0] "鈔票束" @@ -47504,7 +47643,7 @@ msgstr[0] "雪茄" #: data/json/items/generic.json data/json/items/items_holiday.json #: data/json/items/tool/fire.json data/json/items/tool/lighting.json #: data/json/obsoletion/items.json data/mods/CrazyCataclysm/crazy_items.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json #: data/mods/No_Hope/Items/tools.json msgid "Extinguish" msgstr "熄滅" @@ -47617,7 +47756,6 @@ msgid "" msgstr "煙草植物,充滿尼古丁。它們需要乾燥才能變成可吸食的。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "cash card" msgid_plural "cash cards" msgstr[0] "現金卡" @@ -47643,7 +47781,6 @@ msgid "" msgstr "這張小透明卡已連接到原型機器人的中央處理器。它可能包含了對講機所提到的資料。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver gas discount card" msgid_plural "silver gas discount cards" msgstr[0] "加油折扣銀卡" @@ -47654,7 +47791,6 @@ msgid "This card gives you a little discount on the purchase of gasoline." msgstr "這張卡讓你加油時能便宜一點點。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold gas discount card" msgid_plural "gold gas discount cards" msgstr[0] "加油折扣金卡" @@ -47665,7 +47801,6 @@ msgid "This card gives you a good discount on the purchase of gasoline." msgstr "這張卡讓你加油時能夠便宜不少。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum gas discount card" msgid_plural "platinum gas discount cards" msgstr[0] "加油折扣白金卡" @@ -47676,7 +47811,6 @@ msgid "This card gives you a splendid discount on the purchase of gasoline." msgstr "這張卡讓你加油時能夠便宜許多。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "science ID card" msgid_plural "science ID cards" msgstr[0] "科學 ID 卡" @@ -47690,7 +47824,6 @@ msgid "" msgstr "這張識別證本來屬於某個科學家, 背面印上了使用規約。如果你找到控制台的話, 你可以用來存取它。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military ID card" msgid_plural "military ID cards" msgstr[0] "軍事 ID 卡" @@ -47704,7 +47837,6 @@ msgid "" msgstr "這張識別證本來屬於某個高階軍官, 背面印上了使用規約。如果你找到控制台的話, 你可以用來存取它。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "industrial ID card" msgid_plural "industrial ID cards" msgstr[0] "工業 ID 卡" @@ -47718,7 +47850,6 @@ msgid "" msgstr "這張 ID卡原本屬於某個高級技工,背面有記述使用的通訊協定。它能讓你獲得存取控制台的權限,如果你找的到控制台的話。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "neoprene patch" msgid_plural "neoprene patches" msgstr[0] "氯丁橡膠片" @@ -47768,7 +47899,6 @@ msgid "" msgstr "一种从残破的侦察外骨骼上剥离下来的远程武器系统。由于目前的状态无法再用作武器。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "light bulb" msgid_plural "light bulbs" msgstr[0] "電燈泡" @@ -47789,7 +47919,6 @@ msgid "A twisted shard of jagged metal." msgstr "一塊扭曲尖銳的金屬碎片。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "clay flower pot" msgid_plural "clay flower pots" msgstr[0] "陶製花盆" @@ -47800,7 +47929,6 @@ msgid "A nice looking clay pot used for planting." msgstr "用於園藝的漂亮陶罐。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic flower pot" msgid_plural "plastic flower pots" msgstr[0] "塑膠花盆" @@ -47924,7 +48052,6 @@ msgid "" msgstr "一套用於構建全功能焊接工作站的組件,具有焊接功能。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "amplifier head" msgid_plural "amplifier heads" msgstr[0] "音箱头" @@ -47936,9 +48063,7 @@ msgid "" "musical instruments. Basically only good for spare parts now." msgstr "头戴式扩音器,通常与扬声器柜配对,用于放大乐器的声音。现在基本上只能拆掉获得零件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken turret" msgid_plural "broken turrets" msgstr[0] "損毀的砲塔" @@ -47950,9 +48075,7 @@ msgid "" "ground. Could be gutted for parts." msgstr "一台損毀的砲塔,現在它癱倒在地上,威脅性已大幅降低。可以拆解出部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json msgid "broken riot control turret" msgid_plural "broken riot control turrets" msgstr[0] "損毀的鎮暴砲塔" @@ -47964,15 +48087,13 @@ msgid "" " on solid ground. Could be gutted for parts." msgstr "一个损坏的防暴炮塔。现在安静的散在地上构不成威胁了。可以拆解得到部件。" -#: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Modular_Turrets/corpses.json data/mods/No_Hope/Items/generic.json +#: data/json/items/generic.json data/mods/Modular_Turrets/corpses.json +#: data/mods/No_Hope/Items/generic.json msgid "broken laser turret" msgid_plural "broken laser turrets" msgstr[0] "損毀的雷射砲塔" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken secubot" msgid_plural "broken secubots" msgstr[0] "損毀的保全機器人" @@ -47985,7 +48106,6 @@ msgid "" msgstr "一台損毀的保全機器人,有著損毀的外殼,管線液體滲出亂流。可以拆解出部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken M202A1 TALON" msgid_plural "broken M202A1 TALONs" msgstr[0] "損毀的 M202A1 TALON" @@ -48000,7 +48120,6 @@ msgid "" msgstr "一台損毀的 TALON 無人地面載具,有著損毀的外殼,管線液體滲出亂流。可以拆解出部件。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fire brick" msgid_plural "fire bricks" msgstr[0] "耐火磚" @@ -48054,19 +48173,16 @@ msgid "" msgstr "一大块沉重的立方体食盐块,供牲畜食用。别舔它,太恶心了。" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken light turret" msgid_plural "broken light turrets" msgstr[0] "輕型炮塔(損壞)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken medium milspec turret" msgid_plural "broken medium milspec turrets" msgstr[0] "中型軍用炮塔(損壞)" #: data/json/items/generic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "broken longrange milspec turret" msgid_plural "broken longrange milspec turrets" msgstr[0] "長程軍用炮塔(損壞)" @@ -48247,7 +48363,6 @@ msgid "" msgstr "这个带鬼脸的塑料南瓜里面有一大根蜡烛。它无法提供多少亮光,但是能够烧很久。它的蜡烛已经点燃,上面的鬼脸随着蜡烛的火焰晃动。" #: data/json/items/items_holiday.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "yule wreath" msgid_plural "yule wreaths" msgstr[0] "聖誕花環" @@ -48401,7 +48516,6 @@ msgid "This is a template for robot module. If found in a game it is a bug." msgstr "這是機器人模組的模板。如果在遊戲中找到它就是程式出錯了。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "targeting module" msgid_plural "targeting modules" msgstr[0] "瞄準模組" @@ -48414,7 +48528,6 @@ msgid "" msgstr "该模块通过将来自外围传感器的视觉和本体感知信息集成运算,输出精确瞄准所需要的信息。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "identification module" msgid_plural "identification modules" msgstr[0] "識別模組" @@ -48427,7 +48540,6 @@ msgid "" msgstr "該模組持續運行圖像識別演算法,用以識別敵友。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pathfinding module" msgid_plural "pathfinding modules" msgstr[0] "尋徑模組" @@ -48440,7 +48552,6 @@ msgid "" msgstr "該模組使用向量積分和自我中心製圖的組合來找出可用的最佳路徑。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "memory banks module" msgid_plural "memory banks modules" msgstr[0] "記憶體模組" @@ -48451,7 +48562,6 @@ msgid "Allows for storage and recovery of information." msgstr "允許儲存和復原資訊。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sensor array" msgid_plural "sensor arrays" msgstr[0] "傳感器陣列" @@ -48464,7 +48574,6 @@ msgid "" msgstr "廣距的傳感器組意味這能夠感知周遭的世界環境。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "自診斷傳感器" @@ -48477,7 +48586,6 @@ msgid "" msgstr "一组使机器人能够感知到自己的传感器和诊断模块。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "AI core" msgid_plural "AI cores" msgstr[0] "人工智慧核心" @@ -48490,7 +48598,6 @@ msgid "" msgstr "该模块负责决策,机器人的 AI 基本上靠它运行。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "basic AI core" msgid_plural "basic AI cores" msgstr[0] "基本人工智慧核心" @@ -48501,7 +48608,6 @@ msgid "A very basic AI core with minimal cognitive abilities." msgstr "一個非常基本的人工智慧核心,具有最低的認知能力。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "advanced AI core" msgid_plural "advanced AI cores" msgstr[0] "先進人工智慧核心" @@ -48512,7 +48618,6 @@ msgid "An advanced AI core with impressive cognitive abilities." msgstr "先進的人工智慧核心與優秀的認知能力。" #: data/json/items/robot_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gun operating system" msgid_plural "gun operating systems" msgstr[0] "槍械操作系統" @@ -48985,7 +49090,6 @@ msgid_plural "software" msgstr[0] "軟體" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc software" msgid_plural "misc software" msgstr[0] "軟體" @@ -48996,7 +49100,6 @@ msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "一個繁雜的無趣軟體。大概沒啥用處。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "駭客王" @@ -49007,7 +49110,6 @@ msgid "A piece of hacking software." msgstr "一套駭客軟體。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "模擬醫生" @@ -49018,7 +49120,6 @@ msgid "A piece of medical software." msgstr "一個醫學軟體。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "大算盤" @@ -49029,7 +49130,6 @@ msgid "A piece of mathematical software." msgstr "一個數學運算軟體。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "infection data" msgid_plural "infection data" msgstr[0] "感染數據" @@ -49040,7 +49140,6 @@ msgid "Medical data on zombie blood." msgstr "關於殭屍血液的醫學數據。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lab data" msgid_plural "lab data" msgstr[0] "實驗室資料" @@ -49051,7 +49150,6 @@ msgid "Research archives from a government laboratory." msgstr "來自政府實驗室的研究檔案。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "train data" msgid_plural "train data" msgstr[0] "列車資料" @@ -49062,7 +49160,6 @@ msgid "Logistical data on subterranean train routes and schedules." msgstr "地下火車路線和時刻表的物流數據。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "neural data" msgid_plural "neural data" msgstr[0] "神經數據" @@ -49079,7 +49176,6 @@ msgstr "" "無論如何,永久地將你的一部分留在金屬丸中,這個想法讓你感到不舒服。" #: data/json/items/software.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "integrated circuit datasheet archives" msgid_plural "misc software" msgstr[0] "雜項軟體" @@ -49695,7 +49791,7 @@ msgstr[0] "原子頭燈" #. ~ Use action menu_text for {'str': 'atomic reading light'}. #. ~ Use action menu_text for magical reading light. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Close cover" msgstr "關上燈罩" @@ -49728,7 +49824,7 @@ msgstr[0] "原子頭燈 (蓋上)" #. ~ Use action menu_text for {'str': 'magical reading light (covered)', #. 'str_pl': 'magical reading lights (covered)'}. #: data/json/items/tool_armor.json data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Open cover" msgstr "打開燈罩" @@ -53113,7 +53209,6 @@ msgid "" msgstr "一根微小的鋼飛鏢。可從釘槍或類似的武器發射, 也可以用來製作手工彈藥。" #: data/json/items/ammo/nail.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "nail" msgid_plural "nails" msgstr[0] "鐵釘" @@ -53671,7 +53766,8 @@ msgid "" msgstr "" "一件模組化防彈背心。它的裝甲袋裡裝了超合金裝甲板, 能提供額外的防護能力, 但是增加的重量稍微犧牲了靈活性。它有 4 個可以容納彈匣的小袋。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "quiver" msgid_plural "quivers" msgstr[0] "箭筒" @@ -53683,7 +53779,8 @@ msgid "" "store arrows." msgstr "一個以皮革製成的箭筒, 穿戴在腰間, 能夠裝入 20 支箭矢。使用它來裝入箭矢。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "birchbark quiver" msgid_plural "birchbark quivers" msgstr[0] "樺皮箭筒" @@ -53695,7 +53792,8 @@ msgid "" "20 arrows. Activate to store arrows." msgstr "一個以樺樹皮製成的箭筒, 穿戴在腰際, 能裝入 20 支箭矢。使用它來裝入箭矢。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large quiver" msgid_plural "large quivers" msgstr[0] "大型箭筒" @@ -53710,7 +53808,8 @@ msgstr "" "一個鑲嵌了金屬的大型皮革箭筒, 穿戴在背後, 能夠裝入 60 支箭矢。歷史上是供馬弓兵使用, 而非步行的弓兵, 但這兩者都不用對抗殭屍。\"使用\" " "它來裝入箭矢。" -#: data/json/items/armor/ammo_pouch.json data/mods/Magiclysm/items/armor.json +#: data/json/items/armor/ammo_pouch.json +#: data/mods/Magical_Nights/items/armor.json msgid "large birchbark quiver" msgid_plural "large birchbark quivers" msgstr[0] "大型樺皮箭筒" @@ -54176,7 +54275,7 @@ msgstr[0] "飞刀弹带" #: data/json/items/armor/bandolier.json data/json/items/armor/sheath.json #: data/json/items/armor/storage.json data/json/items/melee/bludgeons.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "You sheath your %s" msgstr "你把你的 %s 收鞘。" @@ -54404,7 +54503,7 @@ msgstr[0] "皮帶" #. ~ Use action holster_msg for {'str': 'Belt of Weaponry', 'str_pl': 'Belts #. of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "You tuck your %s into your %s" msgstr "你把 %s 塞進你的 %s" @@ -54414,14 +54513,14 @@ msgstr "你把 %s 塞進你的 %s" #. ~ Use action holster_prompt for {'str': 'Belt of Weaponry', 'str_pl': #. 'Belts of Weaponry'}. #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "Stick what into your belt" msgstr "把東西夾在腰帶上" #. ~ Description for {'str': 'leather belt'} #. ~ Description for magic leather belt #: data/json/items/armor/belts.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "A leather belt. Useful for making your pair of pants fit." msgstr "一條皮革腰帶。能讓你的長褲變得合身。" @@ -56811,7 +56910,7 @@ msgstr[0] "生存者手套" #. ~ Description for {'str': 'pair of black dragonhide gloves', 'str_pl': #. 'pairs of black dragonhide gloves'} #: data/json/items/armor/gloves.json -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions." @@ -64099,7 +64198,7 @@ msgstr[0] "登山背包" #. ~ Use action holster_prompt for {'str': "technomancer's toolbelt"}. #: data/json/items/armor/storage.json #: data/mods/CRT_EXPANSION/items/crt_clothes.json -#: data/mods/Magiclysm/items/enchanted_belts.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Sheath blade" msgstr "刀刃收鞘" @@ -71574,8 +71673,8 @@ msgstr[0] "基本發射器" #: data/mods/Aftershock/items/gun/5x50.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_ranged.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "single" msgstr "單發" @@ -71685,7 +71784,7 @@ msgstr[0] "基本霰彈槍" #: data/json/items/gun/combination.json data/json/items/gun/monster_gun.json #: data/json/items/ranged/pneumatic.json #: data/mods/Aftershock/items/gun/projectile.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json #: data/mods/Modular_Turrets/roboguns.json msgctxt "gun_type_type" msgid "shotgun" @@ -71702,7 +71801,7 @@ msgid_plural "pump action shotguns" msgstr[0] "泵動式霰彈槍" #: data/json/items/classes/gun.json data/json/items/gun/20x66mm.json -#: data/mods/Magiclysm/items/enchanted_ranged.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "chuk chuk." msgstr "咔嚓咔嚓。" @@ -73350,15 +73449,13 @@ msgid "" msgstr "動物的胸腺或胰腺。 如果處理得當,這些都是美味佳餚。" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "blood" msgid_plural "blood" msgstr[0] "血" #. ~ Description for {'str_sp': 'blood'} #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/fuel.json msgid "Blood, possibly that of a human. Disgusting!" msgstr "血, 應該是人類的。很噁心!" @@ -73541,8 +73638,7 @@ msgid "" msgstr "一块干法炼制的白色变异人脂肪。可以保存很久并食用,而且在很多食物和物品的制造配方中会用到。" #: data/json/items/comestibles/carnivore.json -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "tainted blood" msgid_plural "tainted blood" msgstr[0] "污染的血液" @@ -83513,6 +83609,19 @@ msgid "" "nutritionally dense and makes for a good cooking oil." msgstr "这是大米种子的剩余外层,这种植物物质在营养上相当丰富,并可用于制作优质的食用油。" +#: data/json/items/comestibles/sandwich.json +msgid "GENERIC SANDWICH" +msgid_plural "GENERIC SANDWICHES" +msgstr[0] "通用三明治" + +#. ~ Description for {'str': 'GENERIC SANDWICH', 'str_pl': 'GENERIC +#. SANDWICHES'} +#: data/json/items/comestibles/sandwich.json +msgid "" +"If you can see this, you shouldn't be able to. This is to solve dumb copy-" +"from issues." +msgstr "如果你能看到这个,那么你本不应该看到。这只是为了解决一些愚蠢的复制问题。" + #: data/json/items/comestibles/sandwich.json msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" @@ -87400,7 +87509,6 @@ msgid "generic item template" msgstr "通用物品模板" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "shaving razor" msgid_plural "shaving razors" msgstr[0] "剃须刀" @@ -87413,7 +87521,6 @@ msgid "" msgstr "一把剃须刀,刀片安装在一个舒适的手柄上。用剃须刀刮胡子比起直接用剃须刀片来要容易得多。也可用于一些基本的精细切割工作。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hairbrush" msgid_plural "hairbrushes" msgstr[0] "发梳" @@ -87457,7 +87564,6 @@ msgid "" msgstr "一根长25码的细蜡线缠绕在一个塑料容器上。最适合用来取出塞在牙齿上的熏肉。拆解它可获得细线。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "comb" msgid_plural "combs" msgstr[0] "梳子" @@ -87491,7 +87597,6 @@ msgid "" msgstr "一把带有折叠铰链的梳子,想当油头滑面的时髦少年就带上它吧。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "hair dryer" msgid_plural "hair dryers" msgstr[0] "吹风机" @@ -87504,7 +87609,6 @@ msgid "" msgstr "一个通过加热线圈及推动空气使你的头发变干的电动工具。在没有能运作的电网之后,这不过是一个机械化的镇纸。" #: data/json/items/generic/bathroom_house.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "curling iron" msgid_plural "curling irons" msgstr[0] "卷发钳" @@ -88061,7 +88165,6 @@ msgid_plural "generic cook pots" msgstr[0] "一般烹饪锅" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic plate" msgid_plural "ceramic plates" msgstr[0] "陶瓷盤" @@ -88072,7 +88175,6 @@ msgid "A ceramic dinner plate, unremarkable in every way." msgstr "陶瓷餐盘,各方面都不起眼。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic bowl" msgid_plural "ceramic bowls" msgstr[0] "陶瓷碗" @@ -88083,7 +88185,6 @@ msgid "A perfectly ordinary ceramic soup bowl." msgstr "非常普通的陶瓷汤碗。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic cup" msgid_plural "ceramic cups" msgstr[0] "陶瓷杯" @@ -88094,7 +88195,6 @@ msgid "A light ceramic teacup. Quite classy." msgstr "轻陶瓷茶杯。相当优雅。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "coffee mug" msgid_plural "coffee mugs" msgstr[0] "咖啡馬克杯" @@ -88174,7 +88274,6 @@ msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" msgstr "马克杯的测面写着“肆♂意♂纵♂酒”。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin plate" msgid_plural "tin plates" msgstr[0] "錫盤" @@ -88185,7 +88284,6 @@ msgid "A tin dinner plate, lightweight and clanky." msgstr "錫製餐盤,輕巧而緊湊。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin cup" msgid_plural "tin cups" msgstr[0] "錫杯" @@ -88198,7 +88296,6 @@ msgid "" msgstr "搪瓷锡杯。非常适合露营或监狱使用;敲着杯沿叮当作响,发出美妙的声音。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pewter bowl" msgid_plural "pewter bowls" msgstr[0] "錫碗" @@ -88209,7 +88306,6 @@ msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "无盖的小锡碗。 容纳250毫升液体。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "drinking glass" msgid_plural "drinking glasses" msgstr[0] "玻璃水杯" @@ -88220,7 +88316,6 @@ msgid "A tall drinking glass." msgstr "高腳玻璃杯。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wine glass" msgid_plural "wine glasses" msgstr[0] "玻璃酒杯" @@ -88233,7 +88328,6 @@ msgid "" msgstr "高脚玻璃酒杯,让你喝酒时自觉品味非凡。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass bowl" msgid_plural "glass bowls" msgstr[0] "玻璃碗" @@ -88266,7 +88360,6 @@ msgid "A plastic bowl with a convenient sealing lid. Holds 750 ml of liquid." msgstr "一个带有方便密封盖的塑料碗,可以储存750毫升液体。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "kiddie bowl" msgid_plural "kiddie bowls" msgstr[0] "儿童碗" @@ -88308,7 +88401,6 @@ msgid "There are cute farm animals decorating this bowl." msgstr "这个碗上有着可爱的农场动物做装饰。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sippy cup" msgid_plural "sippy cups" msgstr[0] "吸管杯" @@ -88349,7 +88441,6 @@ msgid "" msgstr "这个小杯上装饰着蜡笔字般的文字,上面写着“我爱你”。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pot" msgid_plural "pots" msgstr[0] "鍋子" @@ -88360,7 +88451,6 @@ msgid "Useful for boiling water when cooking spaghetti and more." msgstr "適合燒水、煮義大利麵, 還有其他用途。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron pot" msgid_plural "cast-iron pots" msgstr[0] "鑄鐵鍋子" @@ -88372,7 +88462,6 @@ msgid "" msgstr "這款厚重的黑色鍋由鑄鐵製成,並塗有堅固的琺瑯。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper pot" msgid_plural "copper pots" msgstr[0] "銅鍋" @@ -88385,7 +88474,6 @@ msgid "" msgstr "適合燒水煮義大利麵或是其他用途。由銅製成, 鍍上了錫質內襯防止受酸性食物侵蝕。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "casserole" msgid_plural "casseroles" msgstr[0] "法國砂鍋" @@ -88398,7 +88486,6 @@ msgid "" msgstr "一只陶瓷砂锅,能烹饪或者上菜用,特别是当晚餐是一锅烩菜的时候。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "stock pot" msgid_plural "stock pots" msgstr[0] "湯鍋" @@ -88411,7 +88498,6 @@ msgid "" msgstr "一只用来熬汤的大锅。稍微挤挤的话,你可以塞进去一整只火鸡。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "canning pot" msgid_plural "canning pots" msgstr[0] "隔水加熱鍋" @@ -88429,7 +88515,6 @@ msgstr "" "雖然它也可以用於烹飪一般食物。用它加熱罐裝食物需要大量的水。如果你一次只罐裝幾個罐子的話, 可以用石頭或其他東西填充以讓水位淹過罐子。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" msgstr[0] "鑄鐵平底鍋" @@ -88441,7 +88526,6 @@ msgid "" msgstr "用鐵鑄造的, 不僅可以防身, 還可以拿來煮菜。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel frying pan" msgid_plural "steel frying pans" msgstr[0] "鋼平底鍋" @@ -88453,7 +88537,6 @@ msgid "" msgstr "鋼製的平底鍋。可當作不錯的近戰武器,也能拿來煮東西。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper frying pan" msgid_plural "copper frying pans" msgstr[0] "銅平底鍋" @@ -88466,7 +88549,6 @@ msgid "" msgstr "鋼製的平底鍋,塗有一層薄錫。可當作不錯的近戰武器,也能拿來煮東西。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift pot" msgid_plural "makeshift pots" msgstr[0] "粗製鍋子" @@ -88479,7 +88561,6 @@ msgid "" msgstr "由金屬片錘打成的粗製鍋。足以用來煮食和燒開水, 但不及合適的炊具那麼好用。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift copper pot" msgid_plural "makeshift copper pots" msgstr[0] "粗製銅鍋" @@ -88492,7 +88573,6 @@ msgid "" msgstr "由銅片錘打成的粗製鍋。足以用來煮食和燒開水, 但不及合適的炊具那麼好用。" #: data/json/items/generic/dining_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kettle" msgid_plural "kettles" msgstr[0] "燒水壺" @@ -88792,7 +88872,6 @@ msgid "" msgstr "一根3英尺(约90厘米)长的生皮或皮革绳。适用于某些用途,但没有标准绳子那么坚固或灵活。" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "short string" msgid_plural "short strings" msgstr[0] "短线" @@ -88803,7 +88882,6 @@ msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "一根六英寸(约15厘米)长的棉线。" #: data/json/items/generic/string.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long string" msgid_plural "long strings" msgstr[0] "長繩" @@ -90021,7 +90099,7 @@ msgstr "一把源自意大利的双管半自动手枪,每次发射两发子弹 #: data/json/items/gun/shot.json data/json/items/ranged/pneumatic.json #: data/mods/CRT_EXPANSION/items/crt_gun.json #: data/mods/Generic_Guns/firearms/obsolete.json -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "double" msgstr "雙發" @@ -92924,7 +93002,7 @@ msgstr "这是一个伪物品——核聚变爆破器的内置部分,用于最 #: data/json/items/gunmod/bionicmods.json #: data/json/items/gunmod/underbarrel.json data/json/obsoletion/items.json #: data/mods/CRT_EXPANSION/items/crt_gunmods.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "underbarrel" msgstr "槍管附掛" @@ -93234,7 +93312,7 @@ msgid "" msgstr "將槍枝廢氣往上排除, 抑制槍口上揚, 降低後座力但增加噪音與減少準確性。" #: data/json/items/gunmod/muzzle.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "muzzle" msgstr "槍口" @@ -93403,7 +93481,7 @@ msgid "" msgstr "在長槍槍管上安裝十字弓臂與發射滑軌的模組。能夠發射十字弓箭矢。" #: data/json/items/gunmod/rail.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "rail" msgstr "滑軌" @@ -93513,7 +93591,7 @@ msgid "" msgstr "一套可调节的光学镜片和瞄准针具,以及能安装在现代弓上的支架。极大地提升了命中率,但需要很长时间瞄准。" #: data/json/items/gunmod/sights.json -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "sights" msgstr "瞄準具" @@ -97346,13 +97424,11 @@ msgid "" msgstr "一根由高科技材料制成的长而锋利的丝线,末端带有一个小配重。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "generic kitchen knife" msgid_plural "generic kitchen knives" msgstr[0] "通用菜刀" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butcher knife" msgid_plural "butcher knives" msgstr[0] "菜刀" @@ -97365,7 +97441,6 @@ msgid "" msgstr "一把銳利又沈重的刀子。能夠作為良好的近戰武器, 也是用來屠宰屍體的理想物品。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steak knife" msgid_plural "steak knives" msgstr[0] "餐刀" @@ -97378,7 +97453,6 @@ msgid "" msgstr "一把銳利的刀子。能夠作為近戰武器是不合格的, 但是至少還能用來屠宰屍體。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paring knife" msgid_plural "paring knives" msgstr[0] "削皮刀" @@ -97391,7 +97465,6 @@ msgid "" msgstr "这是一把刀口锋利的短刃刀,可以在不使用砧板的情况下对蔬菜进行精细切割。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chef knife" msgid_plural "chef knives" msgstr[0] "廚師刀" @@ -97407,7 +97480,6 @@ msgstr "" "这是一把长刃菜刀。刀片比手柄宽,为持用者的指关节提供了空间,并且它具有的独特弧度利于切割蔬菜的快速摆动。它是一种很好的近战武器,但宽刃用于屠宰相当笨拙。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carving knife" msgid_plural "carving knives" msgstr[0] "雕刻刀" @@ -97421,7 +97493,6 @@ msgid "" msgstr "这是一把长刃菜刀,有一个轻薄的、稍微弯曲的刀刃,能够灵巧地将肉切成薄片或剃干净骨头。这将是一种不错的近战武器,非常适合用来屠宰尸体。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bread knife" msgid_plural "bread knives" msgstr[0] "麵包刀" @@ -97435,7 +97506,6 @@ msgid "" msgstr "这把刀有相当长的刀刃,刀刃呈扇形,用来切面包。它没有那么锋利,但是它的长度和重量意味着它会造成一点伤害,并引起一些严重的撕裂。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vegetable cleaver" msgid_plural "vegetable cleavers" msgstr[0] "切菜刀" @@ -97449,7 +97519,6 @@ msgid "" msgstr "这是一把看起来很凶险的刀,刀身宽大,呈方形。刀刃弯曲能够快速切开蔬菜。它的分量和锋利度也会使它成为一种不错的武器,虽然不如剁肉刀。" #: data/json/items/melee/knives_kitchen.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "meat cleaver" msgid_plural "meat cleavers" msgstr[0] "切肉刀" @@ -100685,7 +100754,6 @@ msgid "" msgstr "這是一種粉狀的彩色布料染料,如果與水和某些媒染劑結合使用,可用於對許多織物進行染色。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "glass shard" msgid_plural "glass shards" msgstr[0] "玻璃碎片" @@ -100698,7 +100766,6 @@ msgid "" msgstr "一片碎玻璃,边缘锋利。包上一块布可以作为一个原始的武器使用。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of glass" msgid_plural "sheets of glass" msgstr[0] "玻璃片" @@ -100718,7 +100785,6 @@ msgid "" msgstr "一大片玻璃。易碎。能用於修理窗戶。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of reinforced glass" msgid_plural "sheets of reinforced glass" msgstr[0] "強化玻璃片" @@ -100730,7 +100796,6 @@ msgid "A large sheet of glass strengthened with steel wiring." msgstr "一大片以鋼絲補強的強化玻璃。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pane of reinforced glass" msgid_plural "panes of reinforced glass" msgstr[0] "強化玻璃窗框" @@ -100742,7 +100807,6 @@ msgid "A small pane of glass strengthened with steel wiring." msgstr "利用鋼線強化的的玻璃窗框。" #: data/json/items/resources/glass.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet of tempered glass" msgid_plural "sheets of tempered glass" msgstr[0] "钢化玻璃片" @@ -100837,7 +100901,6 @@ msgid "A roll of purple carpet." msgstr "一卷紫色地毯。" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "peephole" msgid_plural "peepholes" msgstr[0] "窺孔" @@ -100850,7 +100913,6 @@ msgid "" msgstr "一個內嵌小透鏡的金屬圓柱, 可以裝在門上。" #: data/json/items/resources/home_improvement.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "mesh screen" msgid_plural "mesh screens" msgstr[0] "網幕" @@ -100861,7 +100923,6 @@ msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "一卷細篩網,作為門廊上的防蟲欄。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pipe" msgid_plural "pipes" msgstr[0] "鋼管" @@ -100873,7 +100934,6 @@ msgid "" msgstr "一根鋼管, 能作為良好的近戰武器。能用於某些物品製作配方。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap metal" msgid_plural "scrap metals" msgstr[0] "金属废料" @@ -100887,7 +100947,6 @@ msgstr "各式各样的小块金属碎片,经过整理,可用于制造各种 #: data/json/items/resources/metal.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "spike" msgid_plural "spikes" msgstr[0] "尖刺" @@ -100900,7 +100959,6 @@ msgid "" msgstr "一根有點不太利的大尖刺, 裝在車上可以造成一些傷害。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "copper tubing" msgid_plural "copper tubings" msgstr[0] "銅管" @@ -100913,7 +100971,6 @@ msgid "" msgstr "一根銅管, 太細了以至於很難作為近戰武器, 但在別無選擇時仍然可以發揮作用。能用於某些物品製作配方。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "aluminum ingot" msgid_plural "aluminum ingots" msgstr[0] "鋁錠" @@ -100927,7 +100984,6 @@ msgid "" msgstr "一個小鋁錠,能夠被進一步處理。輕量且耐用,能夠鑄造成各種形狀來進行建造,或是壓成粉末,或者… 更高深的應用。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bismuth" msgid_plural "bismuth" msgstr[0] "鉍塊" @@ -100938,7 +100994,6 @@ msgid "A dense but brittle metal often used as an alternative to lead." msgstr "一種重而脆的金屬, 常常用來代替鉛。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "gold" msgid_plural "gold" msgstr[0] "金塊" @@ -100952,13 +101007,11 @@ msgid "" msgstr "一種硬而閃亮的金屬。在大災變之前, 這會是一筆不小的橫財, 但現在它的價值大打折扣。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "platinum" msgid_plural "platinum" msgstr[0] "鉑塊" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "zinc" msgid_plural "zinc" msgstr[0] "鋅" @@ -100973,7 +101026,6 @@ msgid "" msgstr "一種易碎的金屬。除了是人體所需的重要礦物質外,它還與酸、鹼以及其他非金屬容易起反應。它可以粉碎製成鋅粉,用於生產電池等。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lead" msgid_plural "lead" msgstr[0] "鉛" @@ -100986,7 +101038,6 @@ msgid "" msgstr "一種暗沉而柔軟的金屬, 在古代已經為人類所應用。由於延展性強, 它具有廣泛的用途, 包括製造彈藥。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "鎂粉" @@ -100999,7 +101050,6 @@ msgid "" msgstr "一堆灰色粉末, 含有高度易燃的鹼土金屬鎂。能用來製造照明彈或類似物品。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "silver" msgid_plural "silver" msgstr[0] "銀塊" @@ -101014,7 +101064,6 @@ msgstr "" "\"据说用银做的子弹可以对僵尸造成更大的伤害,但可惜敌人是丧尸。\"" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "small metal sheet" msgid_plural "small metal sheets" msgstr[0] "小型薄钢板" @@ -101025,7 +101074,6 @@ msgid "A small sheet of metal." msgstr "一片小型金屬板。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "chunk of steel" msgid_plural "chunks of steel" msgstr[0] "钢块" @@ -101038,7 +101086,6 @@ msgid "" msgstr "一個畸形的鋼塊, 能作為不錯的武器, 也能用於一些物品製作配方。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "lump of steel" msgid_plural "lumps of steel" msgstr[0] "钢锭" @@ -101049,7 +101096,6 @@ msgid "A heavy formed piece of steel. Useful for some crafting recipes." msgstr "一個沉重的鋼塊。能用於一些物品製作配方。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "door hinge" msgid_plural "door hinges" msgstr[0] "门铰链" @@ -101062,7 +101108,6 @@ msgid "" msgstr "一組小型金屬鉸鏈,有兩個螺絲孔的金屬板。用於製作門。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "銅碎" @@ -101073,7 +101118,6 @@ msgid "A small chunk of copper, usable for crafting or repairs." msgstr "一小塊的銅, 能用於製作或修理。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "tin" msgid_plural "tin" msgstr[0] "锡" @@ -101086,7 +101130,6 @@ msgid "" msgstr "锡可以用来制作焊料,也可以镀在容器上防止腐蚀。" #: data/json/items/resources/metal.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "solder" msgid_plural "solder" msgstr[0] "焊料" @@ -101119,7 +101162,6 @@ msgid "" msgstr "一根長柄掃帚。除了拿來追貓以外是相當差勁的武器選擇。" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "ceramic shard" msgid_plural "ceramic shards" msgstr[0] "陶瓷碎片" @@ -101176,7 +101218,6 @@ msgid "" msgstr "導火線,長度足夠讓你有時間可以遠離大部分的爆炸。" #: data/json/items/resources/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sharp rock" msgid_plural "sharp rocks" msgstr[0] "尖石頭" @@ -101240,7 +101281,6 @@ msgid "A mattress made of wool. It is quite soft and comfortable." msgstr "一个羊毛床垫。它相当柔软舒适。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic chunk" msgid_plural "plastic chunks" msgstr[0] "塑膠塊" @@ -101266,7 +101306,6 @@ msgid "" msgstr "一卷細緻的碳素纤维絲,用來製作輕巧又堅固的物品。 如果您有3D打印机,這將非常有用,更先進的機型甚至可以讓您製作更多。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "化纤布片" @@ -101280,8 +101319,6 @@ msgid "" msgstr "一小束合成化纤。与你和其他天然材料不同,它不会随着年龄的增长而衰老退化。不过也许现在这不算什么坏事了。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic sheet" msgid_plural "plastic sheets" msgstr[0] "塑膠床單" @@ -101294,7 +101331,6 @@ msgid "" msgstr "這是一大張厚重的軟塑膠,可用於商業包裝或家用防水。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "rigid plastic sheet" msgid_plural "rigid plastic sheets" msgstr[0] "硬塑料板" @@ -101307,7 +101343,6 @@ msgid "" msgstr "一整片坚硬的半透明塑料,可用于各种用途;从搭建建筑到艺术作品,甚至还能当作入门级滑雪板使用。" #: data/json/items/resources/plastic.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "plastic scrap" msgid_plural "plastic scraps" msgstr[0] "塑料废料" @@ -101320,7 +101355,6 @@ msgid "" msgstr "这是一小块塑料。本身无用,但是收集够多就可以融成塑料片。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "log" msgid_plural "logs" msgstr[0] "原木" @@ -101333,7 +101367,6 @@ msgid "" msgstr "一大塊原木,從樹上砍下來的。使用木斧或木鋸將其切成木板。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "碎木" @@ -101344,7 +101377,6 @@ msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "一塊木頭碎片, 可以拿來當火種生火或是作串燒。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy stick" msgid_plural "heavy sticks" msgstr[0] "木棍" @@ -101355,7 +101387,6 @@ msgid "A sturdy, heavy stick. Makes a decent melee weapon." msgstr "一根堅固的重棒。相當適合作為近戰武器。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long stick" msgid_plural "long sticks" msgstr[0] "長木棍" @@ -101368,7 +101399,6 @@ msgid "" msgstr "一根長的木棍。適合用於作為近戰武器, 而且可以切短為製作物品需用的木棍。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "long pole" msgid_plural "long poles" msgstr[0] "長棍" @@ -101380,8 +101410,7 @@ msgid "" "gives fresh meaning to walking softly and carrying a big stick." msgstr "一根十英尺(3米)长的粗壮杆子。能当作矛使。大灾变的情况下拿着一根大棍子轻悄悄的走路还算有点新意。" -#: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json src/crafting_gui.cpp +#: data/json/items/resources/wood.json src/crafting_gui.cpp msgid "plank" msgid_plural "planks" msgstr[0] "角材" @@ -101395,7 +101424,6 @@ msgid "" msgstr "一塊窄長厚實的木材,如 2x4 或類似尺寸的木材。可當作不錯的近戰武器,而且可用於各種建築。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "heavy wooden beam" msgid_plural "heavy wooden beams" msgstr[0] "重木樑" @@ -101409,7 +101437,6 @@ msgid "" msgstr "巨大的實木樑,非常沉重,很難隨身拖行,但也是非常堅固的建材。你可以鋸或切成小塊,如角材或木板。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wooden panel" msgid_plural "wooden panels" msgstr[0] "木板" @@ -101426,7 +101453,6 @@ msgstr "" "膠合板,OSB,MDF,榫槽板或類似物,已經切割成形。這些大型平板適用於各種建築,但對於真正的大型項目,你需要一塊合適的未切割的膠合板或類似物。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "large wooden sheet" msgid_plural "large wooden sheets" msgstr[0] "大木板" @@ -101441,7 +101467,6 @@ msgstr "" "標準的 4x8 平板木板 - 通常是膠合板,OSB或MDF。又大又重,適用於各種類的建設,但在進行小型項目之前,你可能需要將其切割成適合的尺寸。" #: data/json/items/resources/wood.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "fuel briquette" msgid_plural "fuel briquettes" msgstr[0] "燃料砖" @@ -101474,7 +101499,6 @@ msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "一個便於存放的軟性塑膠瓶, 能裝入 500 毫升的液體。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic coffee maker" msgid_plural "atomic coffee makers" msgstr[0] "原子咖啡壺" @@ -101493,7 +101517,6 @@ msgstr "" "G型原子咖啡机在大多数国家都被禁用。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "butchering kit" msgid_plural "butchering kits" msgstr[0] "屠宰工具箱" @@ -101517,7 +101540,6 @@ msgid "This is a crafting_pseudo_item if you have it something is wrong." msgstr "这是一个虚拟物品,正常不应该出现在你的游戏里。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "can sealer" msgid_plural "can sealers" msgstr[0] "罐頭封口機" @@ -101530,7 +101552,6 @@ msgid "" msgstr "一部鋼製的手搖機器, 用於自動密封錫罐。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric carver (off)" msgid_plural "electric carvers (off)" msgstr[0] "電動鋸刀 (關閉)" @@ -101568,7 +101589,6 @@ msgid "This carver is on and the blades are buzzing. Use it to turn it off." msgstr "這把開著的電動鋸刀正產生嗡嗡的叫著。使用它來關閉。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal water purifier" msgid_plural "charcoal water purifiers" msgstr[0] "木炭淨水器" @@ -101585,7 +101605,6 @@ msgstr "" "就不能再使用只能拆解回收。河川之類的的水源有可能是被污染的。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal smoker" msgid_plural "charcoal smokers" msgstr[0] "碳烤爐" @@ -101598,7 +101617,6 @@ msgid "" msgstr "是個攜帶式的碳烤爐。週末烤肉與煙燻肉來長期保存的良伴。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal cooker" msgid_plural "charcoal cookers" msgstr[0] "木炭炊具" @@ -101611,7 +101629,6 @@ msgid "" msgstr "附帶點火器的小型儲煤金屬罐, 你可以用它來煮食。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay pot" msgid_plural "clay pots" msgstr[0] "陶鍋" @@ -101622,7 +101639,6 @@ msgid "A crude clay pot with lid used for cooking." msgstr "一個粗製的有蓋陶鍋, 可以用來烹煮。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay quern" msgid_plural "clay querns" msgstr[0] "陶磨" @@ -101633,7 +101649,6 @@ msgid "This is a simple hand-powered clay quern for grinding grain." msgstr "一個用人力的簡單陶磨用以磨穀物。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay teapot" msgid_plural "clay teapots" msgstr[0] "陶製茶壺" @@ -101644,7 +101659,6 @@ msgid "A clay teapot. Now all you need is tea and water." msgstr "一個陶製茶壺, 你現在只差茶葉和水。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "coffeemaker" msgid_plural "coffeemakers" msgstr[0] "咖啡機" @@ -101659,7 +101673,6 @@ msgstr "" "這是一個具有用來承裝咖啡或其它粉末的壺及架子組合而成的加熱元件。它有一個當沒市電供給時可用來放置電池的空間。你可以用它來製作咖啡, 或你所選的其它飲料。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food dehydrator" msgid_plural "food dehydrators" msgstr[0] "食物脫水機" @@ -101672,7 +101685,6 @@ msgid "" msgstr "這是一個攜帶式電子食物 脫水機。需要靠電池驅動, 就能夠把食物脫水達到長期保存的目的。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting eggs jar" msgid_plural "fermenting eggs jars" msgstr[0] "一罐發酵中的醃蛋" @@ -101697,7 +101709,6 @@ msgid "" msgstr "這罐貯存了一批醃製中的蛋。你可在發酵完成後封裝以長期儲存。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hexamine stove" msgid_plural "hexamine stoves" msgstr[0] "烏洛托品爐" @@ -101710,7 +101721,6 @@ msgid "" msgstr "被稱為 Esbit 爐, 這是一種輕量的折疊式煮食爐, 使用小烏洛托品片作燃料。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "small sealed yeast culture" msgid_plural "small sealed yeast culture" msgstr[0] "小罐密封酵母" @@ -101792,7 +101802,6 @@ msgid "" msgstr "水、糖、水果和一些野生酵母的混合物,最终会产生一个更大的酵母培养物。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "food processor" msgid_plural "food processors" msgstr[0] "食品加工機" @@ -101805,7 +101814,6 @@ msgid "" msgstr "一個可以將食材切片、剁碎、切絲、磨碎、製漿以及混合的廚房用具。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gasoline cooker" msgid_plural "gasoline cookers" msgstr[0] "汽油炊具" @@ -101830,7 +101838,6 @@ msgid "" msgstr "這是一種化學發熱貼。能用於治療運動損傷和加熱食物。只可以使用一次。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hotplate" msgid_plural "hotplates" msgstr[0] "電熱板" @@ -101902,7 +101909,6 @@ msgid "" msgstr "一個密封玻璃罐裝著一些德國酸菜。使用它來開啟享用。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift vacuum sealer" msgid_plural "makeshift vacuum sealers" msgstr[0] "粗製真空封口機" @@ -101915,7 +101921,6 @@ msgid "" msgstr "手工製熱塑封口機, 配有空氣幫浦, 可將食物真空密封保存。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess kit" msgid_plural "mess kits" msgstr[0] "野炊用具組" @@ -101929,7 +101934,6 @@ msgid "" msgstr "一個設備齊全的露營野炊用具組, 你野炊所需要的工具都在裡面。它藉由一個電池驅動的電熱器來烹調, 而不是比較常見的瓦斯爐。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mess tin" msgid_plural "mess tins" msgstr[0] "軍用飯盒" @@ -101943,7 +101947,6 @@ msgid "" msgstr "一套簡潔精巧具軍事風格的平鍋和盤子, 專為在火堆或便攜式爐子上加熱食物。它比一般的鍋子來得淺, 且缺乏野炊用具組常有的集成加熱元件。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "military mess kit" msgid_plural "military mess kits" msgstr[0] "軍用野炊用具組" @@ -101961,7 +101964,6 @@ msgstr "" "而不是容易冒煙的瓦斯爐。更小巧、耐用、輕盈。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mortar and pestle" msgid_plural "mortars and pestles" msgstr[0] "研钵和杵" @@ -101976,7 +101978,6 @@ msgid "" msgstr "這是一個小磨石和碗狀石的簡單組合。用於研磨穀物, 但相比起其他複雜的方法較為耗時。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi cooker" msgid_plural "multi cookers" msgstr[0] "大同電鍋" @@ -102006,7 +102007,6 @@ msgstr "" "一种民用级的多功能厨师机。在旅行野营时使用电池供电。它的许多设置和功能,号称可以处理任何烹饪,从煮马铃薯煮咖哩到做爆米花。虽然没有使用手册,但你确定你会用。这里面有盘菜正在烹饪。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lamp oil cooker" msgid_plural "lamp oil cookers" msgstr[0] "燈油炊具" @@ -102019,7 +102019,6 @@ msgid "" msgstr "這是個簡單的加熱器, 使用燈油作燃料。烹調食物用。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pasta extruder" msgid_plural "pasta extruders" msgstr[0] "手搖製麵機" @@ -102032,7 +102031,6 @@ msgid "" msgstr "一台手搖製麵機。能拿來製作麵條。能藉由更換不同的噴嘴, 來擠出各式各樣的麵食。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting pickle jar" msgid_plural "fermenting pickle jars" msgstr[0] "一罐發酵中的酸黃瓜" @@ -102057,7 +102055,6 @@ msgid "" msgstr "這個罐子貯存了一批發酵中的黃瓜。你可在發酵完成後封裝以長期儲存。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "soda can stove kit" msgid_plural "soda can stove kits" msgstr[0] "鋁罐爐具組" @@ -102070,7 +102067,6 @@ msgid "" msgstr "这是一个超轻型酒精燃烧炉,有着火力密封环。它配备了一个500毫升的容器,以容纳提炼过的酒精燃料。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pressure cooker" msgid_plural "pressure cookers" msgstr[0] "壓力鍋" @@ -102084,7 +102080,6 @@ msgid "" msgstr "在烹調義大利麵條以及其他東西時用來將水煮沸的時候很有用。這個密封的鍋被設計成將食品在高壓和高溫下烹調,也可以於壓敏化學反應。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "quern" msgid_plural "querns" msgstr[0] "石磨" @@ -102095,7 +102090,6 @@ msgid "This is a simple hand-powered stone quern for grinding grain." msgstr "一個簡單的人力石磨, 能磨穀類。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_ingredients.json msgid "fermenting sauerkraut jar" msgid_plural "fermenting sauerkraut jars" msgstr[0] "一罐發酵中的德國酸菜" @@ -102144,7 +102138,6 @@ msgid "" msgstr "这是一种由铜制成的原始蒸馏工具,带有一个作为冷凝器的长颈。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "survivor mess kit" msgid_plural "survivor mess kits" msgstr[0] "生存者野炊套件組" @@ -102158,7 +102151,6 @@ msgid "" msgstr "一個自製的野炊套件組, 所有用來烹煮災難後菜餚的工具都裝在裡頭。使用煤油燈來烹煮食物, 這套裝備容易組裝卻無比耐用。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "teapot" msgid_plural "teapots" msgstr[0] "茶壺" @@ -102169,7 +102161,6 @@ msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "一個金屬製的小茶壺。喝下午茶時, 要有個茶壺才完美。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vacuum sealer" msgid_plural "vacuum sealers" msgstr[0] "真空封口機" @@ -102182,7 +102173,6 @@ msgid "" msgstr "攜帶型熱塑封口機, 配有空氣幫浦, 可將食物真空密封保存。" #: data/json/items/tool/cooking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "waffle iron" msgid_plural "waffle irons" msgstr[0] "格子鬆餅烤盤" @@ -102265,7 +102255,6 @@ msgid "" msgstr "這是一個軍事風格的折疊床。雖然以床來說它躺起來可能不是很舒服, 但總比睡在堅硬的地板上更好。" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folding bicycle" msgid_plural "folding bicycles" msgstr[0] "折疊式自行車" @@ -102280,6 +102269,21 @@ msgstr "你展開了自行車, 準備騎乘。" msgid "This is a bicycle folded into a relatively portable package." msgstr "一輛能折疊成便利攜帶的自行車。" +#: data/json/items/tool/deployable.json +msgid "skateboard" +msgid_plural "skateboards" +msgstr[0] "滑板" + +#. ~ Use action unfold_msg for {'str': 'skateboard'}. +#: data/json/items/tool/deployable.json +msgid "You lay the skateboard down on the ground." +msgstr "你把滑板放在地上。" + +#. ~ Description for {'str': 'skateboard'} +#: data/json/items/tool/deployable.json +msgid "This is a skateboard." +msgstr "这是一块滑板。" + #. ~ Description for {'str': 'metal butchering rack'} #: data/json/items/tool/deployable.json msgid "" @@ -102288,7 +102292,6 @@ msgid "" msgstr "金屬屠宰架專門用來將待宰的屍體懸掛起來。它可以折疊,以便於攜行。" #: data/json/items/tool/deployable.json data/json/vehicles/boats.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "inflatable boat" msgid_plural "inflatable boats" msgstr[0] "充氣船" @@ -102336,7 +102339,6 @@ msgid "" msgstr "一种由纤维材料编织而成的大垫子,可代替野餐毯,但用作屠宰工具更有价值。因为太薄不能作为舒适的睡眠场所。它已经被卷起以便于携带。" #: data/json/items/tool/deployable.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "folded butter churn" msgid_plural "folded butter churns" msgstr[0] "黄油搅拌机(折叠)" @@ -102370,7 +102372,6 @@ msgstr "" "\"WWE指定武器。\"" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "advanced UPS" msgid_plural "advanced UPS's" msgstr[0] "高級 UPS" @@ -102385,7 +102386,6 @@ msgid "" msgstr "这是UPS统一化电源的升级版本。设计为军用先进武器提供能量,使用不能充电的钚燃料电池供电以提供更高的效率。它也可以为许多家用电器供能。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camera" msgid_plural "cameras" msgstr[0] "相機" @@ -102399,7 +102399,6 @@ msgid "" msgstr "一台傻瓜型數位相機, 有液晶螢幕, 備用的觀景窗, 以及閃光燈。你可以在液晶螢幕看你的照片, 或是傳送到記憶卡。使用傳統電池。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "professional camera" msgid_plural "professional cameras" msgstr[0] "专业相机" @@ -102417,7 +102416,6 @@ msgstr "" "35mm的数码单反(单镜头反光)相机使用普通电池,带光学/数字取景器,具有自动对焦和变焦镜头和闪光灯的防抖功能。你可以使用它查看已拍摄的照片,或者将照片存储至SD存储卡上;它运行在可充电电池上,可以通过UPS切换充电。在大灾变之前,专业级照片都是使用它拍摄出来的。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone" msgid_plural "cellphones" msgstr[0] "手機" @@ -102446,7 +102444,6 @@ msgstr "" "前提是它已經充足電。同時它具有一個包含鬧鐘功能的時鐘應用程式。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cellphone - Screenlight" msgid_plural "cellphones - Screenlight" msgstr[0] "手机(屏幕光)" @@ -102460,7 +102457,6 @@ msgid "You stop lighting up the screen." msgstr "你關掉螢幕亮光。" #: data/json/items/tool/electronics.json data/mods/Aftershock/items/tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "control laptop" msgid_plural "control laptops" msgstr[0] "操控用筆記型電腦" @@ -102474,7 +102470,6 @@ msgid "" msgstr "一台改造的笔记本,现在可以发送超高频信号来与机器人进行通讯。激活它来遥控机器人,或切换通过UPS充电。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "directional antenna" msgid_plural "directional antennas" msgstr[0] "指向性天線" @@ -102501,7 +102496,6 @@ msgstr "" "\"鉴于目前的治安情况,请在被电击和被吃掉脑子之间选择一个吧,亲。\"" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "e-ink tablet PC" msgid_plural "e-ink tablet PCs" msgstr[0] "平板電腦" @@ -102514,9 +102508,7 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource." msgstr "一台拥有高清彩色电子墨水屏的平板电脑,带有可充电电池,可以切换为从UPS供电。大灾变前的俏玩意,现如今的无价宝。" -#: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Modular_Turrets/items.json +#: data/json/items/tool/electronics.json data/mods/Modular_Turrets/items.json msgid "electrohack" msgid_plural "electrohacks" msgstr[0] "電子駭客" @@ -102534,7 +102526,6 @@ msgstr "" " 25 電量。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (off)" msgid_plural "geiger counters (off)" msgstr[0] "蓋革計數器 (關閉)" @@ -102549,7 +102540,6 @@ msgid "" msgstr "一個用於測量輻射的工具。使用時會詢問你要掃描自己或是地面, 或是持續啟動偵測環境中的輻射。它現在是關閉的。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "geiger counter (on)" msgid_plural "geiger counters (on)" msgstr[0] "蓋革計數器 (啟動)" @@ -102565,7 +102555,6 @@ msgid "" msgstr "一個用於測量輻射的工具。正處於持續偵測模式, 當偵測到環境輻射時會發出響聲。使用它能夠進行關閉、掃描自己或掃描地面。它現在是啟動的。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand-crank charger" msgid_plural "hand-crank chargers" msgstr[0] "手搖充電器" @@ -102595,7 +102584,6 @@ msgid_plural "laptop computers - lit screen" msgstr[0] "笔记本电脑(点亮)" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "mp3 player (off)" msgid_plural "mp3 players (off)" msgstr[0] "MP3 播放器 (關閉)" @@ -102627,7 +102615,6 @@ msgstr "" "你可以在不需要的狀況下關閉。開啟時同時也會影響你的聽力。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "noise emitter (off)" msgid_plural "noise emitters (off)" msgstr[0] "噪音發射器 (關閉)" @@ -102657,7 +102644,6 @@ msgid "" msgstr "这个装置已经打开,发出可怕的噼啪声、碰撞声和其他嘈杂的声音。快点,在它把丧尸吸引过来之前离开它!" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "handheld game system" msgid_plural "handheld game systems" msgstr[0] "掌上型電動" @@ -102672,7 +102658,6 @@ msgid "" msgstr "一个完好的便携式游戏机,它有一个LED屏幕可以在黑暗中使用。您可以使用来玩一会儿,消耗内置电池的电量。也可以设置为从UPS获取电力。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smartphone" msgid_plural "smartphones" msgstr[0] "智慧型手機" @@ -102753,7 +102738,6 @@ msgstr "" "这是一个统一化电源,简称UPS。这是军事设备的民用版本。军用版旨在为先进的武器和装甲提供动力,而民用版可充当许多家用电器的便携式移动电源和逆变器。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vibrator" msgid_plural "vibrators" msgstr[0] "按摩器" @@ -102766,7 +102750,6 @@ msgid "" msgstr "這個吃電池的裝置是用來幫你按摩舒緩僵硬的身體, 使用他來幫助你休息和伸展。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner" msgid_plural "bionic scanners" msgstr[0] "生化插件扫描仪" @@ -102789,7 +102772,6 @@ msgid "" msgstr "一台专门用于探测生化插件的小型金属扫描仪。激活以开始扫描附近尸体上的生化插件。" #: data/json/items/tool/electronics.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bionic scanner (on)" msgid_plural "bionic scanner (on)s" msgstr[0] "生化插件扫描仪(开)" @@ -102803,7 +102785,6 @@ msgid "" msgstr "一台专门用于探测生化插件的小型金属扫描仪。在使用过程中,它将逐渐消耗能量,并自动扫描您附近的尸体,寻找生化插件。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crowbar" msgid_plural "crowbars" msgstr[0] "撬棍" @@ -102817,7 +102798,6 @@ msgid "" msgstr "戰慄時空遊戲中主角高登弗里曼手持的神器。用這個物品能夠在不破壞的前提下撬開鎖住的門, 或是移開人孔蓋。你也可以手持它來把某人的頭打爆。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hairpin lockpick" msgid_plural "hairpin lockpicks" msgstr[0] "发夹开锁器" @@ -102834,7 +102814,6 @@ msgstr "" "这是一枚用手弯成形状的金属发夹,虽然比不上即兴制作的一套工具,但比骨串更容易使用。因为它很脆弱,使用它开锁需要像马盖先那样的技巧,不过可以降低触发警报的几率。如果你蹲下身检查一扇锁住的门,你会优先选择用这个工具开锁,而不是用撬棍。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised lockpick" msgid_plural "improvised lockpicks" msgstr[0] "粗製開鎖器" @@ -102851,7 +102830,6 @@ msgstr "" "这是一套由废金属制成的临时开锁工具,包括撬锁器和扭力扳手。因为它很脆弱,使用它开锁需要像马盖先那样的技巧,不过可以降低触发警报的几率。如果你蹲下身检查一扇锁住的门,你会优先选择用这些工具开锁,而不是用撬棍。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ice axe" msgid_plural "ice axes" msgstr[0] "冰斧" @@ -102866,7 +102844,6 @@ msgstr "" "一把有锤头的冰斧,也称\"冰镐\",是最重要、用途最广的登山装备之一。坚固耐用,鹤嘴形的镐尖可以将丧尸的躯体如冰面般凿穿,也可以撬开门锁与下水道井盖。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift crowbar" msgid_plural "makeshift crowbars" msgstr[0] "粗製撬棍" @@ -102882,7 +102859,6 @@ msgstr "" "这是一个末端被砸扁并弯曲成撬棍的钢管。使用它,你可以撬开锁住的板条箱,或者撬开井盖和门窗。当然,你也可以在紧急关头运用它撬开敌人的脑壳。一物多用,实是居家旅行、杀人放火的必备良品。" #: data/json/items/tool/entry_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "locksmith kit" msgid_plural "locksmith kits" msgstr[0] "鎖匠工具" @@ -103826,7 +103802,6 @@ msgid "" msgstr "這塊火箭糖已被點燃, 伴隨著響亮的嘶嘶聲噴出大量的煙霧。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric firestarter" msgid_plural "electric firestarters" msgstr[0] "電子點火器" @@ -103839,7 +103814,6 @@ msgid "" msgstr "這是個粗製的電子點火器, 可以當作低效的打火機使用。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire drill" msgid_plural "fire drills" msgstr[0] "鑽火器" @@ -103854,7 +103828,6 @@ msgid "" msgstr "這是一個為了起火用的簡單工具, 由兩塊木板和一些線組成。也因為構造過於簡單, 剛開始用它來起火會既慢且難。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "camp fire drill" msgid_plural "camp fire drills" msgstr[0] "營地鑽火器" @@ -103869,7 +103842,6 @@ msgid "" msgstr "這個厚實的鑽火器是用來生火的簡單工具, 由兩塊木板和一些線組成。也因為構造過於簡單, 剛開始用它來生火會既慢且難。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flint and steel" msgid_plural "sets of flint and steel" msgstr[0] "一套打火石" @@ -103883,7 +103855,6 @@ msgid "" msgstr "这是一根镁棒和一个碳钢撞针。用它来点燃火焰。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lighter" msgid_plural "lighters" msgstr[0] "打火機" @@ -103897,7 +103868,6 @@ msgid "" msgstr "這是一個拋棄式的塑膠打火機。在使用許多東西時會用到打火機, 例如香煙, 或是點燃某些東西, 類似汽油彈。你也能使用打火機來點燃附近的物品。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "magnifying glass" msgid_plural "magnifying glasses" msgstr[0] "放大鏡" @@ -103911,7 +103881,6 @@ msgid "" msgstr "這是一個放大鏡, 或許可以用來在太陽光下用來點火。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "matchbook" msgid_plural "matchbooks" msgstr[0] "火柴盒" @@ -103928,7 +103897,6 @@ msgstr "" "類似汽油彈。你也能使用火柴來點燃附近的物品。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "refillable lighter" msgid_plural "refillable lighters" msgstr[0] "可充填打火機" @@ -103967,7 +103935,6 @@ msgid "" msgstr "這是一個翻蓋式的可充填打火機。它現在是點燃的。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier" msgid_plural "ember carriers" msgstr[0] "餘火裝載器" @@ -103996,7 +103963,6 @@ msgid "" msgstr "這是一個裝載火種的小型容器,鑽了用作提供穩定空氣流動的洞,它可以燒起一個悶燒的餘火一段長時間,能在不使用現代工具下生火。" #: data/json/items/tool/fire.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "ember carrier (lit)" msgid_plural "ember carriers (lit)" msgstr[0] "餘火裝載器 (點燃)" @@ -104031,7 +103997,6 @@ msgid "" msgstr "一款电池供电的点火器。比简单的电子火种工具更高效,其电池寿命相当长。" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crash axe" msgid_plural "crash axes" msgstr[0] "应急斧" @@ -104057,7 +104022,6 @@ msgid "" msgstr "一种大型的灭火器,包含5加仑的灭火剂。用来扑灭附近的火焰。" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fire axe" msgid_plural "fire axes" msgstr[0] "消防斧" @@ -104070,7 +104034,6 @@ msgid "" msgstr "這是一個大型雙手斧, 通常是消防隊員在使用。它是一把強大的近戰武器, 但就是有點難揮動。" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "哈利根鐵鋌" @@ -104125,7 +104088,6 @@ msgstr "" " pole)" #: data/json/items/tool/firefighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "New York hook" msgid_plural "New York hooks" msgstr[0] "纽约钩" @@ -104138,7 +104100,6 @@ msgid "" msgstr "一根长棍,一端有个双钩,另一端是一个撬棍,用一整块钢锭锻造而成。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic fish trap" msgid_plural "plastic fish traps" msgstr[0] "塑膠製捕魚器" @@ -104170,7 +104131,6 @@ msgstr "" "但这里早就没有警察了。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fishing hook" msgid_plural "fishing hooks" msgstr[0] "魚鉤" @@ -104181,7 +104141,6 @@ msgid "A simple fishing hook." msgstr "一個簡易魚鉤。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "improvised fishing hook" msgid_plural "improvised fishing hooks" msgstr[0] "粗製魚鉤" @@ -104192,7 +104151,6 @@ msgid "An improvised fishing hook carved from wood or bone." msgstr "一個由木頭或是骨頭製成的粗製魚鉤。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic fishing rod" msgid_plural "basic fishing rods" msgstr[0] "簡易釣竿" @@ -104205,7 +104163,6 @@ msgid "" msgstr "用 \"釣竿\" 來稱呼它有點名過其實。事實上, 這只是一根帶著繩子和鈎子的木棒而已。" #: data/json/items/tool/fishing.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pro fishing rod" msgid_plural "pro fishing rods" msgstr[0] "專業釣魚竿" @@ -104218,7 +104175,6 @@ msgid "" msgstr "一把專業的釣魚竿, 配有一套適合的鉛錘。有了這個你就可以把魚兒一網打盡了。" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand press" msgid_plural "hand presses" msgstr[0] "手动压弹机" @@ -104231,7 +104187,6 @@ msgid "" msgstr "一個小型的手壓模具, 讓你可以手工組裝槍枝的子彈。搭載了手壓子彈所需的所有功能。" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift shotshell press" msgid_plural "makeshift shotshell presses" msgstr[0] "简易霰弹压弹机" @@ -104249,7 +104204,6 @@ msgstr "" "这套简易装置可以用来随时重新装填霰弹。它由一根中间开孔的木板、一根中号钉子和一组木销组成,分别用于放置填料、打开并(小心地)装上底火。火木板的另一侧被制成能够碾压卷曲塑料弹壳的形状。" #: data/json/items/tool/handloading.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "kinetic bullet puller" msgid_plural "kinetic bullet pullers" msgstr[0] "卸彈器" @@ -104275,7 +104229,6 @@ msgstr "" "这是一个集多功能于一体的手工装弹工具,包括多级压机、子弹模具、电热板以及用于拆解弹药的夹头拉拔器。安装为家具后,它既可以制造弹药,也可以拆解弹药以获取材料。" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper knife" msgid_plural "copper knives" msgstr[0] "銅刀" @@ -104302,7 +104255,6 @@ msgstr "" "這是一把短且堅固的刀, 附帶鋸齒邊緣的刀刃和皮帶, 以及一個鈍頭的撬口。主要是潛水員在使用, 它很輕, 能放在一個人的口袋裡, 且幾乎不佔用空間。" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "honey scraper" msgid_plural "honey scrapers" msgstr[0] "割蜜刀" @@ -104315,7 +104267,6 @@ msgid "" msgstr "一把鋒利, 長得像刀子的工具, 用來從蜂巢中刮取蜂蜜使用, 可以作為過渡時期的武器。" #: data/json/items/tool/knives.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pocket knife" msgid_plural "pocket knives" msgstr[0] "口袋刀" @@ -104354,7 +104305,6 @@ msgid "" msgstr "一块磨利的石头或陶瓷碎片,插进一个带洞的手柄里。怎么看也不太像匕首,用起来也不那么方便,但总比赤手空拳要好。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "digging stick" msgid_plural "digging sticks" msgstr[0] "掘土棒" @@ -104367,7 +104317,6 @@ msgid "" msgstr "一根尾端為了挖掘而削成刀片狀的大棒, 只可以用來挖淺坑。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "trowel" msgid_plural "trowels" msgstr[0] "園藝鏟" @@ -104379,7 +104328,6 @@ msgid "" msgstr "一把小巧的, 鋒利的園藝鏟, 非常適合挖掘幼蟲和蠕蟲。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hoe" msgid_plural "hoes" msgstr[0] "鋤頭" @@ -104392,7 +104340,6 @@ msgid "" msgstr "一件农具。可用于把可耕种土地锄成难以穿行的土堆,或者挖一个浅坑。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "primitive shovel" msgid_plural "primitive shovels" msgstr[0] "原始铲" @@ -104419,7 +104366,6 @@ msgid "" msgstr "扁平的石头或是陶瓷碎片绑在了木棍上,就当做铁锹用吧,虽然显然比不上啊。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scythe" msgid_plural "scythes" msgstr[0] "大鐮" @@ -104433,7 +104379,6 @@ msgid "" msgstr "這是一個用來割高草的過時農業工具。在棍子末端接上一個大刀刃, 但很難將它靈活運用在原本用途外的地方。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shovel" msgid_plural "shovels" msgstr[0] "鏟子" @@ -104456,7 +104401,6 @@ msgid "" msgstr "这种挖掘工具的手柄较短,便于携带。 它能像其他铲子一样挖洞,但作为武器的效果较差。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sickle" msgid_plural "sickles" msgstr[0] "鐮刀" @@ -104470,7 +104414,6 @@ msgid "" msgstr "這是一個用來割高草的過時農業工具。在握柄處接上一個大彎刀, 但很難將它靈活運用在原本用途外的地方。" #: data/json/items/tool/landscaping.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hedge trimmer (off)" msgid_plural "hedge trimmers (off)" msgstr[0] "修枝機 (關閉)" @@ -104511,7 +104454,6 @@ msgid "" msgstr "無線, 雙面, 汽油動力修枝機。目前正準備對殭屍修剪一下。使用它來關閉。" #: data/json/items/tool/lighting.json data/json/vehicleparts/lights.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp" msgid_plural "atomic lamps" msgstr[0] "原子燈" @@ -104533,7 +104475,6 @@ msgstr "" "由核衰變的魔力驅動和低能耗的LED組,這種非常昂貴的燈將發出少量的光至少十年。在大災變之前,它主要是一種炫耀你預備的昂貴方式。現在,它其實非常酷。使用它來蓋上蓋子並隱藏燈光。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic lamp (covered)" msgid_plural "atomic lamps (covered)" msgstr[0] "原子燈 (蓋上)" @@ -104557,7 +104498,6 @@ msgstr "" "由核衰變的魔力驅動和低能耗的LED組,這種非常昂貴的燈將發出少量的光至少十年。在大災變之前,它主要是一種炫耀你預備的昂貴方式。現在,它其實非常酷。蓋子已經蓋上。使用它來打開蓋子並顯示燈光。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light" msgid_plural "atomic reading lights" msgstr[0] "原子閱讀燈" @@ -104565,7 +104505,7 @@ msgstr[0] "原子閱讀燈" #. ~ Use action msg for {'str': 'atomic reading light'}. #. ~ Use action msg for magical reading light. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You close the nightlight's cover." msgstr "你關上了夜燈的燈罩。" @@ -104581,7 +104521,6 @@ msgstr "" "由核衰變的魔力驅動和低能耗的LED組,這種極其昂貴的小燈將提供十年以上的光線讓你閱讀。它還附有一個可愛卡通熊的蓋子,使它能轉成夜光模式,讓一個超極有錢的小孩不再怕黑。使用它來蓋上蓋子並隱藏燈光。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "atomic reading light (covered)" msgid_plural "atomic reading lights (covered)" msgstr[0] "原子閱讀燈(蓋上)" @@ -104591,7 +104530,7 @@ msgstr[0] "原子閱讀燈(蓋上)" #. ~ Use action msg for {'str': 'magical reading light (covered)', 'str_pl': #. 'magical reading lights (covered)'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You open the nightlight's cover." msgstr "你打開了夜燈的燈罩。" @@ -104642,7 +104581,6 @@ msgid "" msgstr "一根粗蠟燭, 雖然提供不了多少光亮, 但可以持續燃燒很長一段時間。這蠟燭正在燃燒中。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric lantern (off)" msgid_plural "electric lanterns (off)" msgstr[0] "電力燈 (關閉)" @@ -104683,7 +104621,6 @@ msgid "You turn the lamp off." msgstr "你關掉了這盞燈。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "flashlight (off)" msgid_plural "flashlights (off)" msgstr[0] "手電筒 (關閉)" @@ -104836,7 +104773,6 @@ msgid "" msgstr "這是正在發光的鎂光照明彈。將會持續約半小時。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "heavy duty flashlight (off)" msgid_plural "heavy duty flashlights (off)" msgstr[0] "耐用手電筒 (關閉)" @@ -104965,7 +104901,6 @@ msgid "The %s is extinguished" msgstr "%s 熄滅了。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "reading light" msgid_plural "reading lights" msgstr[0] "閱讀燈" @@ -105005,7 +104940,6 @@ msgid "" msgstr "一個附有夾子的小型LED燈,用作在黑暗中閱讀。這個是開啟了的。" #: data/json/items/tool/lighting.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "smart lamp (off)" msgid_plural "smart lamps (off)" msgstr[0] "智慧燈 (關閉)" @@ -105055,7 +104989,7 @@ msgstr[0] "火炬" #. ~ Use action menu_text for {'str': 'everburning torch', 'str_pl': #. 'everburning torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "Light torch" msgstr "點燃火炬" @@ -105063,7 +104997,7 @@ msgstr "點燃火炬" #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "You light the torch." msgstr "你點燃了火炬。" @@ -105079,7 +105013,7 @@ msgstr "吸飽易燃物的布料纏繞在這大木棍上。點燃它可以發出 #. ~ Use action msg for {'str': 'everburning torch', 'str_pl': 'everburning #. torches'}. #: data/json/items/tool/lighting.json -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "The torch is extinguished." msgstr "火炬熄滅了。" @@ -105091,7 +105025,6 @@ msgid "" msgstr "吸飽易燃物的布料纏繞在這大木棍上。點燃它可以發出很高的亮度。" #: data/json/items/tool/masonry.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "masonry saw (off)" msgid_plural "masonry saws (off)" msgstr[0] "切砖机(关)" @@ -105156,7 +105089,6 @@ msgid "" msgstr "一組用來導引手術麻醉的工具包, 包含各種強效催眠藥、止痛藥和興奮藥的專用藥罐。它只能用於專業的醫療設備中, 不能手動使用。" #: data/json/items/tool/med.json data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "autoclave" msgid_plural "autoclaves" msgstr[0] "高壓滅菌器" @@ -105198,7 +105130,6 @@ msgstr "" "Rivtech RX12 注射器是一種手槍外形的小型無針注射器, 用於通過皮膚注射先進的治療藥品。側邊的標籤警示寫著每小時不得使用超過兩劑。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scalpel" msgid_plural "scalpels" msgstr[0] "手術刀" @@ -105225,7 +105156,6 @@ msgid "" msgstr "一小罐醫用壓縮氧, 附帶折疊式調節器和面罩。能夠迅速緩解氣喘症狀和吸入煙霧的影響, 也能讓你在短時間內精神奕奕。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "syringe" msgid_plural "syringes" msgstr[0] "針筒" @@ -105236,7 +105166,6 @@ msgid "A medical syringe. Used for administering intravenous drugs." msgstr "一根醫療用針筒。能進行藥物或毒品的靜脈注射。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "thermometer" msgid_plural "thermometers" msgstr[0] "溫度計" @@ -105260,7 +105189,6 @@ msgid "" msgstr "一個裝滿了醫用壓縮氧的大罐子, 附帶調節器和面罩。能夠迅速緩解氣喘症狀和吸入煙霧的影響, 也能讓你在短時間內精神奕奕。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blood draw kit" msgid_plural "blood draw kits" msgstr[0] "抽血工具" @@ -105274,7 +105202,6 @@ msgid "" msgstr "一套採血用的工具, 包含了保存樣本的試管。用它來採集你自己或是腳下屍體的血液。" #: data/json/items/tool/med.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrapped radiation badge" msgid_plural "wrapped radiation badges" msgstr[0] "包裝的輻射偵測徽章" @@ -105306,7 +105233,6 @@ msgid "" msgstr "這是一個極端沉重且形狀奇特的鋼塊, 其中一端有個鑿子形狀的突出物。能用於大部分的金屬加工配方。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bronze anvil" msgid_plural "bronze anvils" msgstr[0] "青銅鐵砧" @@ -105319,7 +105245,6 @@ msgid "" msgstr "這是一個形狀奇特的青銅塊, 其中一端有個鑿子形狀的突出物。能用於大部分的金屬加工製作配方。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of bolt cutters" msgid_plural "pairs of bolt cutters" msgstr[0] "剪線鉗" @@ -105333,7 +105258,6 @@ msgid "" msgstr "一把大型的剪線鉗, 可以用它來剪斷掛鎖或鐵絲網。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "charcoal forge" msgid_plural "charcoal forges" msgstr[0] "炭火鍛造爐" @@ -105354,7 +105278,6 @@ msgid "" msgstr "一個金屬的長型容器, 利用熱解作用製炭, 在缺氧狀態下完全燃燒有機物。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metalworking chisel" msgid_plural "metalworking chisels" msgstr[0] "鐵工鑿子" @@ -105367,7 +105290,6 @@ msgid "" msgstr "一根短而粗的鐵工鑿子。能用於一些金屬加工配方。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "crucible" msgid_plural "crucibles" msgstr[0] "坩鍋" @@ -105380,7 +105302,6 @@ msgid "" msgstr "一個進行鑄鐵作業時的小坩鍋。能用於一些金屬加工配方。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clay crucible" msgid_plural "clay crucibles" msgstr[0] "陶製坩鍋" @@ -105393,7 +105314,6 @@ msgid "" msgstr "一個由黏土作成的原始坩堝。你可以用來進行金屬加工。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric forge" msgid_plural "electric forges" msgstr[0] "電力鍛造爐" @@ -105410,7 +105330,6 @@ msgstr "" "这是一个便携式的电动金属加工炉,由电池供电。搭配适当的工具,你可以用它来加工金属物品,也可以用于修复金属制品。只要掌握一点机械知识,你甚至可以将其转换为直接从车辆的能源系统中运行。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "燒製完成的木炭窯" @@ -105445,7 +105364,6 @@ msgid "" msgstr "這些填滿爐子的木頭在經過一段緩慢的悶燒之後將會變成木炭。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "點燃的碳化爐" @@ -105480,7 +105398,6 @@ msgid "" msgstr "這是一塊鉚接的鏈甲薄片。如果有足夠的技能, 數個薄片可以被連接製成實用的鎧甲。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "swage and die set" msgid_plural "swage and die sets" msgstr[0] "鍛造模具組" @@ -105493,7 +105410,6 @@ msgid "" msgstr "一組鍛造時使用的型鐵與模具。這些金屬環與鐵塊能用於一些金屬加工配方。" #: data/json/items/tool/metalworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of metal tongs" msgid_plural "pairs of metal tongs" msgstr[0] "鐵鉗" @@ -105529,7 +105445,6 @@ msgid "" msgstr "這是一個小罐子裝填了壓縮空氣連結了塑膠喇叭。按下上方的按鈕就能夠發出巨大的喇叭聲。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "alarm clock" msgid_plural "alarm clocks" msgstr[0] "鬧鐘" @@ -105657,7 +105572,6 @@ msgid "" msgstr "这是一个调试用的测试附魔变异的物品。拿着它就可以不知疲倦,行动隐秘且能夜视。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "entrenching tool" msgid_plural "entrenching tools" msgstr[0] "工兵鏟" @@ -105692,7 +105606,6 @@ msgid "" msgstr "箭頭上纏著吸滿易燃液體的布料, 在發射前必須點燃它。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fur rollmat" msgid_plural "fur rollmats" msgstr[0] "毛皮睡墊" @@ -105711,7 +105624,6 @@ msgid "" msgstr "一張用毛皮製成能卷起攜帶的睡墊。可以讓你跟地板有所阻隔, 更容易入睡。使用它來鋪在地上。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "grappling hook" msgid_plural "grappling hooks" msgstr[0] "抓鉤" @@ -105735,7 +105647,6 @@ msgid "A simple steel meathook with a circular steel handle." msgstr "一个简单钢制挂肉钩,带有个环形的钢把手。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand pump" msgid_plural "hand pumps" msgstr[0] "手動幫浦" @@ -105784,7 +105695,6 @@ msgid "This is a car horn meant to be attached to a car's electrical system." msgstr "這是一個汽車喇叭, 只能連接在汽車的電子系統才有效用。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large space heater" msgid_plural "large space heaters" msgstr[0] "大空間供暖器" @@ -105820,7 +105730,6 @@ msgid "You turn off the heater." msgstr "你關閉了供暖氣。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "lifestraw" msgid_plural "lifestraws" msgstr[0] "生命饮管" @@ -105912,7 +105821,6 @@ msgid "" msgstr "一个经典款怀表,可以让你在查看时间时显得很有派头。可以被拆解成零件。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rollmat" msgid_plural "rollmats" msgstr[0] "睡墊" @@ -105956,7 +105864,6 @@ msgid "" msgstr "被印出來的一串代碼, 能夠用來存取危險廢物堆放場石棺裡的電梯。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small space heater" msgid_plural "small space heaters" msgstr[0] "小空間供暖器" @@ -106104,7 +106011,6 @@ msgid "" msgstr "一顆佈滿螺旋紋路與孔洞的石頭。雖然體積很大, 但是重量卻很輕。空氣似乎圍著它。" #: data/json/items/tool/misc.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "whistle multitool" msgid_plural "whistle multitools" msgstr[0] "多功能哨子" @@ -106226,7 +106132,6 @@ msgid "" msgstr "一把闪闪发光的金色小提琴,被某种奇怪的光环环绕着。你有种这玩意曾经属于某个伟人的感觉。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chicken cage" msgid_plural "chicken cages" msgstr[0] "雞籠" @@ -106240,7 +106145,6 @@ msgid "" msgstr "用於運送雞隻的鐵絲籠,但你可以把任何類似體型的小動物裝進去。使用後選擇合適的動物即可裝入,再次使用它後選擇要放出的方向即可放出。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dog whistle" msgid_plural "dog whistles" msgstr[0] "狗笛" @@ -106254,7 +106158,6 @@ msgid "" msgstr "這是一個小哨子。當使用時, 能夠吹響出高頻音效, 能對自己的狗下達停止攻擊並靠近自己的命令, 或是開始攻擊敵人。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shears" msgid_plural "shears" msgstr[0] "大剪刀" @@ -106265,7 +106168,6 @@ msgid "This is a set of shears designed to obtain wool from sheep." msgstr "这是一把用来剪羊毛的剪刀。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric shears" msgid_plural "electric shears" msgstr[0] "电动剪" @@ -106276,7 +106178,6 @@ msgid "These electric shears can be used to shear animals quicker." msgstr "这把电动剪可以更快的给动物剪毛。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "horse tack" msgid_plural "horse tacks" msgstr[0] "鞍具" @@ -106289,7 +106190,6 @@ msgid "" msgstr "一个鞍座,一副缰绳,以及配套的各类马钉,能够装在已驯服的动物身上,让它供你骑乘。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pet carrier" msgid_plural "pet carriers" msgstr[0] "寵物籠" @@ -106302,7 +106202,6 @@ msgid "" msgstr "一个塑料笼子,可以用来运输小型宠物。激活它后选择需要捕获的动物,或者选择空地放出笼中动物。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden pet carrier" msgid_plural "wooden pet carriers" msgstr[0] "木製寵物籠" @@ -106315,7 +106214,6 @@ msgid "" msgstr "木製的容器,設計用來運送寵物。使用後選擇合適的動物即可裝入,再次使用它後選擇要放出的方向即可放出。" #: data/json/items/tool/pets.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden dog whistle" msgid_plural "wooden dog whistles" msgstr[0] "木制狗哨" @@ -106351,7 +106249,6 @@ msgid "" msgstr "一个遥控车套装,包含无线控制器,还有配套用地电池!拆解它来打开包装并使用。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC control" msgid_plural "RC controls" msgstr[0] "遙控車控制器" @@ -106365,7 +106262,6 @@ msgid "" msgstr "一個遙控車用的控制器, 有著搖桿能控制方向, 以及沒有任何功能的彩色按鈕。也許這些按鈕對豪華版型號的才有用?" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "RC car" msgid_plural "RC cars" msgstr[0] "遙控車" @@ -106400,7 +106296,6 @@ msgid "" msgstr "這一小塊電子組件可以連接在一些物品上, 之後就能以無線電訊號啟動了。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "radio (off)" msgid_plural "radios (off)" msgstr[0] "無線電 (關閉)" @@ -106425,7 +106320,6 @@ msgid "" msgstr "這個攜帶式無線電已經啟動, 將會持續的消耗電力。將會從附近的無線電塔捕捉任何訊號並播放。" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "two-way radio" msgid_plural "two-way radios" msgstr[0] "雙向無線電" @@ -106438,7 +106332,6 @@ msgid "" msgstr "這是個裝有訊號發送元件的無線電。你可以用它來聯繫其他擁有無線電的人。不幸的是,現在似乎沒有人在用了…" #: data/json/items/tool/radio_tools.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "remote vehicle controller" msgid_plural "remote vehicle controllers" msgstr[0] "汽車遙控器" @@ -106513,7 +106406,6 @@ msgstr "這是用來收集雨水的大型金屬漏斗。比塑膠漏斗難攜帶 #: data/json/items/tool/raincatchers.json #: data/json/vehicleparts/vehicle_parts.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tarp raincatcher" msgid_plural "tarp raincatchers" msgstr[0] "防水帆布集雨器" @@ -106530,7 +106422,6 @@ msgid "" msgstr "由一些棍子和绳子与防水油布所搭建的一个简易集雨器。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "barometer" msgid_plural "barometers" msgstr[0] "氣壓計" @@ -106554,7 +106445,6 @@ msgid "" msgstr "上面有個標籤寫著: \"警告: 有毒且腐蝕性極強的材料。內容物可能是有意識的生物。打開風險自負。\" 你覺得你可以感受到裡面有東西在動。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chemistry set" msgid_plural "chemistry sets" msgstr[0] "化學儀器套組" @@ -106568,7 +106458,6 @@ msgid "" msgstr "這是個化學儀器套組。盒內裝著許多玻璃罐、軟管、鐵絲、加熱板、與護目鏡。若你需要的話, 能夠用來製作一些化學物品。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic chemistry set" msgid_plural "basic chemistry sets" msgstr[0] "基本化學儀器套組" @@ -106582,7 +106471,6 @@ msgid "" msgstr "這是個基本化學儀器套組。其中包括玻璃容器、軟管、與護目鏡。若你需要的話, 能夠用來製作一些化學物品, 但是需要熱源。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrolysis kit" msgid_plural "electrolysis kits" msgstr[0] "電解套件" @@ -106608,7 +106496,6 @@ msgid "" msgstr "一大罐压缩丁烷。它可以用来从有机物质中提取精油。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hydrogen tank" msgid_plural "hydrogen tanks" msgstr[0] "氫氣瓶" @@ -106621,7 +106508,6 @@ msgid "" msgstr "这是一个压缩氢气罐。如果你需要从零开始制造水,或者让一架齐柏林飞艇升空,它可能会派上用场。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hygrometer" msgid_plural "hygrometers" msgstr[0] "濕度計" @@ -106632,7 +106518,6 @@ msgid "A plastic hygrometer that can read the relative humidity in the air." msgstr "一個塑膠濕度計, 可以用來檢視環境濕度。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nitrogen tank" msgid_plural "nitrogen tanks" msgstr[0] "氮氣瓶" @@ -106647,7 +106532,6 @@ msgstr "" "\"警告:禁止口鼻接触。\"" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "oxygen cylinder" msgid_plural "oxygen cylinders" msgstr[0] "氧氣缸" @@ -106660,7 +106544,6 @@ msgid "" msgstr "用於儲存加壓氣體的大型鋼瓶。它標有已褪色但仍能辨識的O2符號。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "platinum grille" msgid_plural "platinum grilles" msgstr[0] "鉑格柵" @@ -106709,7 +106592,6 @@ msgid "" msgstr "這是一個實驗性的裝置, 啟動時能將你傳送到不遠的地方。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Doppler Radar Turbo 2000" msgid_plural "Doppler Radar Turbo 2000s" msgstr[0] "渦輪2000型都普勒天氣雷達" @@ -106725,7 +106607,6 @@ msgstr "" "\"FLDSMDFR\" - 發超特食: 動畫電影-食破天驚梗" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "basic laboratory analysis kit" msgid_plural "basic laboratory analysis kits" msgstr[0] "基本的實驗室分析套件" @@ -106742,7 +106623,6 @@ msgstr "" "这个庞大的试剂盒包含了一些基本测量工具,是你在进行任何精确化学操作时不可或缺的工具:包含一个小天平,一个分光度计,一个熔点仪,一个pH计,和一套色谱层析试纸。这让你更确信自己制造出来的化学品的成分是你所想要的成分。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "small weight scale" msgid_plural "small weight scales" msgstr[0] "小磅秤" @@ -106755,7 +106635,6 @@ msgid "" msgstr "一個簡單的磅秤,在滑桿上使用一組鋼製砝碼來測量樣品質量,相當準確。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "spectrophotometer" msgid_plural "spectrophotometers" msgstr[0] "分光光度計" @@ -106768,7 +106647,6 @@ msgid "" msgstr "一个十分常见的分析化学工具,用于测量液体样品在一种被称作比色皿的特殊试管中吸光率。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pH meter" msgid_plural "pH meters" msgstr[0] "酸度計" @@ -106782,7 +106660,6 @@ msgid "" msgstr "一个带着一对玻璃探针的电压表。通过将探针分别放入标准溶液(仪器已配套)和待测物质中,你可以测量酸碱度。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "voltmeter" msgid_plural "voltmeters" msgstr[0] "電壓計" @@ -106797,7 +106674,6 @@ msgid "" msgstr "这个设备有两个探针,让您可以测量两个点之间的电位。激活它可以检查周围任何本地电网连接或电池充电的状态,并且可以对电网连接进行修改。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "melting point apparatus" msgid_plural "units of melting point apparatus" msgstr[0] "熔點測定儀器組件" @@ -106815,7 +106691,6 @@ msgstr "" "一个电炉,外带一个金属外壳。金属外壳上有个带放大镜的观察口,以及一个能插入装有结晶样品的细试管的插槽。这个仪器可以让你精确测量晶体的熔点,可用于鉴定样品的纯度。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "vortex device" msgid_plural "vortex devices" msgstr[0] "渦流裝置" @@ -106832,7 +106707,6 @@ msgstr "" "这是一台小巧、笨重、看起来很无聊的机器。它的加重梯形框架上有一个独立开关和一个快速拨号盘,顶部有一个橡胶容器。将试管压入容器中,通电后会迅速摇晃并混合试管中的内容物。使用起来出人意料的有趣。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "light detector" msgid_plural "light detectors" msgstr[0] "光感測器" @@ -106845,7 +106719,6 @@ msgid "" msgstr "這是芯片上的光電二極管,旨在將入射光轉換為電能以進行量化。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass prism" msgid_plural "glass prisms" msgstr[0] "玻璃棱鏡" @@ -106870,7 +106743,6 @@ msgid "" msgstr "這是一個小玻璃管。不然你想知道什麼?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microscope" msgid_plural "microscopes" msgstr[0] "顯微鏡" @@ -106886,7 +106758,6 @@ msgstr "" "一个经典的工具!这件笨重耐用的实验室设备能让你更清晰地看到小东西。由于没有电,它的灯泡不能工作,但其余的功能却非常完好。不幸的是,事到如今它也没有太多用处了。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "dissecting microscope" msgid_plural "dissecting microscopes" msgstr[0] "解剖顯微鏡" @@ -106903,7 +106774,6 @@ msgstr "" "这台显微镜的放大倍数比标准显微镜小。它也有立体视觉功能,可以生成表面清晰的三维图像。它通常用于对小生物进行解剖或其他精细的工作,添加附加光源后非常好用,但你会如何使用它?" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "separation funnel" msgid_plural "separation funnels" msgstr[0] "分液漏斗" @@ -106921,7 +106791,6 @@ msgstr "" "这东西看起来不像漏斗,更像一块泪珠状的玻璃,宽端有一个塞子,另一端有一个阀门。它可以用来分离一种液体和另一种液体,如水和油,然后抽出两种液体中你要离析的化合物。如果你的技术水平够高,它也可以用来制造幼稚的放屁声。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rotary evaporator" msgid_plural "rotary evaporators" msgstr[0] "旋转蒸发仪" @@ -106939,7 +106808,6 @@ msgstr "" "只要看看这东西,你就会觉得自己是个真正的疯狂科学家。一系列玻璃管和圆烧瓶连接到一个中央电机和一个加热器上。加热器加热一个烧瓶,电机使它保持转动,令内容物蒸发。然后,蒸汽在试管中冷凝,并收集到另一个烧瓶中,以备以后使用。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "fractional distillation apparatus" msgid_plural "fractional distillation apparati" msgstr[0] "分餾儀器" @@ -106959,7 +106827,6 @@ msgstr "" "这是一件经典的疯狂科学玻璃器皿,基本上是一个小体积的蒸馏器,蒸馏物的蒸汽通过分馏塔,然后在一个冷却的收集塔中冷凝。研究生或机器人(真的有什么区别吗?)将蒸馏液收集起来,以便分析具体的成分。如果你用它来蒸馏威士忌,每次大概只能得到几毫升。" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electrophoresis tray" msgid_plural "electrophoresis trays" msgstr[0] "電泳托盤" @@ -106977,7 +106844,6 @@ msgstr "" "\"现在这只是可回收垃圾。\"" #: data/json/items/tool/science.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "microcentrifuge" msgid_plural "microcentrifuges" msgstr[0] "微量離心機" @@ -107034,7 +106900,6 @@ msgid "" msgstr "小型庇護所, 用木棍跟毛皮搭設, 使用它來設置。這東西已經受損, 需要修理。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "large tent" msgid_plural "large tents" msgstr[0] "大型帳篷" @@ -107047,7 +106912,6 @@ msgid "" msgstr "這個家庭號的帳篷裡面有相當多的空間, 但是非常笨重。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "shelter kit" msgid_plural "shelter kits" msgstr[0] "帳篷" @@ -107058,7 +106922,6 @@ msgid "This is a small shelter, made of sticks and skins. Use it to place." msgstr "小型庇護所, 用木棍跟毛皮搭設, 使用它來設置。" #: data/json/items/tool/shelters.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tent" msgid_plural "tents" msgstr[0] "帳篷" @@ -107119,7 +106982,6 @@ msgid "" msgstr "一個手工雕刻的木製煙管, 用來促進菸草工業發展的器具。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "stapler" msgid_plural "staplers" msgstr[0] "订书机" @@ -107130,7 +106992,6 @@ msgid "A stapler for fastening sheets of paper together." msgstr "一种将纸张固定在一起的订书机。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "pen" msgid_plural "pens" msgstr[0] "圆珠笔" @@ -107141,7 +107002,6 @@ msgid "A plastic ball point pen." msgstr "一根塑料圆珠笔。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pair of scissors" msgid_plural "pairs of scissors" msgstr[0] "剪刀" @@ -107155,7 +107015,6 @@ msgid "" msgstr "一把耐用的工艺长剪刀。使用它可以衣物等棉制物品剪割成布条,或有其它用途。" #: data/json/items/tool/stationary.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "paper" msgid_plural "papers" msgstr[0] "纸" @@ -107166,7 +107025,6 @@ msgid "A piece of paper. Can be used for fires." msgstr "一張紙。能夠拿來燒。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone sewing awl" msgid_plural "bone sewing awls" msgstr[0] "骨製縫錐" @@ -107180,7 +107038,6 @@ msgid "" msgstr "一個粗糙的銳利骨錐;在發現金屬之前,人們用這東西來進行皮革加工。它也可以當作粗製的刺擊武器,只是很快就會壞掉。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "steel sewing awl" msgid_plural "steel sewing awls" msgstr[0] "鋼製縫錐" @@ -107193,7 +107050,6 @@ msgid "" msgstr "一支帶有木柄的鋼錐,常用於皮革加工。它也可以當作粗製的刺擊武器,只是很快就會壞掉。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "knitting needles" msgid_plural "pairs of knitting needles" msgstr[0] "針織針" @@ -107207,7 +107063,6 @@ msgid "" msgstr "一對粗厚的圓頭木針, 用於將縫線和紗編織成布料。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bone needle" msgid_plural "bone needles" msgstr[0] "骨針" @@ -107229,7 +107084,6 @@ msgid "" msgstr "鋼製的彎曲尖銳的針。其圓弧的形狀讓它能夠使針僅刺穿材料的一側。雖然不適合大多數裁縫的項目, 但它卻是縫合橡膠的必需品。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden needle" msgid_plural "wooden needles" msgstr[0] "木針" @@ -107244,8 +107098,7 @@ msgid "" msgstr "一根削尖的木针,上面有个刻出来的穿线孔。它低劣的品质使它不适合用来制造任何需要精度或速度的物品,或者用于类似于凯夫拉的坚硬材质上。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "sewing kit" msgid_plural "sewing kits" msgstr[0] "針線包" @@ -107274,8 +107127,7 @@ msgid "" msgstr "这是一大套纸制的缝纫用模板,可以用来从头制造布料或者皮革衣物,在更复杂的裁缝工作中更是必不可少。" #: data/json/items/tool/tailoring.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json -#: data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/items/tools.json msgid "tailor's kit" msgid_plural "tailor's kits" msgstr[0] "裁縫工具" @@ -107291,7 +107143,6 @@ msgstr "" "一个装着各种针、几卷线,几把小剪刀,以及一把锥子的高品质缝纫工具箱。通过您的裁缝技能,这个工具包可以定制您的服装和盔甲,无论是加强它们的防御力还是修改一些项目以适应大型突变生物的穿戴。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "bathroom scale" msgid_plural "bathroom scales" msgstr[0] "浴室秤" @@ -107302,7 +107153,6 @@ msgid "This is a small bathroom scale, meant to weigh a person while naked." msgstr "一個小型的浴室秤,用於裸體時秤重。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scrub brush" msgid_plural "scrub brushes" msgstr[0] "硬毛刷" @@ -107313,7 +107163,6 @@ msgid "This is a simple scrub brush." msgstr "一把普通的硬毛刷" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric hair trimmer" msgid_plural "electric hair trimmers" msgstr[0] "電動理髮器" @@ -107351,7 +107200,6 @@ msgid "" msgstr "一款长柄而笨重的拖把,配有可折叠手柄,便于运输。你可以用它清理任何你制造的\"混乱\"。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "razor blade" msgid_plural "razor blades" msgstr[0] "剃鬚刀片" @@ -107375,7 +107223,6 @@ msgid "" msgstr "這是一款小巧輕便的剃鬚工具, 專為旅客而設。你可以使用它來剃鬚。每次使用需要 1 個單位的肥皂。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "sponge" msgid_plural "sponges" msgstr[0] "海綿" @@ -107410,7 +107257,6 @@ msgid "" msgstr "這是一個粗製的剃鬚工具。你可以使用它來剃鬚。每次使用需要 1 個單位的肥皂。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washboard" msgid_plural "washboards" msgstr[0] "洗衣板" @@ -107423,7 +107269,6 @@ msgid "" msgstr "一塊木製的洗衣板。如果有清洗劑的話, 你可以用它來清洗污穢的衣物。" #: data/json/items/tool/toiletries.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "washing kit" msgid_plural "washing kits" msgstr[0] "洗滌工具" @@ -107460,7 +107305,6 @@ msgid "" msgstr "加載彈簧機制的鋼顎。使用方法是設置在地面, 作為誘捕及傷害踩上的獵物的陷阱。假如你有鏟子, 你還可以把它埋藏起來增加隱蔽性。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "blade trap" msgid_plural "blade traps" msgstr[0] "刀刃陷阱" @@ -107479,7 +107323,6 @@ msgid "" msgstr "開山刀連接在馬達上, 而絆索控制著馬達油門, 當絆索被觸發, 強力的馬達會帶動開山刀旋轉撕砍, 形成一格 3x3 區域的殺傷範圍。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "nailboard trap" msgid_plural "nailboard traps" msgstr[0] "釘板陷阱" @@ -107523,7 +107366,6 @@ msgid "" msgstr "一張塑膠紙上面佈滿空氣小泡泡。在地面上設置後能夠成為警報陷阱, 當有東西踩上後會發出聲響。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "雞爪釘" @@ -107541,7 +107383,6 @@ msgid "" msgstr "這是一個有許多尖角的金屬小物品。若是有粗心的受害者踩上, 腳掌就會被刺到。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "鬆散的玻璃蒺藜" @@ -107593,7 +107434,6 @@ msgid "" msgstr "这是一个已经埋设好的军用反人员地雷,一旦踩上就会爆炸。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "double-barreled shotgun trap" msgid_plural "double-barreled shotgun traps" msgstr[0] "双管霰弹枪陷阱" @@ -107620,7 +107460,6 @@ msgid "" msgstr "这是一个简单的绊线,连接在装有子弹的单管猎枪扳机上。 扣动扳机后,霰弹枪就会开火。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "tripwire trap" msgid_plural "tripwire traps" msgstr[0] "絆索陷阱" @@ -107653,7 +107492,6 @@ msgid "" msgstr "这是一组空罐头,被用作临时制造的噪音制造器,被串在门口或其他狭窄通道上。当被触发时,会发出声音以警示您有入侵者,但除此之外是无害的。" #: data/json/items/tool/traps.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "glass shard trap" msgid_plural "glass shard traps" msgstr[0] "玻璃碎片陷阱" @@ -107673,7 +107511,6 @@ msgid "" msgstr "还是那些玻璃渣,但是你可以激活并放在地上,当有东西踩上去就会发出噪声。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood axe" msgid_plural "wood axes" msgstr[0] "伐木斧" @@ -107698,7 +107535,6 @@ msgid "" msgstr "这是一把带有青铜斧头的大型双手伐木斧。它是一种出色的近战武器,但在挥动之间稍显缓慢恢复。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "chainsaw (off)" msgid_plural "chainsaws (off)" msgstr[0] "鏈鋸 (關閉)" @@ -107733,7 +107569,6 @@ msgid "This chainsaw is on and making a lot of noise. Use it to turn it off." msgstr "這把開著的鏈鋸正產生大量的噪音。使用它來關閉。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "circular saw (off)" msgid_plural "circular saws (off)" msgstr[0] "圓鋸機 (關閉)" @@ -107774,7 +107609,6 @@ msgid "" msgstr "一個輕量級的手持式無線圓鋸。目前刀片正在旋轉著, 使用它可以關閉。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "copper axe" msgid_plural "copper axes" msgstr[0] "銅斧" @@ -107799,7 +107633,6 @@ msgid "" msgstr "單手斧。一把很棒的近戰武器, 既能切碎東西, 也可當作錘子用。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric chainsaw (off)" msgid_plural "electric chainsaws (off)" msgstr[0] "電鋸 (關閉)" @@ -107890,7 +107723,6 @@ msgid "" msgstr "一块固定在棍子上的窄边石头。它勉强能砍木头,但比现代斧头要费劲得多。" #: data/json/items/tool/woodworking.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wood saw" msgid_plural "wood saws" msgstr[0] "木鋸" @@ -107901,14 +107733,12 @@ msgid "This is a thin saw, useful for cutting through wood objects." msgstr "一把薄鋸子, 適合切割木頭材質物品。" #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "stone chisel" msgid_plural "stone chisels" msgstr[0] "石鑿" #. ~ Description for {'str': 'stone chisel'} #: data/json/items/tool/woodworking.json -#: data/mods/Magiclysm/items/alchemy_items.json msgid "" "This is a short stone chisel. It can be used to engrave on stone, wood, or " "soft metals." @@ -108036,7 +107866,6 @@ msgid "" msgstr "一个装满陶瓷粘土的托盘,现在已经可以制成陶器。拆解它以取回你的板材、框架和工艺用品。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene-gas machine" msgid_plural "acetylene-gas machines" msgstr[0] "乙炔制造机" @@ -108049,7 +107878,6 @@ msgid "" msgstr "这个大型设备接受水和电石,产出常压的乙炔气。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "angle grinder" msgid_plural "angle grinders" msgstr[0] "角磨机" @@ -108062,7 +107890,6 @@ msgid "" msgstr "這種廣泛使用的電動工具通常用於去除多餘的材料或拋光表面。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "brick kiln" msgid_plural "brick kilns" msgstr[0] "磚窯" @@ -108075,7 +107902,6 @@ msgid "" msgstr "這是一種便攜式木炭爐。你可以用它來自製磚塊, 或是燒製黏土。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "carding paddles" msgid_plural "pairs of carding paddles" msgstr[0] "毛絨刷" @@ -108089,7 +107915,6 @@ msgid "" msgstr "在紡織生產中, 用來清潔纖維而使用的齒狀木製刷片。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint chipper" msgid_plural "paint chippers" msgstr[0] "油漆刮刀" @@ -108100,7 +107925,6 @@ msgid "A tool similar to a chisel, designed to remove paint." msgstr "一個類似鑿子的工具, 用來刮除油漆。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "clamp" msgid_plural "clamps" msgstr[0] "夹具" @@ -108113,7 +107937,6 @@ msgid "" msgstr "一个能够保持物体静止不动的夹具,特别是当你同时有好几个夹子的时候。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "claw bar" msgid_plural "claw bars" msgstr[0] "撬桿" @@ -108128,7 +107951,6 @@ msgstr "" "這是一種小型撬動工具,一邊端頭是爪形彎頭,用於拔出鐵釘。用它來撬開鎖著的門而不會破壞它們,或是用來抬起人孔蓋。你也可以手持它來打爆一些腦袋瓜子。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "concrete mixer" msgid_plural "concrete mixers" msgstr[0] "混凝土攪拌機" @@ -108141,7 +107963,6 @@ msgid "" msgstr "一台攜帶式的混凝土攪拌機。雖然又大又笨重, 但是它可以依靠電池獨立運作。內建加熱器。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "cordless drill" msgid_plural "cordless drills" msgstr[0] "無線電鑽" @@ -108153,7 +107974,6 @@ msgid "" msgstr "這是一把無線電鑽, 由電池供電, 供有一套鑽頭可供選擇。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "distaff and spindle" msgid_plural "distaves and spindles" msgstr[0] "紡錘" @@ -108166,7 +107986,6 @@ msgid "" msgstr "一對專門將纖維紡成縫線和紗的木棍。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric jackhammer" msgid_plural "electric jackhammers" msgstr[0] "電動手提鑿岩機" @@ -108180,7 +107999,6 @@ msgid "" msgstr "一种能够钻穿坚硬岩石或其他表面的建筑工具。它使用可充电电池,并可选择与UPS兼容。开启后,可以把附近的地面或者敌人钻出一个大洞来。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hacksaw" msgid_plural "hacksaws" msgstr[0] "鋼鋸" @@ -108204,7 +108022,6 @@ msgid "" msgstr "这是一种由细钢丝制成的灵活锯,两端有简单的把手。它可以满足轻金属和木材的锯切,或用于切割铁丝网。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hammer" msgid_plural "hammers" msgstr[0] "鐵鎚" @@ -108231,7 +108048,6 @@ msgid "" msgstr "这是一把带有木柄的青铜爪锤,通常用于避免使用钢锤可能引发安全风险的场合,如需要封住相邻的门窗等众多用途。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "hand drill" msgid_plural "hand drills" msgstr[0] "手動鑽頭" @@ -108244,7 +108060,6 @@ msgid "" msgstr "一個基本的手動鑽頭, 運作很慢而且很快耗盡你的體力。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "rubber hose" msgid_plural "rubber hoses" msgstr[0] "橡膠軟管" @@ -108257,7 +108072,6 @@ msgid "" msgstr "一條有彈性的橡膠軟管。能夠用在製作物品, 或是從車輛油桶抽取汽油。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "bottle jack" msgid_plural "bottle jacks" msgstr[0] "瓶式千斤頂" @@ -108268,7 +108082,6 @@ msgid "A portable hydraulic bottle jack used for lifting vehicles." msgstr "便攜式液壓瓶式千斤頂, 用於抬起車輛。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift jack" msgid_plural "makeshift jacks" msgstr[0] "粗製千斤頂" @@ -108281,7 +108094,6 @@ msgid "" msgstr "構造不良的簡易剪式千斤頂, 如果你夠勇敢的話, 你可以用它來抬起車輛。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "scissor jack" msgid_plural "scissor jacks" msgstr[0] "剪式千斤頂" @@ -108292,7 +108104,6 @@ msgid "A compact scissor jack used for lifting vehicles." msgstr "一個牢固的剪式千斤頂, 用於抬起車輛。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "jackhammer" msgid_plural "jackhammers" msgstr[0] "手提鑿岩機" @@ -108306,7 +108117,6 @@ msgid "" msgstr "這是個建築用的工具, 能夠鑽破硬石頭或是其他表面。使用這個工具需要消耗汽油。使用它來在鄰近地形鑽洞。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "Auger" msgid_plural "Augers" msgstr[0] "螺旋钻" @@ -108319,7 +108129,6 @@ msgid "" msgstr "这是一种用于在地面钻孔的建筑工具。运作消耗汽油。为了你的身体健康着想,你最好试试。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric kiln" msgid_plural "electric kilns" msgstr[0] "電窯" @@ -108336,7 +108145,6 @@ msgstr "" "甚至可以把它轉換連接到車輛電源系統來供電。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "gunsmith repair kit" msgid_plural "gunsmith repair kits" msgstr[0] "槍匠修理工具" @@ -108350,7 +108158,6 @@ msgid "" msgstr "這是一個用來修理受損槍械的完整工具。利用一般電池供電, 這是對槍枝長期保養的重要工具。每次使用需要 25 電量的電池。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hammer" msgid_plural "makeshift hammers" msgstr[0] "粗製鎚子" @@ -108363,7 +108170,6 @@ msgid "" msgstr "粗糙的锤子,用一块金属固定在棍子上制成。虽然当锤子是勉强凑合了,但跟正规的还是没得比。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metal fileset" msgid_plural "metal filesets" msgstr[0] "金屬銼刀組" @@ -108376,7 +108182,6 @@ msgid "" msgstr "這些工具通常用於從金屬物體表面去除少量材料。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "metallic smoother" msgid_plural "metallic smoothers" msgstr[0] "金屬製的水泥刮刀" @@ -108389,7 +108194,6 @@ msgid "" msgstr "這個金屬製的工具通常是用來在建築時用來刮平混凝土和沙漿。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "misc repair kit" msgid_plural "misc repair kits" msgstr[0] "雜項維修工具" @@ -108420,7 +108224,6 @@ msgstr "" "这是一个便携式工具包,包括一把用于雕刻替换零件的原始刀具、一把用于重型木材切割的扁斧,以及一块用于清洁表面的柔软材料。配合沥青使用,它可以修理某些物品,但不适合复杂的工作。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "plastic mold" msgid_plural "plastic molds" msgstr[0] "塑膠模具" @@ -108433,7 +108236,6 @@ msgid "" msgstr "這是個塑膠模具。能夠用來塑型及使用在製作塑膠物品上。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "multi-tool" msgid_plural "multi-tools" msgstr[0] "多功能工具" @@ -108446,7 +108248,6 @@ msgid "" msgstr "一把巧妙設計的多合一工具, 它的把手就是一隻鉗子, 還結合了幾個小工具。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "acetylene torch" msgid_plural "acetylene torches" msgstr[0] "乙炔噴槍" @@ -108464,7 +108265,6 @@ msgstr "" "裝在一個易於攜帶的手提包中。使用前需要連接到裝有焊接氣體的加壓氣瓶上。除了金屬加工外, 你還可以用它來破壞金屬類的障礙物。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "paint brush" msgid_plural "paint brushes" msgstr[0] "油漆刷" @@ -108475,7 +108275,6 @@ msgid "A wide brush, suitable for painting walls." msgstr "一個大的刷子, 適合用來粉刷牆壁。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pickaxe" msgid_plural "pickaxes" msgstr[0] "十字鎬" @@ -108488,7 +108287,6 @@ msgid "" msgstr "這是一把大鐵鎬, 適用於擊碎堅硬的東西 (需有足夠的技能)。擊向地球!" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pin reamer" msgid_plural "pin reamers" msgstr[0] "銷子鉸刀" @@ -108501,7 +108299,6 @@ msgid "" msgstr "這種手持式銷子鉸刀用於擴大現有孔徑,或移除任何毛刺之類的東西。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "pliers" msgid_plural "pliers" msgstr[0] "鉗子" @@ -108515,7 +108312,6 @@ msgid "" msgstr "这是一把基本的鲤鱼钳,能用来做一些基本的机械和拆解弹药工作,如果你要做更复杂的工作,那就需要一个扳手了。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric polisher" msgid_plural "electric polishers" msgstr[0] "電力打磨機" @@ -108540,7 +108336,6 @@ msgid "" msgstr "一把綁著石頭的木棍, 讓它有類似鐵鎚的功能, 但與真正的鐵鎚還差的遠。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver" msgid_plural "screwdrivers" msgstr[0] "螺絲起子" @@ -108553,7 +108348,6 @@ msgid "" msgstr "這是一把十字螺絲起子。在拆裝大部分的電子產品與機械裝置時都很重要, 除此之外也有更多的用途。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "screwdriver set" msgid_plural "screwdriver sets" msgstr[0] "螺絲起子套裝" @@ -108566,7 +108360,6 @@ msgid "" msgstr "這是一套同時擁有多種尺寸和多種類型刀片的螺絲刀, 保證讓你有合適的工具做好工作。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "firearm repair kit" msgid_plural "firearm repair kits" msgstr[0] "槍械修理工具" @@ -108580,7 +108373,6 @@ msgid "" msgstr "這是一個用來修理受損槍械的隨身工具。利用一般電池供電, 這是對槍枝長期保養的重要工具。每次使用需要 100 電量的電池。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "electric soldering iron" msgid_plural "electric soldering irons" msgstr[0] "电烙铁" @@ -108608,7 +108400,6 @@ msgid "" msgstr "一块可以被烧得很烫的金属板,可以用来制造电子产品。将金属尖端放在燃烧器上,就能产生足够的热量进行焊接。没有普通电烙铁那么复杂。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "toolbox" msgid_plural "toolboxes" msgstr[0] "工具箱" @@ -108621,7 +108412,6 @@ msgid "" msgstr "這是一個巨大的金屬盒子, 裡面裝了齊全的工具, 可以用來應付大多數的家庭修繕與建築活動。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "workshop toolbox" msgid_plural "workshop toolboxes" msgstr[0] "工坊工具箱" @@ -108648,7 +108438,6 @@ msgid "" msgstr "你的整合工具手,從手中伸了出來。它能切片切丁,以及讓萬物更加美好。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "arc welder" msgid_plural "arc welders" msgstr[0] "電弧焊機" @@ -108661,7 +108450,6 @@ msgid "" msgstr "这是一个电池供电的工具,可以使用电弧将金属部件焊接在一起。这是一个建筑或维修时不可缺少的工具。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wooden smoother" msgid_plural "wooden smoothers" msgstr[0] "木製的水泥刮刀" @@ -108674,7 +108462,6 @@ msgid "" msgstr "這個大型的自製工具是用來在建築時刮平混凝土和沙漿, 你也可以湊合著拿來打人。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "wool staple" msgid_plural "wool staples" msgstr[0] "羊毛纖維" @@ -108687,7 +108474,6 @@ msgid "" msgstr "一簇天然羊毛纤维。可以加工成毛毡补丁或毛纱。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "X-Acto knife" msgid_plural "X-Acto knives" msgstr[0] "X-Acto 美工刀" @@ -108704,7 +108490,6 @@ msgstr "" "X-Acto 美工刀不適合切割屍體或獵物, 因為實在太小把了。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "wrench" msgid_plural "wrenches" msgstr[0] "扳手" @@ -108717,7 +108502,6 @@ msgid "" msgstr "一個可調整的扳手。它能作為不錯的近戰武器, 也能用於許多機械製作配方。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "leather hose" msgid_plural "leather hoses" msgstr[0] "皮软管" @@ -108731,7 +108515,6 @@ msgid "" msgstr "这是一根用皮革制成的软管。防水又轻便,可以从车辆油箱里抽取燃油。然而这一根没有橡胶软管那么有弹性。" #: data/json/items/tool/workshop.json -#: data/mods/Item_Category_Overhaul/overwrite_tools.json msgid "makeshift hand drill" msgid_plural "makeshift hand drills" msgstr[0] "简易手摇钻" @@ -109869,6 +109652,16 @@ msgid "" "A large frame made of plastic. Useful for lightweight yet sturdy vehicles." msgstr "一个大的塑料框架。用于制造轻便而坚固的载具。" +#: data/json/items/vehicle/frames.json data/json/vehicleparts/frames.json +msgid "skateboard deck" +msgid_plural "skateboard decks" +msgstr[0] "滑板板面" + +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/items/vehicle/frames.json +msgid "A small skateboard frame made of thin layers of wood glued together." +msgstr "一个小型滑板框架,由多层薄木板粘合在一起制成。" + #: data/json/items/vehicle/fuel_storage.json data/json/vehicleparts/tanks.json msgid "fuel bunker" msgid_plural "fuel bunkers" @@ -110172,7 +109965,6 @@ msgid "" msgstr "一套配有揚聲器的立體聲系統, 內置一段簡單的旋律。通常裝設在冰淇淋卡車上吸引兒童的注意, 但現在的孩子比起冰淇淋更想要你的腦袋。" #: data/json/items/vehicle/plating.json -#: data/mods/Item_Category_Overhaul/overwrite_scrap.json msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "薄钢板" @@ -110563,6 +110355,12 @@ msgstr[0] "木桌子" msgid "A crude wooden table." msgstr "一張粗製的木桌子。" +#: data/json/items/vehicle/tables.json +#: data/json/vehicleparts/vehicle_parts.json +msgid "robobench" +msgid_plural "robobenches" +msgstr[0] "机器人工作台" + #: data/json/items/vehicle/turrets.json #: data/json/vehicleparts/vehicle_parts.json msgid "turret mount" @@ -110864,6 +110662,28 @@ msgstr[0] "一套腳輪" msgid "A set of casters, like on a shopping cart." msgstr "一組購物車的腳輪。" +#: data/json/items/vehicle/wheel.json +msgid "set of skateboard wheels" +msgid_plural "sets of skateboard wheels" +msgstr[0] "滑板轮子" + +#. ~ Description for {'str': 'set of skateboard wheels', 'str_pl': 'sets of +#. skateboard wheels'} +#: data/json/items/vehicle/wheel.json +msgid "A set of skateboard wheels." +msgstr "一组滑板轮子。" + +#: data/json/items/vehicle/wheel.json +msgid "pair of skateboard trucks" +msgid_plural "pairs of skateboard trucks" +msgstr[0] "滑板支架" + +#. ~ Description for {'str': 'pair of skateboard trucks', 'str_pl': 'pairs of +#. skateboard trucks'} +#: data/json/items/vehicle/wheel.json +msgid "A pair metal skateboard trucks, for attaching wheels to." +msgstr "一对金属滑板支架,用于安装滑板轮子。" + #: data/json/items/vehicle/wheel.json msgid "set of wheels" msgid_plural "sets of wheels" @@ -111678,13 +111498,6 @@ msgstr "水泥" msgid "FERTILIZER" msgstr "肥料" -#. ~ Sign -#: data/json/mapgen/landscaping_supply.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/landscaping_supply.json -msgid "ROCKS" -msgstr "石頭" - #. ~ Sign #: data/json/mapgen/landscaping_supply.json #: data/mods/No_Hope/Mapgen/landscaping_supply.json @@ -112004,13 +111817,6 @@ msgstr "紙" msgid "PLASTIC" msgstr "塑膠" -#. ~ Sign -#: data/json/mapgen/recycle_center.json -#: data/mods/Item_Category_Overhaul/categories.json -#: data/mods/No_Hope/Mapgen/recycle_center.json -msgid "ELECTRONICS" -msgstr "電子" - #. ~ Sign #: data/json/mapgen/recycle_center.json #: data/mods/No_Hope/Mapgen/recycle_center.json @@ -112576,7 +112382,7 @@ msgstr "调试疼痛" #. ~ Description for {'str': 'Debug Pain'} #. ~ Description for {'str': 'Pain'} #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Increases pain" msgstr "增加疼痛" @@ -112600,7 +112406,7 @@ msgid "decreases stamina. Designed for mi-go slaver beam" msgstr "降低耐力。專為米戈捕奴者光束而設計" #: data/json/monster_special_attacks/spells.json -#: data/mods/Magiclysm/Spells/item_only.json src/character_display.cpp +#: data/mods/Magical_Nights/Spells/item_only.json src/character_display.cpp #: src/distraction_manager.cpp src/memorial_logger.cpp msgid "Pain" msgstr "疼痛" @@ -116248,14 +116054,14 @@ msgstr[0] "邪惡的大同電鍋" msgid "The multi-cooker's got a mind of its own! Look out!" msgstr "那個大同電鍋有自我意識!小心了!" -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "hologram" msgid_plural "holograms" msgstr[0] "全像投影" #. ~ Description for {'str': 'hologram'} #. ~ Description for hologram -#: data/json/monsters/misc.json data/mods/Magiclysm/monsters.json +#: data/json/monsters/misc.json data/mods/Magical_Nights/monsters.json msgid "An image made from light, nearly identical to the real deal." msgstr "完全由光組成的影像,與它參照的對象幾乎沒有區別。" @@ -125967,9 +125773,9 @@ msgstr "你愿意和我一起去旅行吗?" #: data/json/npcs/isherwood_farm/NPC_Eddie_Isherwood.json #: data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json #: data/mods/DinoMod/NPC/NC_BO_BARONYX.json data/mods/DinoMod/NPC/NC_Red.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade items." msgstr "我們來交易吧。" @@ -126776,9 +126582,9 @@ msgstr "你在做什麼?" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Wanna get outta here?" msgstr "想離開這裡嗎?" @@ -126794,9 +126600,9 @@ msgstr "想離開這裡嗎?" #: data/json/npcs/refugee_center/surface_staff/NPC_old_guard_doctor.json #: data/mods/Aftershock/npcs/prepnet_dialogue.json #: data/mods/Aftershock/npcs/whately_generic_dialogue.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Can I do anything for you?" msgstr "我能為你做什麼事嗎?" @@ -126824,25 +126630,25 @@ msgstr "事情发生时我在这里守着警局,其他警察在最后一次通 #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json #: data/json/npcs/refugee_center/beggars/BEGGAR_1_Reena_Sandhu.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Why don't you go somewhere else?" msgstr "你為什麼不去別的地方?" #: data/json/npcs/TALK_CITY_COP.json #: data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Let's trade then." msgstr "我們來交易。" #: data/json/npcs/TALK_CITY_COP.json data/json/npcs/TALK_NC_FARMER.json #: data/json/npcs/TALK_SURVIVOR_CHEF.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I'm sorry, I gotta go." msgstr "抱歉,我該走了。" @@ -126862,9 +126668,9 @@ msgid "You've seen other survivors?" msgstr "你遇見過其他倖存者嗎?" #: data/json/npcs/TALK_CITY_COP.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "What can you sell me?" msgstr "你能賣什麼給我?" @@ -133185,7 +132991,7 @@ msgstr "懊恼" #: data/json/npcs/talk_tags.json #: data/json/npcs/moonshiner/TALK_NPC_moonshiner.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Hey ." msgstr "嘿, 。" @@ -143130,17 +142936,17 @@ msgstr "这在我看来是一个军事问题,我是来协助的。" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About the mission…" msgstr "关于任务……" #: data/json/npcs/necropolis/NPC_Old_Guard_Captain.json #: data/json/npcs/necropolis/NPC_Old_Guard_Commo.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "About one of those missions…" msgstr "关于任务之一……" @@ -144372,7 +144178,7 @@ msgid "" msgstr "屋顶!那么高!那么宽敞!来我的朋友,到时候过来看看我。我不会让你失望的。" #: data/json/npcs/refugee_center/beggars/BEGGAR_2_Dino_Dave.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't understand." msgstr "我不明白。" @@ -150260,9 +150066,9 @@ msgstr "有生存的建議嗎?" #: data/json/npcs/refugee_center/surface_visitors/NPC_hunter.json #: data/mods/DinoMod/NPC/NC_Yoshimi.json -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Goodbye." msgstr "再見。" @@ -159013,7 +158819,6 @@ msgid "" msgstr "用於動物放牧和種植牧草的平原和相關設施(穀倉與其他附屬建築)。" #: data/json/overmap/overmap_land_use_codes.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "Forest" msgstr "森林" @@ -159389,7 +159194,7 @@ msgid "island" msgstr "島嶼" #: data/json/overmap/overmap_terrain/overmap_terrain.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "cabin" msgstr "小屋" @@ -159411,7 +159216,6 @@ msgstr "小屋地下室" #: data/json/overmap/overmap_terrain/overmap_terrain_agricultural.json #: data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json #: data/json/overmap/overmap_terrain/overmap_terrain_industrial.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json #: data/mods/alt_map_key/overmap_terrain.json msgid "forest" msgstr "森林" @@ -162164,7 +161968,6 @@ msgid "scrap yard" msgstr "废料场" #: data/json/overmap/overmap_terrain/overmap_terrain_waterbody.json -#: data/mods/Magiclysm/worldgen/overmap_terrain.json msgid "lake shore" msgstr "湖岸" @@ -162211,7 +162014,7 @@ msgstr "武器" #. ~ Crafting recipes subcategory all #: data/json/recipes/recipes.json data/mods/DinoMod/recipes/recipes.json -#: data/mods/Magiclysm/qualities.json src/crafting_gui.cpp +#: data/mods/Magical_Nights/qualities.json src/crafting_gui.cpp msgid "ALL" msgstr "全部" @@ -162336,6 +162139,13 @@ msgstr "電子" msgid "CBMS" msgstr "生化插件" +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json +msgid "TOOLS" +msgstr "工具" + #. ~ Crafting recipes subcategory of 'ELECTRONIC' category #. ~ Crafting recipes subcategory of 'OTHER' category #: data/json/recipes/recipes.json @@ -162349,7 +162159,7 @@ msgstr "燈具" #. ~ Crafting recipes category name #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "ARMOR" msgstr "護具" @@ -162390,7 +162200,7 @@ msgstr "醫藥" #. ~ Crafting recipes subcategory of 'OTHER' category #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/json/recipes/recipes.json data/mods/Magiclysm/qualities.json +#: data/json/recipes/recipes.json data/mods/Magical_Nights/qualities.json msgid "MATERIALS" msgstr "材料" @@ -172820,7 +172630,7 @@ msgstr "折疊式輕型框架" #. ~ Description for {'str': 'foldable light frame'} #. ~ Description for foldable orichalcum frame #: data/json/vehicleparts/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "A light metal framework, designed to fold. Other vehicle components can be " "mounted on it. If all the frames and components of a vehicle are foldable, " @@ -172902,6 +172712,13 @@ msgid "" "and it can be attached to other frames to increase the vehicle's size." msgstr "一个碳素纤维车辆框架。其他载具部件能够安装在它上面,在它四周增加新的车辆框架,就可以增加车辆大小。" +#. ~ Description for {'str': 'skateboard deck'} +#: data/json/vehicleparts/frames.json +msgid "" +"A light wooden skateboard deck. Other skateboard components can be mounted " +"on it." +msgstr "一个轻便的木质滑板板面,可安装其他滑板部件。" + #: data/json/vehicleparts/lights.json msgid "aisle lights" msgstr "過道燈" @@ -174642,6 +174459,24 @@ msgid "" "chair or grocery cart." msgstr "一組小型輪子, 安裝在樞軸上, 就像輪式辦公椅或購物車上的那些輪子一樣。" +#: data/json/vehicleparts/wheel.json +msgid "skateboard wheels" +msgstr "滑板轮子" + +#. ~ Description for {'str': 'skateboard wheels'} +#: data/json/vehicleparts/wheel.json +msgid "A set of four small wheels, for a skateboard." +msgstr "一组四个小轮子,适用于滑板。" + +#: data/json/vehicleparts/wheel.json +msgid "skateboard trucks" +msgstr "滑板支架" + +#. ~ Description for {'str': 'skateboard trucks'} +#: data/json/vehicleparts/wheel.json +msgid "A pair of skateboard trucks, for attaching wheels to." +msgstr "一对滑板支架,用于将轮子安装到滑板上。" + #: data/json/vehicleparts/wheel.json msgid "wheels" msgstr "輪胎" @@ -174711,7 +174546,7 @@ msgid "" "wire to make it harder to break than normal glass." msgstr "一塊玻璃, 讓你能看到車外。用鐵絲強化, 使其比普通玻璃更難破碎。" -#: data/json/vehicles/bikes.json data/mods/Magiclysm/vehicles/bikes.json +#: data/json/vehicles/bikes.json msgid "Bicycle" msgstr "自行車" @@ -174779,6 +174614,10 @@ msgstr "塑料自行车" msgid "Carbon Fiber Bicycle" msgstr "碳素纤维自行车" +#: data/json/vehicles/bikes.json +msgid "Skateboard" +msgstr "滑板" + #: data/json/vehicles/boats.json msgid "canoe" msgstr "獨木舟" @@ -174924,8 +174763,8 @@ msgid "Wheelbarrow" msgstr "獨輪手推車" #: data/json/vehicles/carts.json -msgid "Foldable wheelchair" -msgstr "折疊式輪椅" +msgid "Wheelchair" +msgstr "轮椅" #: data/json/vehicles/carts.json msgid "hospital bed" @@ -175267,7 +175106,6 @@ msgid "Tour Bus" msgstr "遊覽車" #: data/json/vehicles/vans_busses.json -#: data/mods/Magiclysm/vehicles/vans_busses.json msgid "Security Van" msgstr "運鈔車" @@ -181836,7 +181674,7 @@ msgid "Holographic Flash Explosion" msgstr "全息闪光爆" #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Holographic Transposition" msgstr "全息换位术" @@ -181844,8 +181682,8 @@ msgstr "全息换位术" #. ~ Description for {'str': 'Scroll of Holographic Transposition', 'str_pl': #. 'Scrolls of Holographic Transposition'} #: data/mods/Aftershock/spells/hologram_spells.json -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Allows you to swap places with a previously existing holographic image of " "yourself. If the universe itself can't tell you apart, who could?" @@ -182736,9 +182574,9 @@ msgstr[0] "折叠式带钩枪托" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json msgid "" -", A military-grade stock which folds reducing the guns volume. The weight " -"and the pivoting hook which latches onto your forearm allows for greater " -"stability. " +"A military-grade stock which folds reducing the guns volume. The weight and" +" the pivoting hook which latches onto your forearm allows for greater " +"stability." msgstr "一个军用级的枪托,能够折叠起来减少枪械体积。它的重量以及一个能固定在手臂上的旋转挂钩使你的手臂持枪更加稳定。" #: data/mods/CRT_EXPANSION/items/crt_gunmods.json @@ -182750,7 +182588,7 @@ msgstr[0] "衍射透镜" msgid "" "A set of optics made to fit on laser weapons, which will diffract the laser " "beam into several lower powered beams. This slightly increases point-blank " -"damage and makes it difficult to not hit, but reduces range" +"damage and makes it difficult to not hit, but reduces range." msgstr "一套安装在激光武器上的光学装置,它将激光束衍射成几个低功率光束。这稍微增加了近距离的伤害,但减少了射程。" #: data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -197040,42 +196878,42 @@ msgstr "9mm 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid ".44 casing" msgid_plural ".44 casings" -msgstr[0] "" +msgstr[0] ".44 弹壳" #. ~ Description for .44 casing #: data/mods/Generic_Guns/ammo/casings.json msgid "An empty casing from a .44 round." -msgstr "" +msgstr ".44子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "5.56mm casing" msgid_plural "5.56mm casings" -msgstr[0] "" +msgstr[0] "5.56mm 弹壳" #. ~ Description for 5.56mm casing #: data/mods/Generic_Guns/ammo/casings.json msgid "An empty casing from a 5.56mm round." -msgstr "" +msgstr "5.56mm 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "7.62mm casing" msgid_plural "7.62mm casings" -msgstr[0] "" +msgstr[0] "7.62mm 弹壳" #. ~ Description for 7.62mm casing #: data/mods/Generic_Guns/ammo/casings.json msgid "An empty casing from a 7.62mm round." -msgstr "" +msgstr "7.62mm 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "12.7mm casing" msgid_plural "12.7mm casings" -msgstr[0] "" +msgstr[0] "12.7mm 弹壳" #. ~ Description for 12.7mm casing #: data/mods/Generic_Guns/ammo/casings.json msgid "An empty casing from a 12.7mm round." -msgstr "" +msgstr "12.7mm 子弹的空弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "shotshell hull" @@ -197092,33 +196930,33 @@ msgstr "一个空的霰弹弹壳,一根带着黄铜底座的塑料铜管。" #: data/mods/Generic_Guns/ammo/casings.json msgid "40mm casing" msgid_plural "40mm casings" -msgstr[0] "" +msgstr[0] "40mm 弹壳" #. ~ Description for {'str': '40mm casing'} #: data/mods/Generic_Guns/ammo/casings.json msgid "A large casing from a 40mm round." -msgstr "" +msgstr "40mm 子弹的大型弹壳。" #: data/mods/Generic_Guns/ammo/casings.json msgid "5.56mm machine gun belt linkage" msgid_plural "5.56mm machine gun belt linkages" -msgstr[0] "" +msgstr[0] "5.56mm 机枪子弹带链节" #: data/mods/Generic_Guns/ammo/casings.json msgid "12.7mm machine gun belt linkage" msgid_plural "12.7mm machine gun belt linkages" -msgstr[0] "" +msgstr[0] "12.7mm 机枪子弹带链节" #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm grenade" msgid_plural "40mm grenades" -msgstr[0] "" +msgstr[0] "40mm 榴弹" #: data/mods/Generic_Guns/ammo/grenade.json #: data/mods/Generic_Guns/vehicles/ammo_redefine_hacks/temp_ammo_redefine_hack.json msgid "40mm HEDP grenade" msgid_plural "40mm HEDP grenades" -msgstr[0] "" +msgstr[0] "40mm HEDP 榴弹" #. ~ Description for {'str': '40mm HEDP grenade'} #: data/mods/Generic_Guns/ammo/grenade.json @@ -197131,7 +196969,7 @@ msgstr "一颗破片榴弹,有个高爆两用弹头,能产生大量穿甲及 #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm beanbag grenade" msgid_plural "40mm beanbag grenades" -msgstr[0] "" +msgstr[0] "40mm 豆袋榴弹" #. ~ Description for {'str': '40mm beanbag grenade'} #: data/mods/Generic_Guns/ammo/grenade.json @@ -197143,7 +196981,7 @@ msgstr "一款低初速低杀伤榴弹,弹头内装着泡沫和塑料弹丸, #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm flare grenade" msgid_plural "40mm flare grenades" -msgstr[0] "" +msgstr[0] "40mm 燃烧榴弹" #. ~ Description for {'str': '40mm flare grenade'} #: data/mods/Generic_Guns/ammo/grenade.json @@ -197155,7 +196993,7 @@ msgstr "一颗照明榴弹。它会明亮地燃烧大约一分钟,并同时会 #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm buckshot grenade" msgid_plural "40mm buckshot grenades" -msgstr[0] "" +msgstr[0] "40mm 霰榴弹" #. ~ Description for {'str': '40mm buckshot grenade'} #: data/mods/Generic_Guns/ammo/grenade.json @@ -197167,7 +197005,7 @@ msgstr "一颗使用猎鹿弹弹头的榴弹。设计为榴弹发射器使用者 #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm smoke grenade" msgid_plural "40mm smoke grenades" -msgstr[0] "" +msgstr[0] "40mm 烟雾榴弹" #. ~ Description for 40mm smoke grenade #: data/mods/Generic_Guns/ammo/grenade.json @@ -197177,7 +197015,7 @@ msgstr "一颗设计用来提供烟幕掩护的榴弹。" #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm teargas grenade" msgid_plural "40mm teargas grenades" -msgstr[0] "" +msgstr[0] "40mm 催泪榴弹" #. ~ Description for 40mm teargas grenade #: data/mods/Generic_Guns/ammo/grenade.json @@ -197189,7 +197027,7 @@ msgstr "一颗催泪瓦斯榴弹。它爆炸后会散发的气雾能使目标暂 #: data/mods/Generic_Guns/ammo/grenade.json msgid "40mm slug grenade" msgid_plural "40mm slug grenades" -msgstr[0] "" +msgstr[0] "40mm 子弹榴弹" #. ~ Description for 40mm slug grenade #: data/mods/Generic_Guns/ammo/grenade.json @@ -197253,7 +197091,7 @@ msgstr[0] "废品霰弹" #: data/mods/Generic_Guns/ammo/shot.json msgid "shotshell, flechette" msgid_plural "shotshell, flechette" -msgstr[0] "" +msgstr[0] "镖形霰弹" #. ~ Description for {'str_sp': 'shotshell, flechette'} #: data/mods/Generic_Guns/ammo/obsolete.json @@ -197330,7 +197168,7 @@ msgstr[0] "大型步枪穿甲弹(复装)" #: data/mods/Generic_Guns/ammo/pistol.json msgid "9mm, FMJ" msgid_plural "9mm, FMJ" -msgstr[0] "" +msgstr[0] "9mm 被甲弹" #. ~ Description for {'str_sp': '9mm, FMJ'} #: data/mods/Generic_Guns/ammo/pistol.json @@ -197344,7 +197182,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol.json msgid "9mm, JHP" msgid_plural "9mm, JHP" -msgstr[0] "" +msgstr[0] "9mm 空尖弹" #. ~ Description for {'str_sp': '9mm, JHP'} #: data/mods/Generic_Guns/ammo/pistol.json @@ -197359,7 +197197,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol.json msgid "9mm, FMJ (black powder)" msgid_plural "9mm, FMJ (black powder)" -msgstr[0] "" +msgstr[0] "9mm 被甲弹(黑火药)" #. ~ Description for {'str_sp': '9mm, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/pistol.json @@ -197374,7 +197212,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol.json msgid "9mm, JHP (black powder)" msgid_plural "9mm, JHP (black powder)" -msgstr[0] "" +msgstr[0] "9mm 空尖弹(黑火药)" #. ~ Description for {'str_sp': '9mm, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/pistol.json @@ -197389,7 +197227,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_magnum.json msgid ".44, FMJ" msgid_plural ".44, FMJ" -msgstr[0] "" +msgstr[0] ".44 被甲弹" #. ~ Description for {'str_sp': '.44, FMJ'} #: data/mods/Generic_Guns/ammo/pistol_magnum.json @@ -197403,7 +197241,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_magnum.json msgid ".44, JHP" msgid_plural ".44, JHP" -msgstr[0] "" +msgstr[0] ".44 空尖弹" #. ~ Description for {'str_sp': '.44, JHP'} #: data/mods/Generic_Guns/ammo/pistol_magnum.json @@ -197419,7 +197257,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_magnum.json msgid ".44, FMJ (black powder)" msgid_plural ".44, FMJ (black powder)" -msgstr[0] "" +msgstr[0] ".44 被甲弹(黑火药)" #. ~ Description for {'str_sp': '.44, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/pistol_magnum.json @@ -197434,7 +197272,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_magnum.json msgid ".44, JHP (black powder)" msgid_plural ".44, JHP (black powder)" -msgstr[0] "" +msgstr[0] ".44 空尖弹(黑火药)" #. ~ Description for {'str_sp': '.44, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/pistol_magnum.json @@ -197449,7 +197287,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_tiny.json msgid ".22, FMJ" msgid_plural ".22, FMJ" -msgstr[0] "" +msgstr[0] ".22 被甲弹" #. ~ Description for {'str_sp': '.22, FMJ'} #: data/mods/Generic_Guns/ammo/pistol_tiny.json @@ -197463,7 +197301,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_tiny.json msgid ".22, JHP" msgid_plural ".22, JHP" -msgstr[0] "" +msgstr[0] ".22 空尖弹" #. ~ Description for {'str_sp': '.22, JHP'} #: data/mods/Generic_Guns/ammo/pistol_tiny.json @@ -197479,7 +197317,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_tiny.json msgid ".22, FMJ (black powder)" msgid_plural ".22, FMJ (black powder)" -msgstr[0] "" +msgstr[0] ".22 被甲弹(黑火药)" #. ~ Description for {'str_sp': '.22, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/pistol_tiny.json @@ -197494,7 +197332,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/pistol_tiny.json msgid ".22, JHP (black powder)" msgid_plural ".22, JHP (black powder)" -msgstr[0] "" +msgstr[0] ".22 空尖弹(黑火药)" #. ~ Description for {'str_sp': '.22, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/pistol_tiny.json @@ -197510,7 +197348,7 @@ msgstr "" #: data/mods/Generic_Guns/vehicles/ammo_redefine_hacks/temp_ammo_redefine_hack.json msgid "5.56mm, FMJ" msgid_plural "5.56mm, FMJ" -msgstr[0] "" +msgstr[0] "5.56mm 被甲弹" #. ~ Description for {'str_sp': '5.56mm, FMJ'} #: data/mods/Generic_Guns/ammo/rifle.json @@ -197525,7 +197363,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle.json msgid "5.56mm, JHP" msgid_plural "5.56mm, JHP" -msgstr[0] "" +msgstr[0] "5.56mm 空尖弹" #. ~ Description for {'str_sp': '5.56mm, JHP'} #: data/mods/Generic_Guns/ammo/rifle.json @@ -197540,7 +197378,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle.json msgid "5.56mm, FMJ (black powder)" msgid_plural "5.56mm, FMJ (black powder)" -msgstr[0] "" +msgstr[0] "5.56mm 被甲弹(黑火药)" #. ~ Description for {'str_sp': '5.56mm, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/rifle.json @@ -197555,7 +197393,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle.json msgid "5.56mm, JHP (black powder)" msgid_plural "5.56mm, JHP (black powder)" -msgstr[0] "" +msgstr[0] "5.56mm 空尖弹(黑火药)" #. ~ Description for {'str_sp': '5.56mm, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/rifle.json @@ -197571,7 +197409,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle_huge.json msgid "12.7mm, FMJ" msgid_plural "12.7mm, FMJ" -msgstr[0] "" +msgstr[0] "12.7mm 被甲弹" #. ~ Description for {'str_sp': '12.7mm, FMJ'} #: data/mods/Generic_Guns/ammo/rifle_huge.json @@ -197586,7 +197424,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle_huge.json msgid "12.7mm, JHP" msgid_plural "12.7mm, JHP" -msgstr[0] "" +msgstr[0] "12.7mm 空尖弹" #. ~ Description for {'str_sp': '12.7mm, JHP'} #: data/mods/Generic_Guns/ammo/rifle_huge.json @@ -197601,7 +197439,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle_huge.json msgid "12.7mm, FMJ (black powder)" msgid_plural "12.7mm, FMJ (black powder)" -msgstr[0] "" +msgstr[0] "12.7mm 被甲弹(黑火药)" #. ~ Description for {'str_sp': '12.7mm, FMJ (black powder)'} #. ~ Description for {'str_sp': '12.7mm, JHP (black powder)'} @@ -197617,7 +197455,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/rifle_huge.json msgid "12.7mm, JHP (black powder)" msgid_plural "12.7mm, JHP (black powder)" -msgstr[0] "" +msgstr[0] "12.7mm 空尖弹(黑火药)" #: data/mods/Generic_Guns/ammo/rocket.json msgid "rocket, antipersonnel" @@ -197791,7 +197629,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/sniper.json msgid "7.62mm, FMJ" msgid_plural "7.62mm, FMJ" -msgstr[0] "" +msgstr[0] "7.62mm 被甲弹" #. ~ Description for {'str_sp': '7.62mm, FMJ'} #: data/mods/Generic_Guns/ammo/sniper.json @@ -197805,7 +197643,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/sniper.json msgid "7.62mm, JHP" msgid_plural "7.62mm, JHP" -msgstr[0] "" +msgstr[0] "7.62mm 空尖弹" #. ~ Description for {'str_sp': '7.62mm, JHP'} #: data/mods/Generic_Guns/ammo/sniper.json @@ -197819,7 +197657,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/sniper.json msgid "7.62mm, FMJ (black powder)" msgid_plural "7.62mm, FMJ (black powder)" -msgstr[0] "" +msgstr[0] "7.62mm 被甲弹(黑火药)" #. ~ Description for {'str_sp': '7.62mm, FMJ (black powder)'} #: data/mods/Generic_Guns/ammo/sniper.json @@ -197833,7 +197671,7 @@ msgstr "" #: data/mods/Generic_Guns/ammo/sniper.json msgid "7.62mm, JHP (black powder)" msgid_plural "7.62mm, JHP (black powder)" -msgstr[0] "" +msgstr[0] "7.62mm 空尖弹(黑火药)" #. ~ Description for {'str_sp': '7.62mm, JHP (black powder)'} #: data/mods/Generic_Guns/ammo/sniper.json @@ -197901,7 +197739,7 @@ msgstr "" #: data/mods/Generic_Guns/firearms/grenade.json msgid "40mm grenade launcher" msgid_plural "40mm grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 榴弹发射器" #: data/mods/Generic_Guns/firearms/grenade.json msgid "" @@ -197916,7 +197754,7 @@ msgstr "" #: data/mods/Generic_Guns/firearms/grenade.json msgid "40mm automatic grenade launcher" msgid_plural "40mm automatic grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 自动榴弹发射器" #: data/mods/Generic_Guns/firearms/grenade.json msgid "" @@ -197932,7 +197770,7 @@ msgstr "" #: data/mods/Generic_Guns/firearms/grenade.json msgid "40mm detachable grenade launcher" msgid_plural "40mm detachable grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 可拆卸榴弹发射器" #: data/mods/Generic_Guns/firearms/grenade.json msgid "" @@ -197949,7 +197787,7 @@ msgstr "" #: data/mods/Generic_Guns/firearms/grenade.json msgid "40mm revolving grenade launcher" msgid_plural "40mm revolving grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 转轮榴弹发射器" #: data/mods/Generic_Guns/firearms/grenade.json msgid "" @@ -198102,7 +197940,7 @@ msgstr[0] "衝鋒槍" #: data/mods/Generic_Guns/firearms/pistol.json #: data/mods/Generic_Guns/firearms/sniper.json msgid "You shouldn't see this! " -msgstr "" +msgstr "你不应该看到这个!" #: data/mods/Generic_Guns/firearms/pistol_magnum.json msgid ".44 pistol" @@ -198432,7 +198270,7 @@ msgstr[0] "狙击步枪" #: data/mods/Generic_Guns/gunmods/gunmods.json msgid "40mm underbarrel grenade launcher" msgid_plural "40mm underbarrel grenade launchers" -msgstr[0] "" +msgstr[0] "40mm 下挂式榴弹发射器" #: data/mods/Generic_Guns/gunmods/gunmods.json msgid "" @@ -198449,7 +198287,7 @@ msgstr "" #: data/mods/Generic_Guns/gunmods/gunmods.json msgid "40mm modified underbarrel grenade launcher" msgid_plural "40mm modified underbarrel grenade launcher" -msgstr[0] "" +msgstr[0] "40mm 下挂式榴弹发射器(改)" #: data/mods/Generic_Guns/gunmods/gunmods.json msgid "" @@ -198475,7 +198313,7 @@ msgstr[0] "管下霰弹枪(改)" #: data/mods/Generic_Guns/magazines/grenade.json msgid "40mm grenade belt" msgid_plural "40mm grenade belts" -msgstr[0] "" +msgstr[0] "40mm 榴弹带" #. ~ Description for {'str': '40mm grenade belt'} #: data/mods/Generic_Guns/magazines/grenade.json @@ -199024,74 +198862,6 @@ msgstr "" msgid "Urban Development mod support for Larwick's Overmap." msgstr "" -#: data/mods/Item_Category_Overhaul/categories.json -msgid "OTHER TOOLS" -msgstr "其他工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ENTRY TOOLS" -msgstr "破门工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WORKSHOP TOOLS" -msgstr "工作坊工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING TOOLS" -msgstr "烹饪工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CHEMISTRY TOOLS" -msgstr "化学工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FARM TOOLS" -msgstr "农用工具" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "DEPLOYABLES" -msgstr "可部署设备" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "COOKING INGREDIENTS" -msgstr "烹饪原料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "METAL SCRAP" -msgstr "金属废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "ELECTRONIC SCRAP" -msgstr "电子废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "FABRICS" -msgstr "织物" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "WOOD SCRAP" -msgstr "木头废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "PLASTIC SCRAP" -msgstr "塑料废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "CERAMIC SCRAP" -msgstr "陶瓷废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "GLASS SCRAP" -msgstr "玻璃废料" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "VALUABLES" -msgstr "贵重物品" - -#: data/mods/Item_Category_Overhaul/categories.json -msgid "SOIL" -msgstr "土壤" - #: data/mods/Item_Category_Overhaul/modinfo.json msgid "Item Category Overhaul" msgstr "物品分类大修" @@ -199101,177 +198871,6 @@ msgstr "物品分类大修" msgid "Massively overhauls item categories to allow better sorting." msgstr "大幅重做物品分类,以实现更好的排序功能。" -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Other Tools" -msgstr "其他工具区" - -#. ~ Description for Loot: Other Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for other tools." -msgstr "其他工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Entry Tools" -msgstr "破门工具区" - -#. ~ Description for Loot: Entry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for entry tools." -msgstr "破门工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Workshop Tools" -msgstr "工作坊工具区" - -#. ~ Description for Loot: Workshop Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for workshop tools." -msgstr "工作坊工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Tools" -msgstr "烹饪工具区" - -#. ~ Description for Loot: Cooking Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking tools." -msgstr "烹饪工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Chemistry Tools" -msgstr "化学工具区" - -#. ~ Description for Loot: Chemistry Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for chemistry tools." -msgstr "化学工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Farm Tools" -msgstr "农用工具区" - -#. ~ Description for Loot: Farm Tools -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for farm tools." -msgstr "农用工具的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Deployables" -msgstr "可部署设备区" - -#. ~ Description for Loot: Deployables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for deployable objects." -msgstr "可部署设备的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Electronics" -msgstr "电子产品区" - -#. ~ Description for Loot: Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for electronics." -msgstr "电子产品的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Cooking Ingredients" -msgstr "烹饪原料区" - -#. ~ Description for Loot: Cooking Ingredients -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for cooking ingredients." -msgstr "烹饪原料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Metal" -msgstr "金属废料区" - -#. ~ Description for Loot: Scrap Metal -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap metal." -msgstr "金属废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Electronics" -msgstr "电子废料区" - -#. ~ Description for Loot: Scrap Electronics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap electronics." -msgstr "电子废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Fabric" -msgstr "织物废料区" - -#. ~ Description for Loot: Scrap Fabric -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap fabric." -msgstr "织物废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Wood" -msgstr "木头废料区" - -#. ~ Description for Loot: Scrap Wood -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap wood." -msgstr "木头废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Plastic" -msgstr "塑料废料区" - -#. ~ Description for Loot: Scrap Plastic -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap plastic." -msgstr "塑料废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Ceramics" -msgstr "陶瓷废料区" - -#. ~ Description for Loot: Scrap Ceramics -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap ceramics." -msgstr "陶瓷废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Scrap Glass" -msgstr "玻璃废料区" - -#. ~ Description for Loot: Scrap Glass -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for scrap glass." -msgstr "玻璃废料的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Valuables" -msgstr "贵重物品区" - -#. ~ Description for Loot: Valuables -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for valuables." -msgstr "贵重物品的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Rocks" -msgstr "石头区" - -#. ~ Description for Loot: Rocks -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for rocks and minerals." -msgstr "石头和矿物的放置区域。" - -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Loot: Soil" -msgstr "土壤区" - -#. ~ Description for Loot: Soil -#: data/mods/Item_Category_Overhaul/zones.json -msgid "Destination for soil." -msgstr "土壤的放置区域。" - #: data/mods/Limit Fungal Growth/modinfo.json msgid "Limit Fungal Growth" msgstr "限制真菌成长" @@ -200555,90 +200154,110 @@ msgstr "你差点被%s抓住,但是用蛮力挣脱了!" msgid "The %s tries to grab , but they thrash their way to freedom!" msgstr "差点被%s抓住,但是用蛮力挣脱了!" -#: data/mods/Magiclysm/bionics.json data/mods/Magiclysm/items/bionics.json -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" -msgstr[0] "CBM:血液發電機" +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" +msgstr[0] "魔力结晶义鼻" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/bionics.json +#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} +#: data/mods/Magical_Nights/bionics.json +#: data/mods/Magical_Nights/items/bionics.json msgid "" -"Embedded into your back and connected to your bionic power supply is a " -"powerfull spell focus able to consume blood from dead creatures to produce " -"bionic power. It can store up to 100 mL of blood." -msgstr "你的背部装有一个强大的法术枢纽,并连接至你的生化能量系统,能够消耗其它生物的血液以产生生化能量。可以存放最多 100 ml 血液。" +"A large gem made with crystallized mana and some other stabilizing metals. " +"Comes with a specially designed power pack (installed into the skull) that " +"does not interfere with your normal facial functions. WARNING: for " +"Technophile use only. By using this spell you are waiving all liability of " +"Frikken Laser Beams Inc. and its subsidiaries." +msgstr "" +"一个使用魔力结晶和其他稳定金属制作而成的大型宝石。配有一个经过特别设计不会干扰你正常面部功能的供能装置(被安装在头骨之中)。警告:仅供技术爱好者使用。施放此法术视为你同意免除弗里肯激光公司及其子公司的所有责任。" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Line it with owlbear fur" -msgstr "" +msgstr "增加枭熊毛皮衬里" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy owlbear fur lining" -msgstr "" +msgstr "破坏枭熊毛皮衬里" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Pad with demon chitin" -msgstr "" +msgstr "增加恶魔甲壳衬里" -#: data/mods/Magiclysm/clothing_mods.json +#: data/mods/Magical_Nights/clothing_mods.json msgid "Destroy demon chitin padding" -msgstr "" +msgstr "破坏恶魔甲壳衬里" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Add black dragon scale coating" +msgstr "添加黑龙鳞表皮" + +#: data/mods/Magical_Nights/clothing_mods.json +msgid "Destroy black dragon scale coating" +msgstr "移除黑龙鳞表皮" -#: data/mods/Magiclysm/construction_group.json +#: data/mods/Magical_Nights/construction_group.json msgid "Build Translocator Gate" msgstr "建造易位门" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has an owlbear fur lining sewn into it to greatly " "increase its overall warmth." -msgstr "" +msgstr "这件装备缝上了枭熊毛皮内衬,极大增加 保暖度。" #. ~ Please leave anything in unchanged. -#: data/mods/Magiclysm/flags.json +#: data/mods/Magical_Nights/flags.json msgid "" "This clothing has a demon chitin padding sewn into it to greatly " "increase its overall fire resistance." -msgstr "" +msgstr "这件装备缝上了恶魔甲壳内衬,极大增加 火焰抗性。" -#: data/mods/Magiclysm/furniture.json +#. ~ Please leave anything in unchanged. +#: data/mods/Magical_Nights/flags.json +msgid "" +"This clothing has a coating of black dragon scales applied to it in order to" +" greatly increase its overall acid resistance." +msgstr "这件装备附加了黑龙鳞表皮,极大增加 酸性抗性。" + +#: data/mods/Magical_Nights/furniture.json msgid "Translocator Gate" msgstr "易位门" #. ~ Description for Translocator Gate -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A gate for translocation. Cast the translocation spell or use a " "translocator to choose this gate as a destination." msgstr "一座易位门。施放易位术或使用易位门可将其作为传送目的地。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Magic Circle" msgstr "魔法阵" #. ~ Description for Magic Circle -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a rough magic circle, carved into the ground and decorated with " "blood, candles, and other small knick-knacks." msgstr "这是一个刻在地上的魔法阵,上面装饰着血液、蜡烛以及其它小物件。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "large glowing boulder" msgstr "发光的巨石" #. ~ Description for large glowing boulder -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "Something about this doesn't look right." msgstr "它看上去不太对劲。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "enchanter's workbench" msgstr "附魔师工作台" #. ~ Description for enchanter's workbench -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "An ornate oak cabinet topped by a durable resin countertop resistant to most" " alchemical spills and burns. It has wired in electrical and gas fittings, " @@ -200646,24 +200265,24 @@ msgid "" msgstr "" "一个装饰华丽的橡木储藏柜,上面有一个耐用的树脂台面,能抵抗大多数炼金物品的腐蚀,它同时配有电力与煤气设备,并点缀着许多保护用的符文,不过大部分都是装饰。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "standing alembic" msgstr "立式蒸馏釜" #. ~ Description for standing alembic -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "A large glass and copper alembic for distilling alchemical concoctions. It " "consists of a copper pot with rising spires of twisted glass draining into " "various removable bottles." msgstr "一台由玻璃和铜制成的大型蒸馏釜,用于提纯炼金药剂。它的主体是一口铜锅,顶部有许多盘旋上升的螺旋形玻璃排水管,通向各种可被移除的瓶子。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "orrery" msgstr "太阳系仪" #. ~ Description for orrery -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a beautiful, non-scale model of the solar system. A complex series " "of gears allows the relative motions of the planets to be studied at the " @@ -200672,44 +200291,45 @@ msgid "" msgstr "" "一套外观美丽,比例与实际不符的太阳系模型。一系列复杂的齿轮使你能在摇柄转动时进行行星相对运动的研究。这台更现代的版本带有蓝牙模块,本来可以通过一个外部APP来控制它,如果还有电的话。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "huge mana crystal" msgstr "巨型魔力水晶" #. ~ Description for huge mana crystal -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a mana crystal that juts from the ground as if it had sprouted up " "like a weed. It pulses with a delicate yellow energy, occasionally bursting" " with flashes of pent-up light." msgstr "一个像杂草一样在地面上突出而来的魔法水晶。它发出微弱的黄色能量脉冲,偶尔会迸发出被压抑的光芒。" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "glass shattering!" msgstr "玻璃破碎声!" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "mana crackling!" msgstr "魔力噼啪声!" -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "stone altar" msgstr "石头祭坛" #. ~ Description for stone altar -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is big stone altar. Most commonly used in morally questionable " "rituals." msgstr "一个大型石头祭坛。最常用于各类不合伦理的仪式。" -#: data/mods/Magiclysm/furniture.json data/mods/Magiclysm/items/tools.json +#: data/mods/Magical_Nights/furniture.json +#: data/mods/Magical_Nights/items/tools.json msgid "demon forge" msgid_plural "demon forges" msgstr[0] "恶魔熔炉" #. ~ Description for demon forge -#: data/mods/Magiclysm/furniture.json +#: data/mods/Magical_Nights/furniture.json msgid "" "This is a forge made of the chitin of a huge, red spider that has a penchant" " for flames. Custom made to withstand the heat from alumentum, this forge " @@ -200717,41 +200337,51 @@ msgid "" msgstr "" "一个由巨大的红色恶魔蜘蛛的甲壳所制成的锻铁炉,它对火焰有着强烈的嗜好。经过特殊处理能够抵御源动之焰的高温,这个锻炉可以将魔法金属熔化成能够制造物品的锭。" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Arcane Skin" msgstr "奧術皮膚" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Black Dragon Hide" msgstr "黑龙皮" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Demon Chitin" msgstr "惡魔幾丁質" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Orichalcum" msgstr "山铜" -#: data/mods/Magiclysm/materials.json +#: data/mods/Magical_Nights/materials.json msgid "Concentrated Mana" msgstr "魔力结晶" -#: data/mods/Magiclysm/modinfo.json -msgid "Magiclysm" -msgstr "魔法災變" +#: data/mods/Magical_Nights/materials.json +msgid "Dragon Bone" +msgstr "龙骨" -#. ~ Description for Magiclysm -#: data/mods/Magiclysm/modinfo.json -msgid "Cataclysm but with magic spells, BN Edition!" -msgstr "" +#: data/mods/Magical_Nights/materials.json +msgid "Mithril" +msgstr "秘银" + +#: data/mods/Magical_Nights/modinfo.json +msgid "Magical Nights" +msgstr "魔法之夜" -#: data/mods/Magiclysm/modinfo.json +#. ~ Description for Magical Nights +#: data/mods/Magical_Nights/modinfo.json +msgid "" +"Bright Nights, but with magic! From the ashes of Magiclysm rises a new mod," +" and a new head at the controls. " +msgstr "明亮之夜,但有魔法!从Magiclysm的废墟中崛起了一个新mod与一位新的控制者。" + +#: data/mods/Magical_Nights/modinfo.json msgid "Spellcraft" msgstr "法術技藝" #. ~ Description for {'str': 'Spellcraft'} -#: data/mods/Magiclysm/modinfo.json +#: data/mods/Magical_Nights/modinfo.json msgid "" "Your skill in the arcane. Represents magic theory and all that entails. A " "higher skill increases how quickly you can learn spells, and decreases their" @@ -200759,70 +200389,112 @@ msgid "" msgstr "" "你的奧術領域技能。包括魔法理論以及相關的一切。技能越高你學習法術的速度就越快,而且也降低法術失敗的機率。你能透過閱讀魔法書或是練習施法來提高此技能。" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales your %2$s with its trident!" msgstr "%1$s 用三叉戟刺穿了你的 %2$s!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s impales 's %2$s with its trident!" msgstr "%1$s 用三叉戟刺穿了 的 %2$s!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale your %2$s with its trident, but fails to penetrate " "your armor!" msgstr "%1$s 试图用三叉戟刺穿你的 %2$s,但是没能穿透护甲!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to impale 's %2$s with its trident, but fails to " "penetrate their armor!" msgstr "%1$s 试图用三叉戟刺穿 的 %2$s,但是没能穿透护甲!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes your %2$s with its greatclub!" msgstr "%1$s 用巨木棒砸碎了你的 %2$s!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "The %1$s crushes 's %2$s with its greatclub!" msgstr "%1$s 用巨木棒砸碎了 的 %2$s!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush your %2$s with its greatclub, but swings wide and " "stumbles." msgstr "%1$s 试图用巨木棒砸碎你的 %2$s,但是砸空并摔倒了!" -#: data/mods/Magiclysm/monster_attacks.json +#: data/mods/Magical_Nights/monster_attacks.json msgid "" "The %1$s tries to crush 's %2$s with its greatclub, but swings wide" " and stumbles." msgstr "%1$s 试图用巨木棒砸碎 的 %2$s,但是砸空并摔倒了!" -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "animated blade" msgid_plural "animated blades" msgstr[0] "飛舞幻刃" #. ~ Description for animated blade -#: data/mods/Magiclysm/monsters.json +#: data/mods/Magical_Nights/monsters.json msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "一柄发光的魔法长剑,它正四处游走,准备把你的敌人切成碎块。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Zombie" +msgid_plural "Summoned Zombies" +msgstr[0] "召唤丧尸" + +#. ~ Description for Summoned Zombie +#: data/mods/Magical_Nights/monsters.json +msgid "A summoned zombie. Slightly more intelligent than its wild cousins." +msgstr "召唤丧尸。比野生同类稍微聪明一些。" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Skeleton" +msgid_plural "Summoned Skeletons" +msgstr[0] "召唤骷髅" + +#. ~ Description for Summoned Skeleton +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned skeleton. Slightly more intelligent than its wild cousins. " +"Seems like it somehow enjoys puns." +msgstr "召唤骷髅。比野生同类稍微聪明一些。似乎莫名其妙地喜欢双关语冷笑话。" + +#: data/mods/Magical_Nights/monsters.json +msgid "Summoned Decayed Pouncer" +msgid_plural "Summoned Decayed Pouncers" +msgstr[0] "召唤腐朽突袭兽" + +#. ~ Description for Summoned Decayed Pouncer +#: data/mods/Magical_Nights/monsters.json +msgid "" +"A summoned zombie cougar. Slightly more intelligent than its wild cousins." +msgstr "召唤腐朽突袭兽。比野生同类稍微聪明一些。" + +#: data/mods/Magical_Nights/obsolete.json +msgid "Obsolete Blood Power Generator CBM" +msgstr "过时血液燃料电池CBM" + +#. ~ Description for {'str': 'Obsolete Blood Power Generator CBM'} +#: data/mods/Magical_Nights/obsolete.json +msgid "This bionic is obsolete!" +msgstr "这个生化插件已经过时了!" + +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Would-be Wizard" msgstr "將來的巫師" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Would-be Wizard" msgstr "將來的巫師" #. ~ Profession (male Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " @@ -200830,25 +200502,25 @@ msgid "" msgstr "你找到了一本鮮豔色彩的小冊子,聲稱你可以成為一個巫師,古怪的寧靜盼隨著你周遭世界的崩壞。" #. ~ Profession (female Would-be Wizard) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You found a pamphlet with bright colors claiming you can be a Wizard, oddly " "serene with the world falling down around you." msgstr "你找到了一本鮮豔色彩的小冊子,聲稱你可以成為一個巫師,古怪的寧靜盼隨著你周遭世界的崩壞。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Pyromaniac Kelvinist" msgstr "狂熱的熱力學者" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Pyromaniac Kelvinist" msgstr "狂熱的熱力學者" #. ~ Profession (male Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You have loved fire all of your life. You have now discovered your inner " @@ -200856,25 +200528,25 @@ msgid "" msgstr "你這一生都愛著火。現在你已經發現了內在的火焰,並希望在世界上鍛煉它。" #. ~ Profession (female Pyromaniac Kelvinist) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You have loved fire all of your life. You have now discovered your inner " "fire, and want to exercise that upon the world." msgstr "你這一生都愛著火。現在你已經發現了內在的火焰,並希望在世界上鍛煉它。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Druid" msgstr "德魯伊" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Druid" msgstr "德魯伊" #. ~ Profession (male Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -200882,7 +200554,7 @@ msgid "" msgstr "古老的德鲁伊祭坛在大灾变中随风而逝了。但自然终将繁盛。" #. ~ Profession (female Druid) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The ancient circle of druids is gone with the Cataclysm. Nature must " @@ -200890,7 +200562,7 @@ msgid "" msgstr "古老的德鲁伊祭坛在大灾变中随风而逝了。但自然终将繁盛。" #. ~ Profession (male Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -200900,7 +200572,7 @@ msgid "" msgstr "当灾难来袭,你动用你最擅长的能力来保护你的教区信徒。但他们都死了,显然光做祷告好像没多大用嘛!现在,是时候找些更切实的手段保护你自己了。" #. ~ Profession (female Priest) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "When the apocalypse struck you did everything you could to protect your " @@ -200910,7 +200582,7 @@ msgid "" msgstr "当灾难来袭,你动用你最擅长的能力来保护你的教区信徒。但他们都死了,显然光做祷告好像没多大用嘛!现在,是时候找些更切实的手段保护你自己了。" #. ~ Profession (male Imam) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -200921,7 +200593,7 @@ msgstr "" "在大灾变发生前,你一生中的大部分时间,都在本地的清真寺中的研读先知和古兰经中的字句,和在你的社区中布道度过了。但是现在,那些不远千里从四面八方过来的信教者们,都不再是为了听你的布道,而是为了来吃你的脑子来了。" #. ~ Profession (female Mourchida) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent much of your time prior to the apocalypse at the local mosque, " @@ -200932,7 +200604,7 @@ msgstr "" "在大灾变发生前,你一生中的大部分时间,都在本地的清真寺中的研读先知和古兰经中的字句,和在你的社区中布道度过了。但是现在,那些不远千里从四面八方过来的信教者们,都不再是为了听你的布道,而是为了来吃你的脑子来了。" #. ~ Profession (male Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -200942,7 +200614,7 @@ msgstr "" "你用了很多年来游历世界,以增长见识变得聪慧。通常,你可以给出任何的问题的答案,但是你现在被一堆饥饿的不死生物包围着,对自己下一步应该怎么做的问题毫无头绪。" #. ~ Profession (female Guru) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You spent many years traveling the world, becoming wise and learned. " @@ -200952,7 +200624,7 @@ msgstr "" "你用了很多年来游历世界,以增长见识变得聪慧。通常,你可以给出任何的问题的答案,但是你现在被一堆饥饿的不死生物包围着,对自己下一步应该怎么做的问题毫无头绪。" #. ~ Profession (male Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -200963,7 +200635,7 @@ msgstr "" "你把你的一生都奉献在一个城镇到一个城镇地传播福音和去往传播福音的路上。现在,所有东西都已坠入地狱,你不能够再维持你的播客生活了,因为那些不死生物听到你的布道后也不会再心动了。" #. ~ Profession (female Preacher) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You devoted your life to spreading the good word; always on the road, " @@ -200973,18 +200645,18 @@ msgid "" msgstr "" "你把你的一生都奉献在一个城镇到一个城镇地传播福音和去往传播福音的路上。现在,所有东西都已坠入地狱,你不能够再维持你的播客生活了,因为那些不死生物听到你的布道后也不会再心动了。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Necromancer" msgstr "新手死靈法師" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Necromancer" msgstr "新手死靈法師" #. ~ Profession (male Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -200993,7 +200665,7 @@ msgid "" msgstr "你以前总是不得不隐藏自己的魔法,因为它在魔法师世界中不被大多数人所接受,但现在面对大灾变时,你需要使出浑身解数利用好每一个法术。" #. ~ Profession (female Novice Necromancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always had to hide your magic, as it was generally not an acceptable " @@ -201001,18 +200673,18 @@ msgid "" "pull every trick out of the book." msgstr "你以前总是不得不隐藏自己的魔法,因为它在魔法师世界中不被大多数人所接受,但现在面对大灾变时,你需要使出浑身解数利用好每一个法术。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Stormshaper" msgstr "新手塑風者" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Stormshaper" msgstr "新手塑風者" #. ~ Profession (male Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -201022,7 +200694,7 @@ msgid "" msgstr "你爸以前是个气象员,所以你也对气象学很感兴趣。最近你发现你居然可以用神秘的方法操作天气!可惜你没来得及发挥你的力量,大灾变就到来了……" #. ~ Profession (female Novice Stormshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "The son of a weatherman, you were always interested in the weather. " @@ -201031,18 +200703,18 @@ msgid "" "power, as events unfolded…" msgstr "你爸以前是个气象员,所以你也对气象学很感兴趣。最近你发现你居然可以用神秘的方法操作天气!可惜你没来得及发挥你的力量,大灾变就到来了……" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Earthshaper" msgstr "新手塑地者" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Earthshaper" msgstr "新手塑地者" #. ~ Profession (male Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " @@ -201050,25 +200722,25 @@ msgid "" msgstr "你在戰鬥中總是很強悍。你的教練設法教了你一兩招,讓你更加強悍。" #. ~ Profession (female Novice Earthshaper) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "You always were tough in a fight. Your coach managed to teach you a trick " "or two to make you a little tougher." msgstr "你在戰鬥中總是很強悍。你的教練設法教了你一兩招,讓你更加強悍。" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_male" msgid "Novice Technomancer" msgstr "新手科技巫師" -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "profession_female" msgid "Novice Technomancer" msgstr "新手科技巫師" #. ~ Profession (male Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_male" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " @@ -201076,59 +200748,93 @@ msgid "" msgstr "在最近的大災變中,你發現的在測試中作弊的方式可能需要找到其他用途。" #. ~ Profession (female Novice Technomancer) description -#: data/mods/Magiclysm/professions.json +#: data/mods/Magical_Nights/professions.json msgctxt "prof_desc_female" msgid "" "With the recent Cataclysm, the way you found to cheat on tests may have to " "find some other use." msgstr "在最近的大災變中,你發現的在測試中作弊的方式可能需要找到其他用途。" +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_male" +msgid "Novice Kelvinist" +msgstr "炽霜法师学徒" + +#: data/mods/Magical_Nights/professions.json +msgctxt "profession_female" +msgid "Novice Kelvinist" +msgstr "炽霜法师学徒" + +#. ~ Profession (male Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_male" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" +"从小以来,你总是对冷热交替的现象深深着迷。火焰总能温暖你的心灵,而每到冬天,你都会祈祷能有一个雪天,只因为你对雪的热爱从未改变,即便随着年龄增长,这份热情依然未减。于是,你自然而然地开始学习操控这些原始元素的魔法。" + +#. ~ Profession (female Novice Kelvinist) description +#: data/mods/Magical_Nights/professions.json +msgctxt "prof_desc_female" +msgid "" +"Even from a young age, you'd always felt drawn to the hot and cold. Fire " +"had always warmed your spirits, and every Winter you were praying for a snow" +" day simply because you loved them so much, even as you got older. It's " +"only natural that you'd find yourself learning the magic to control these " +"primal elements." +msgstr "" +"从小以来,你总是对冷热交替的现象深深着迷。火焰总能温暖你的心灵,而每到冬天,你都会祈祷能有一个雪天,只因为你对雪的热爱从未改变,即便随着年龄增长,这份热情依然未减。于是,你自然而然地开始学习操控这些原始元素的魔法。" + #. ~ Crafting recipes category name -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTED" msgstr "魔法" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "POTIONS" msgstr "藥劑" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "RUNES" msgstr "符文" #. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "ENCHANTING" -msgstr "" +msgstr "附魔" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana focusing" msgstr "法力聚焦" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana infusing" msgstr "法力灌注" -#: data/mods/Magiclysm/qualities.json +#: data/mods/Magical_Nights/qualities.json msgid "mana weaving" msgstr "法力編織" #. ~ Name for scenario 'Lost Faith' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "Lost Faith" msgstr "失去信念" #. ~ Name for scenario 'Lost Faith' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "Lost Faith" msgstr "失去信念" #. ~ Description for scenario 'Lost Faith' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -201138,7 +200844,7 @@ msgstr "" "你已经宣扬你的信仰很长一段时间了,但最近的事件让产生了动摇。你在神殿里游荡,发现了一些书籍。也许它能够恢复你的信仰。但也说不定会完全摧毁它。" #. ~ Description for scenario 'Lost Faith' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You've been preaching your faith for a long time, but the recent events have" @@ -201148,25 +200854,25 @@ msgstr "" "你已经宣扬你的信仰很长一段时间了,但最近的事件让产生了动摇。你在神殿里游荡,发现了一些书籍。也许它能够恢复你的信仰。但也说不定会完全摧毁它。" #. ~ Starting location for scenario 'Lost Faith'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Church" msgstr "教會" #. ~ Name for scenario 'The Wizard's Apprentice' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Apprentice" msgstr "魔法師的學徒" #. ~ Name for scenario 'The Wizard's Apprentice' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Apprentice" msgstr "魔法師的學徒" #. ~ Description for scenario 'The Wizard's Apprentice' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -201179,7 +200885,7 @@ msgstr "" #. ~ Description for scenario 'The Wizard's Apprentice' for a female #. character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, working on a " @@ -201191,25 +200897,25 @@ msgstr "" "自从你成为一名魔法师的学徒已经有一段时间了,正在研制一种可以用来逃离大灾变的原型设备。不过,处女航出了点问题,你的老师把他的内脏传送到了体外。现在你要想办法靠自己生存。至少他忘了把笔记本带上……" #. ~ Starting location for scenario 'The Wizard's Apprentice'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Secret Basement Study" msgstr "魔法師的秘密地下研究室" #. ~ Name for scenario 'The Wizard's Vacation' for a male character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_male" msgid "The Wizard's Vacation" msgstr "魔法假期" #. ~ Name for scenario 'The Wizard's Vacation' for a female character -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scenario_female" msgid "The Wizard's Vacation" msgstr "魔法假期" #. ~ Description for scenario 'The Wizard's Vacation' for a male character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_male" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -201220,7 +200926,7 @@ msgstr "" "自从你成为一名魔法师的学徒已经有一段时间了,你已经储蓄多年,梦想能在一座僻静的法师塔里中度假。你的自我发现之旅被突如其来的大灾变打断了。现在你得自己想办法活下去。" #. ~ Description for scenario 'The Wizard's Vacation' for a female character. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "scen_desc_female" msgid "" "You have been an apprentice to a wizard for some time now, you've saved for " @@ -201231,584 +200937,635 @@ msgstr "" "自从你成为一名魔法师的学徒已经有一段时间了,你已经储蓄多年,梦想能在一座僻静的法师塔里中度假。你的自我发现之旅被突如其来的大灾变打断了。现在你得自己想办法活下去。" #. ~ Starting location for scenario 'The Wizard's Vacation'. -#: data/mods/Magiclysm/scenarios.json +#: data/mods/Magical_Nights/scenarios.json msgctxt "start_name" msgid "Wizard's Retreat Vacation" msgstr "魔法师度假地" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "magical beast" msgid_plural "magical beasts" -msgstr[0] "" +msgstr[0] "魔法生物" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "dragon" msgid_plural "dragons" -msgstr[0] "" +msgstr[0] "龙" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "lizardfolk" msgid_plural "lizardfolk" msgstr[0] "蜥蜴人" -#: data/mods/Magiclysm/species.json +#: data/mods/Magical_Nights/species.json msgid "goblin" msgid_plural "goblins" -msgstr[0] "" +msgstr[0] "哥布林" + +#: data/mods/Magical_Nights/species.json +msgid "orc" +msgid_plural "orcs" +msgstr[0] "兽人" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's Secret Basement Study" msgstr "魔法師的秘密地下研究室" -#: data/mods/Magiclysm/start_locations.json +#: data/mods/Magical_Nights/start_locations.json msgid "Wizard's lake retreat" msgstr "魔法师湖畔度假地" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "burnt tree" msgstr "烧焦的树" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This tree looks like it has been burnt badly, but it is somehow still " "standing." msgstr "这棵树看上去已经被完全烧焦了,但不知怎的,它仍然屹立不倒。" #. ~ Description for burnt tree -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This is a large coccoon-like object that looks to be the vague shape of some" " creature. You don't want to know how long it stayed alive while being " "sucked dry by these spiders." msgstr "这像是一个巨大的茧,看起来像某种生物的形状。你不想去想那个生物在被这些蜘蛛活活吸干之前活了多久。" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "webbing wall" msgstr "蛛网墙" #. ~ Description for webbing wall -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "这面墙似乎是由蛛网、木头碎片、碎石和某种深色树脂组合而成。" -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "barren dirt" msgstr "贫瘠土地" #. ~ Description for barren dirt -#: data/mods/Magiclysm/terrain.json +#: data/mods/Magical_Nights/terrain.json msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "泥土地,看来土壤十分贫瘠。也可以用来进行建设项目。" -#: data/mods/Magiclysm/tool_qualities.json +#: data/mods/Magical_Nights/tool_qualities.json msgid "magic mutagen mixer" msgstr "魔法诱变剂混合机" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Bless" msgstr "祝福術" #. ~ Description for {'str': 'Bless'} #. ~ Description for {'str': 'Scroll of Bless', 'str_pl': 'Scrolls of Bless'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "一個給予你能量並強化你的能力的祝福法術。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Holy Blade" msgstr "神聖之刃" #. ~ Description for {'str': 'Holy Blade'} #. ~ Description for {'str': 'Scroll of Holy Blade', 'str_pl': 'Scrolls of #. Holy Blade'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "This blade of light will cut through any evil it makes contact with!" msgstr "這把光明之劍將斬斷所有邪惡。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Spiritual Armor" msgstr "心靈護甲" #. ~ Description for {'str': 'Spiritual Armor'} #. ~ Description for {'str': 'Scroll of Spiritual Armor', 'str_pl': 'Scrolls #. of Spiritual Armor'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "如果你的信念夠堅定,邪惡無法打破你的防禦!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Smite" msgstr "神圣惩击" #. ~ Description for {'str': 'Smite'} #. ~ Description for {'str': 'Scroll of Smite', 'str_pl': 'Scrolls of Smite'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Evil has become pervasive throughout the world. Let your power be the light" " that shines in the darkness!" msgstr "邪恶已经蔓延到世界各地。让你的力量成为在黑暗中闪耀的光芒!" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Life Conversion" msgstr "生命轉化" #. ~ Description for {'str': 'Life Conversion'} #. ~ Description for {'str': 'Scroll of Life Conversion', 'str_pl': 'Scrolls #. of Life Conversion'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You channel your life force itself into your spiritual energy. You spend hp" " to regain mana." msgstr "你將自身生命力引入你的精神能量。消耗生命力來恢復法力值。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Mind over Pain" msgstr "心胜于痛" #. ~ Description for {'str': 'Mind over Pain'} #. ~ Description for {'str': 'Scroll of Mind Over Pain', 'str_pl': 'Scrolls of #. Mind Over Pain'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "With an intense ritual that resembles crossfit, you manage to put some of " "your pain at bay." msgstr "这是一种类似于体能训练的激烈仪式,可以帮助你将一些疼痛抛之脑后。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Zombie" msgstr "召喚殭屍" #. ~ Description for {'str': 'Summon Zombie'} #. ~ Description for {'str': 'Scroll of Summon Zombie', 'str_pl': 'Scrolls of #. Summon Zombie'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "An ethereal-looking zombie rises from the depths of the earth to fight for " "you. You may be able to summon more with a higher level in this spell." msgstr "一只从地底深处冒出来的丧尸会为你而战。如果你这个法术的等级够高的话,就能召唤出更多它的同类。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Skeleton" msgstr "召喚骷髏" #. ~ Description for {'str': 'Summon Skeleton'} #. ~ Description for {'str': 'Scroll of Summon Skeleton', 'str_pl': 'Scrolls #. of Summon Skeleton'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A ghostly skeleton rises from the depths of the earth to fight for you. You" " may be able to summon more with a higher level in this spell." msgstr "一只幽灵似的骷髅,从大地深处被召唤出来为你战斗。如果你这个法术的等级够高的话,就能召唤出更多它的同类。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Summon Decayed Pouncer" msgstr "召喚腐爛利爪" #. ~ Description for {'str': 'Summon Decayed Pouncer'} #. ~ Description for {'str': 'Scroll of Summon Decayed Pouncer', 'str_pl': #. 'Scrolls of Summon Decayed Pouncer'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A decrepit looking large cat rises from the depths of the earth to fight for" " you. You may be able to summon more with a higher level in this spell." msgstr "一只看起来饱经风霜的巨猫,从大地深处被召唤出来为你战斗。如果你这个法术的等级够高的话,就能召唤出更多它的同类。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Necrotic Gaze" msgstr "腐壞凝視" #. ~ Description for {'str': 'Necrotic Gaze'} #. ~ Description for {'str': 'Scroll of Necrotic Gaze', 'str_pl': 'Scrolls of #. Necrotic Gaze'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "你利用自己血液的力量將壞死的能量注入你的視線,傷害你所凝視的目標。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Animist Rune" msgstr "泛靈論者符文" #. ~ Description for {'str': 'Animist Rune'} -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" "This ritual creates a small pebble attuned to Animists. You can use the " "rune as a catalyst for recipes." msgstr "這個儀式創造了一個與泛靈論者契合的小石子。你能將此符文用於製作時的催化劑。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Ignus Fatuus" msgstr "召唤鬼火" #. ~ Description for {'str': 'Ignus Fatuus'} #. ~ Description for {'str': 'Scroll of Ignus Fatuus', 'str_pl': 'Scrolls of #. Ignus Fatuus'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/animist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" " astray. With more experience, this spell can conjure multiple ghost " "lights." msgstr "从富有生命力的沼泽水蒸气中召唤幽灵般的狐火,把你的敌人引向歧途。当你有更多的施法经验时,这个法术可以召唤出数只发光的鬼火。" -#: data/mods/Magiclysm/Spells/animist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "Decaying Boneclub" msgstr "腐烂骨棒" #. ~ Description for {'str': 'Decaying Boneclub'} -#. ~ Description for {'str': 'Flamebreath'} -#: data/mods/Magiclysm/Spells/animist.json -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/animist.json msgid "" -"This spell ignites dust scattered in the air, creating a cone of flame. The" -" hot ashes can cling to targets, causing additional burns over time." -msgstr "该法术会点燃散落在空气中的灰尘,形成锥形火焰。 灼热的灰烬会附着在目标身上,随着时间的推移会造成额外的灼伤。" +"This spell links your live blood to the dead blood & bones, creating a club " +"hungry for the flesh of the living." +msgstr "此法术将你流动的鲜血与死者的血与骨相连,创造出一把渴望活人血肉的巨棒。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Cure Light Wounds" msgstr "治癒輕傷" #. ~ Description for {'str': 'Cure Light Wounds'} #. ~ Description for {'str': 'Scroll of Cure Light Wounds', 'str_pl': 'Scrolls #. of Cure Light Wounds'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Heals a little bit of damage on the target." msgstr "醫治目標的傷害,回復少量的生命值。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Pain Split" msgstr "痛苦均分" #. ~ Description for {'str': 'Pain Split'} #. ~ Description for {'str': 'Scroll of Pain Split', 'str_pl': 'Scrolls of #. Pain Split'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Evens out damage among your limbs." msgstr "將你的傷痛平均分配到肢體上。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Vicious Tentacle" msgstr "邪惡之觸" #. ~ Description for {'str': 'Vicious Tentacle'} #. ~ Description for {'str': 'Scroll of Vicious Tentacle', 'str_pl': 'Scrolls #. of Vicious Tentacle'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell extrudes a long nasty whiplike tentacle of sharp bones and oozing" " acid from your body, it has a long reach attack and vicious damage." msgstr "这个法术会从你的身体中伸出一个由锋利的骨头和渗出酸液组成的长而凶猛的鞭状触须,它有很长的攻击距离和很高的伤害。" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Grotesque Enhancement" msgstr "奇異強化" #. ~ Description for {'str': 'Grotesque Enhancement'} #. ~ Description for {'str': 'Scroll of Grotesque Enhancement', 'str_pl': #. 'Scrolls of Grotesque Enhancement'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A spell that warps your body in alien ways to increase your physical " "abilities and strength." msgstr "这个法术能以怪异的方式将你的躯体完全扭曲,并增强你的力量及感知。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Acidic Spray" msgstr "酸性噴霧" #. ~ Description for {'str': 'Acidic Spray'} #. ~ Description for {'str': 'Scroll of Acidic Spray', 'str_pl': 'Scrolls of #. Acidic Spray'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "When cast, the mage opens his mouth and sprays acid in a wide cone to " "dissolve his foes into goo. Just imagine what he'll do with the goo." msgstr "当施法时,法师张开他的嘴,向前方扇形范围内的敌人喷射腐蚀性酸液,将它们溶解成粘液。想象一下他该怎么处理这些粘糊糊的玩意。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Flesh Pouch" msgstr "血肉大袋" #. ~ Description for {'str': 'Flesh Pouch'} #. ~ Description for {'str': 'Scroll of Flesh Pouch', 'str_pl': 'Scrolls of #. Flesh Pouch'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell grows a large pouch out of your skin on your back, allowing you " "to store your gear in it." msgstr "这个法术会在你的背部皮肤长出一个大袋子,可以让你存储物品。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Conjure Bonespear" msgstr "白骨之矛" #. ~ Description for {'str': 'Conjure Bonespear'} #. ~ Description for {'str': 'Scroll of Conjure Bonespear', 'str_pl': 'Scrolls #. of Conjure Bonespear'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a long shaft of bone with a wicked point and blades along" " its length." msgstr "这个法术可以召唤出一只邪恶的骨矛,拥有长长的手柄及尖锐的刀刃。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Biomancer Rune" msgstr "生機術士符文" #. ~ Description for {'str': 'Biomancer Rune'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "" "This ritual creates a small pebble attuned to Biomancers. You can use the " "rune as a catalyst for recipes." msgstr "這個儀式創造了一個與生機術士契合的小石子。你能將此符文用於製作時的催化劑。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic Dart" msgstr "麻痹毒刺" #. ~ Description for {'str': 'Paralytic Dart'} #. ~ Description for {'str': 'Scroll of Paralytic Dart', 'str_pl': 'Scrolls of #. Paralytic Dart'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Spits a warped needle of sinew and bone, carrying with it a sting that slows" " your victim." msgstr "喷射出一根由筋腱与骨头纠缠而成的扭曲细针,它造成的螫刺会迟缓受害者。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Projection" msgstr "脏腑四射" #. ~ Description for {'str': 'Visceral Projection'} #. ~ Description for {'str': 'Scroll of Visceral Projection', 'str_pl': #. 'Scrolls of Visceral Projection'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Projects a spray of acrid blood and gore all around you, growing to ensnare " "your prey in in a field of twitching poisonous tendrils." msgstr "在你四周喷射出辛辣刺鼻的血肉,不断生长并将你的猎物捕获进一片有毒的卷须之中。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Paralysis" msgstr "脏腑麻痹" #. ~ Description for {'str': 'Visceral Paralysis'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Paralytic side effect of Projection." msgstr "由于脏腑四射导致的麻痹副作用。" -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Visceral Backlash" msgstr "脏腑反噬" #. ~ Description for {'str': 'Visceral Backlash'} -#: data/mods/Magiclysm/Spells/biomancer.json +#: data/mods/Magical_Nights/Spells/biomancer.json msgid "Hits the user with side effects too." msgstr "施法者也同时收到副作用影响。" -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Coagulant Weave" msgstr "凝结组织" #. ~ Description for {'str': 'Coagulant Weave'} #. ~ Description for {'str': 'Scroll of Coagulant Weave', 'str_pl': 'Scrolls #. of Coagulant Weave'} -#: data/mods/Magiclysm/Spells/biomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/biomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Turns your biological mastery inwards, medically enhancing your flesh. " "Rather than strength of healing, it staves off blood loss and purges wounds " "before they can turn septic, at the cost of increased hunger and thirst." msgstr "将你对生化魔法的掌握转化至体内,增强你的肉体。与医疗能量不同,它通过防止失血,在伤口化脓之前消除伤口,代价是加速新陈代谢,容易饥饿及口渴。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Create Hydrochloric Acid" +msgstr "制造盐酸" + +#. ~ Description for {'str': 'Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Produces usable hydrochloric acid (aka muriatc acid) using magic." +msgstr "通过魔法制造出可用的盐酸(又名氢氯酸)。" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bolt" +msgstr "酸液箭" + +#. ~ Description for {'str': 'Acid Bolt'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bolt that only damages your foes." +msgstr "发射一支仅伤害敌人的酸液箭。" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Bomb" +msgstr "酸液弹" + +#. ~ Description for {'str': 'Acid Bomb'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "An acid bomb that spreads caustic acid pools around its blast radius." +msgstr "投掷一个酸液弹,在爆炸范围内散布腐蚀性的酸池。" + +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Acid Storm" +msgstr "酸液风暴" + +#. ~ Description for {'str': 'Acid Storm'} +#: data/mods/Magical_Nights/Spells/biomancer.json +msgid "Several acid spheres fire from your finger tips to strike the target." +msgstr "几道酸液球从你的指尖飞出,击中目标。" + +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "Crystallize Mana" msgstr "魔力结晶" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Crystallizes mana into solid form" msgstr "将魔力凝聚成固体结晶型态。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Mana Fatigue" msgstr "魔力疲乏" #. ~ Description for {'str': 'Mana Fatigue'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Secondary effect of Crystallize Mana" msgstr "魔力结晶法术的副作用。" -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Dark Sight" msgstr "黑暗視覺" #. ~ Description for {'str': 'Dark Sight'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Gives you the power to see in the dark" msgstr "賦予你在黑暗中視物的能力。" #. ~ Message for SPELL '{'str': 'Dark Sight'}' -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "你的眼睛發出綠光。現在你可以看透黑暗陰影。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Megablast" msgstr "超級爆裂" #. ~ Description for {'str': 'Megablast'} #. ~ Description for {'str': 'Scroll of Megablast', 'str_pl': 'Scrolls of #. Megablast'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You always wanted to fire energy beams like in the animes you watched as a " "kid. Now you can!" msgstr "你经常想发射光波,就像小时候看过的动画片里那样,现在你可以了!" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Magical Light" msgstr "魔法之光" #. ~ Description for {'str': 'Magical Light'} #. ~ Description for {'str': 'Scroll of Magical Light', 'str_pl': 'Scrolls of #. Magical Light'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical light." msgstr "產生一個魔法光源。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Blinding Flash" msgstr "致盲閃光" #. ~ Description for {'str': 'Blinding Flash'} #. ~ Description for {'str': 'Scroll of Blinding Flash', 'str_pl': 'Scrolls of #. Blinding Flash'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Blind enemies for a short time with a sudden, dazzling light. Higher levels" " deal slightly higher damage." msgstr "爆发耀眼的光芒以致盲敌人,等级越高伤害越高。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Ethereal Grasp" msgstr "空靈抓握" #. ~ Description for {'str': 'Ethereal Grasp'} #. ~ Description for {'str': 'Scroll of Ethereal Grasp', 'str_pl': 'Scrolls of #. Ethereal Grasp'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A mass of spectral hands emerge from the ground, slowing everything in " "range. Higher levels allow a bigger AoE, and longer effect." msgstr "許多鬼手從地板升出來,減慢在該範圍內的所有東西。越高等級的範圍越大,持續時間也越久。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Obfuscated Body" msgstr "朦胧术" #. ~ Description for {'str': 'Obfuscated Body'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "一个魔法光环扭曲了你身体周围的光线,增加了你在一个回合中所能闪避攻击的次数。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Aura of Protection" msgstr "防護靈氣" #. ~ Description for {'str': 'Aura of Protection'} #. ~ Description for {'str': 'Scroll of Aura of Protection', 'str_pl': #. 'Scrolls of Aura of Protection'} -#: data/mods/Magiclysm/Spells/classless.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/classless.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your whole body in a magical aura that protects you from the " "environment." msgstr "將你整個身體包覆在魔法靈氣中,保護你免受環境影響。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocate Self" msgstr "轉移自我" #. ~ Description for {'str': 'Translocate Self'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Translocates the user to an attuned gate." msgstr "將施法者移轉到預調的傳送門。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Acid Resistance" msgstr "防酸术" #. ~ Description for {'str': 'Acid Resistance'} #. ~ Description for {'str': 'Greater Acid Resistance'} -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Protects the user from acid." msgstr "让施法者不受酸液侵蚀。" -#: data/mods/Magiclysm/Spells/classless.json +#: data/mods/Magical_Nights/Spells/classless.json msgid "Greater Acid Resistance" msgstr "高等防酸术" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/classless.json +msgid "Summon… Lemon?" +msgstr "召唤……柠檬?" + +#. ~ Description for {'str': 'Summon… Lemon?'} +#: data/mods/Magical_Nights/Spells/classless.json +msgid "" +"While at first this spell may appear to be \"Summon Demon\", in reality it " +"appears to be a spell to summon a lemon. Cursive truly is the bane of your " +"existence." +msgstr "尽管一开始这法术看起来像是\"召唤恶魔(Demon)\",但实际上它似乎只是召唤一颗柠檬(Lemon)。草书文字果然是你最大的敌人。" + +#: data/mods/Magical_Nights/Spells/debug.json msgid "Template Spell" msgstr "模板法術" #. ~ Description for Template Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "This is a template to show off all the available values" msgstr "這是一個顯示所有可用值的模板" #. ~ Message for SPELL 'Template Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "As you cast %s, your ears pops!" msgstr "當你施展 %s,你的耳朵錚錚作響。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Spawn Debug Monsters" msgstr "產生除錯怪物" #. ~ Description for Spawn Debug Monsters -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Set level to number of monsters spawned." msgstr "調整怪物生成數量等級" @@ -201820,245 +201577,218 @@ msgstr "調整怪物生成數量等級" #. ~ Message for SPELL 'Test Area Pull' #. ~ Message for SPELL 'Test Area Pull (Field)' #. ~ Message for SPELL 'Test Area Push' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell %s cast." msgstr "除錯施展%s" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Stamina Spell" msgstr "除錯耐力法術" #. ~ Description for Debug Stamina Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little stamina" msgstr "使用一點耐力" #. ~ Message for SPELL 'Debug Stamina Spell' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json #, c-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "除錯施展 [%s] 沒有效果。預期顯示除錯警告。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Fatigue Spell" msgstr "调试用疲劳法术。" #. ~ Description for Debug Fatigue Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little fatigue" msgstr "使用一点疲劳。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug HP Spell" msgstr "调试用生命法术" #. ~ Description for Debug HP Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little HP" msgstr "使用一点生命值。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Bionic Spell" msgstr "调试用生化插件法术" #. ~ Description for Debug Bionic Spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Uses a little Bionic Power" msgstr "使用一点生化能量。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug effect spell" msgstr "调试用效果法术" #. ~ Description for Debug effect spell -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Adds an effect to the target" msgstr "为目标增加一个效果。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull" msgstr "测试区域吸引" #. ~ Description for Test Area Pull -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls all objects inside." msgstr "吸引所有物体。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Pull (Field)" msgstr "测试区域吸引(环境效果)" #. ~ Description for Test Area Pull (Field) -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pulls field contents tiles inside." msgstr "吸引环境效果区块。" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Test Area Push" msgstr "测试区域排斥" #. ~ Description for Test Area Push -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Pushes all objects outside." msgstr "排斥所有物体。" -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Full Protection" msgstr "除錯完全防護" #. ~ Description for Debug Full Protection #. ~ Description of effect 'Debug Full Protection'. -#: data/mods/Magiclysm/Spells/debug.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/debug.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can not be harmed by anything." msgstr "你不會受到任何傷害。" #. ~ Message for SPELL 'Debug Full Protection' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are invulnerable, nothing can harm you!" msgstr "你是無敵的,沒有什麼可以傷害你!" -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "Debug Feather Falling" msgstr "除錯羽落術" #. ~ Description for Debug Feather Falling -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You are light as a feather and fall like." msgstr "你像羽毛一樣輕盈飄落。" #. ~ Message for SPELL 'Debug Feather Falling' -#: data/mods/Magiclysm/Spells/debug.json +#: data/mods/Magical_Nights/Spells/debug.json msgid "You eat a feather!" msgstr "你吃一根羽毛!" -#: data/mods/Magiclysm/Spells/debug.json -msgid "Debug Dash" -msgstr "调试用冲刺" - -#. ~ Description for Debug Dash -#: data/mods/Magiclysm/Spells/debug.json -msgid "You can teleport instantaneously forward." -msgstr "你可以瞬间向前传送。" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push no aoe" -msgstr "调试推力无范围效果" - -#. ~ Description for debug push no aoe -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 0" -msgstr "推动所有类型的物体,范围效果为0。" - -#: data/mods/Magiclysm/Spells/debug.json -msgid "debug push blast" -msgstr "调试推力爆破" - -#. ~ Description for debug push blast -#: data/mods/Magiclysm/Spells/debug.json -msgid "pushes all types of objects with an aoe of 3 in a blast pattern" -msgstr "推动所有类型的物体,范围效果为3,呈爆破模式。" - -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Black Dragons' Breath" msgstr "黑龍吐息" #. ~ Description for {'str': "Black Dragons' Breath"} -#: data/mods/Magiclysm/Spells/dragonbreath.json +#: data/mods/Magical_Nights/Spells/dragonbreath.json msgid "Spews a line of acid from your mouth." msgstr "從你嘴裡吐出一道酸線。" -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Vegetative Grasp" msgstr "植物抓握" #. ~ Description for {'str': 'Vegetative Grasp'} #. ~ Description for {'str': 'Scroll of Vegetative Grasp', 'str_pl': 'Scrolls #. of Vegetative Grasp'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots and vines to burst forth from the ground and grab " "your foes, slowing them and doing a small amount of damage as they dig in." msgstr "这个法术会从地下长出藤蔓及树根,紧紧的抓住你的敌人,减慢他们的速度,并对他们造成少量的伤害。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Root Strike" msgstr "樹根打擊" #. ~ Description for {'str': 'Root Strike'} #. ~ Description for {'str': 'Scroll of Root Strike', 'str_pl': 'Scrolls of #. Root Strike'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell causes roots to spear out the ground and stab into your foes in " "an arc, impaling them." msgstr "这个法术使树根刺穿地面,以弧形刺入你的敌人,刺穿他们。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Wooden Shaft" msgstr "木矛術" #. ~ Description for {'str': 'Wooden Shaft'} #. ~ Description for {'str': 'Scroll of Wooden Shaft', 'str_pl': 'Scrolls of #. Wooden Shaft'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a projectile of hardwood that shoots forth from the " "caster's hand at high speed to stab into an enemy." msgstr "此法術會生成一枚硬木拋射物,從施法者的手上高速射出,刺入敵人。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Bow" msgstr "自然之弓" #. ~ Description for {'str': "Nature's Bow"} #. ~ Description for {'str': "Scroll of Nature's Bow", 'str_pl': "Scrolls of #. Nature's Bow"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures a magical wooden recurve bow that fires endless arrows " "for as long as it lasts." msgstr "這個法術會召喚一把魔法木製反曲弓,能在持續時間中發射無限量的箭。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Nature's Trance" msgstr "自然恍惚" #. ~ Description for {'str': "Nature's Trance"} #. ~ Description for {'str': "Scroll of Nature's Trance", 'str_pl': "Scrolls #. of Nature's Trance"} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Your connection to living things allows you to go into a magical trance. " "This allows you to recover fatige quickly in exchange for mana." msgstr "你与其它生命的连接允许你进入一种魔法冥想状态。在这种状态下你会消耗魔法,加速疲劳恢复。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Bag of Cats" msgstr "袋装猫咪" #. ~ Description for {'str': 'Bag of Cats'} #. ~ Description for {'str': 'Scroll of Bag of Cats', 'str_pl': 'Scrolls of #. Bag of Cats'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Are you the crazy cat lady?" msgstr "你就是那个和猫讲话的怪婆婆吗?" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Cause Bear" msgstr "產生恐龍" #. ~ Description for {'str': 'Cause Bear'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This spell appears to be very smudged. You're fairly sure the name should " "be Cause Fear, but you're also fairly sure it won't have the desired effect " @@ -202068,208 +201798,208 @@ msgstr "" "這個法術似乎非常之模糊。你堅信這個法術應該是叫「產生恐懼 (Fear) " "」,但你同時也堅信它不會有預期的效果,因為使用說明實在很難看清楚。就跟大災變一樣,根本沒有時間去尋求真相。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kill Fungus" msgstr "滅殺真菌" #. ~ Description for {'str': 'Kill Fungus'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Kills fungus affected areas" msgstr "滅殺真菌傳播地區" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Druid Rune" msgstr "德魯伊符文" #. ~ Description for {'str': 'Druid Rune'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "這個儀式創造了一個與德魯伊契合的小石子。你能將此符文用於製作時的催化劑。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Purification Seed" msgstr "淨化種子" #. ~ Description for {'str': 'Purification Seed'} -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "你召喚大地的贈禮,能夠淨化水質的種子。如果不使用的話會快速變質。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Regrowth" msgstr "沃血重萌" #. ~ Description for {'str': 'Sacrificial Regrowth'} #. ~ Description for {'str': 'Scroll of Sacrificial Regrowth', 'str_pl': #. 'Scrolls of Sacrificial Regrowth'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Through giving of one's own life force, you restore withered and barren " "plant life nearby. What remains will need time to regrow its full strength." msgstr "通过献祭自身生命力,你可以让附近枯萎贫瘠的植被重获新生。剩下的就得靠时间来尽复生机了。" -#: data/mods/Magiclysm/Spells/druid.json +#: data/mods/Magical_Nights/Spells/druid.json msgid "Sacrificial Healing" msgstr "舍己济人" #. ~ Description for {'str': 'Sacrificial Healing'} #. ~ Description for {'str': 'Scroll of Sacrificial Healing', 'str_pl': #. 'Scrolls of Sacrificial Healing'} -#: data/mods/Magiclysm/Spells/druid.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/druid.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Channels some of the user's own life force into healing energy, for the sake" " of ones allies." msgstr "将使用者自身部分生命力转化为医疗能量,施加于同伴。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stonefist" msgstr "石拳術" #. ~ Description for {'str': 'Stonefist'} #. ~ Description for {'str': 'Scroll of Stonefist', 'str_pl': 'Scrolls of #. Stonefist'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your arms and hands in a sheath of magical stone, you can punch and " "defend yourself with it in melee combat." msgstr "召唤岩石包裹手臂和拳头,使你可以在近战战斗中用它来击打敌人和保护自己。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Seismic Stomp" msgstr "地震踐踏" #. ~ Description for {'str': 'Seismic Stomp'} #. ~ Description for {'str': 'Scroll of Seismic Stomp', 'str_pl': 'Scrolls of #. Seismic Stomp'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Focusing mana into your leg, you stomp your foot and send out a shockwave, " "knocking enemies around you onto the ground." msgstr "聚集魔力进入你的腿,重重跺脚,发出冲击波,把周围的敌人击倒在地。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stone's Endurance" msgstr "巖石耐力" #. ~ Description for {'str': "Stone's Endurance"} #. ~ Description for {'str': "Scroll of Stone's Endurance", 'str_pl': "Scrolls #. of Stone's Endurance"} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You focus on the stones beneath you and draw from their agelessness. Your " "mana is converted to stamina." msgstr "你专注于你下方的坚岩,从它们的经受时间考验的坚韧中获取力量。你将魔力转换成耐力。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardspray" msgstr "碎片噴霧" #. ~ Description for {'str': 'Shardspray'} #. ~ Description for {'str': 'Scroll of Shardspray', 'str_pl': 'Scrolls of #. Shardspray'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a wide spray of sharp metal shards, cutting into your " "foes and friends alike." msgstr "这法术扇形喷射出大量锋利的金属碎片,敌友不分的切碎它们路上的所有目标。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Piercing Bolt" msgstr "穿刺之箭" #. ~ Description for {'str': 'Piercing Bolt'} #. ~ Description for {'str': 'Scroll of Piercing Bolt', 'str_pl': 'Scrolls of #. Piercing Bolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell projects a piercing rod of conjured iron at those that dare " "oppose you." msgstr "这法术召唤并发射出一根能穿透敌人的铁条,射穿那些胆敢阻挡你的蠢货。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Shardstorm" msgstr "碎片風暴" #. ~ Description for {'str': 'Shardstorm'} #. ~ Description for {'str': 'Scroll of Shardstorm', 'str_pl': 'Scrolls of #. Shardstorm'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "向你四周的所有方向喷射剃刀般锋利的金属碎片。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Rockbolt" msgstr "岩石之箭" #. ~ Description for {'str': 'Rockbolt'} #. ~ Description for {'str': 'Scroll of Rockbolt', 'str_pl': 'Scrolls of #. Rockbolt'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Fires a conjured stone projectile at high velocity." msgstr "你召唤并发射出一个高速飞行的石弹。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Move Earth" msgstr "移動大地" #. ~ Description for {'str': 'Move Earth'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Your essense flows around you, and the earth follows." msgstr "魔法精華在你周圍流動,而大地隨之。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Earthshaper Rune" msgstr "塑地者符文" #. ~ Description for {'str': 'Earthshaper Rune'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "這個儀式創造了一個與大地塑形者契合的小石子。你能將此符文用於製作時的催化劑。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Shrapnel" msgstr "熔岩炸彈彈片" #. ~ Description for {'str': 'Lava Bomb Shrapnel'} #. ~ Description for {'str': 'Lava Bomb Heat'} #. ~ Description for {'str': 'Lava Bomb Terrain'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "This is a sub spell for the Lava Bomb spell." msgstr "這是熔岩炸彈法術的子法術。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Heat" msgstr "熔岩炸彈熱氣" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb Terrain" msgstr "熔岩炸彈地形" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Lava Bomb" msgstr "熔岩炸彈" #. ~ Description for {'str': 'Lava Bomb'} #. ~ Description for {'str': 'Scroll of Lava Bomb', 'str_pl': 'Scrolls of Lava #. Bomb'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You tear up the ground beneath you to fire a lava bomb: a globe of lava " "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " @@ -202278,99 +202008,119 @@ msgstr "" "你撕裂脚下的地面,发射出一个熔岩炸弹:一个被炽热的固体岩石包围的熔岩球。它撞击物体时会粉碎,朝四周射出大量碎岩石和熔岩。\n" " " -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Stoneskin" msgstr "石肤术" #. ~ Description for {'str': 'Stoneskin'} #. ~ Description for {'str': 'Scroll of Stoneskin', 'str_pl': 'Scrolls of #. Stoneskin'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "将你全身包覆在活化岩石构成的装甲中,累赘但防护森严。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar of Stone" msgstr "石柱术" #. ~ Description for {'str': 'Pillar of Stone'} #. ~ Description for {'str': 'Scroll of Pillar of Stone', 'str_pl': 'Scrolls #. of Pillar of Stone'} -#: data/mods/Magiclysm/Spells/earthshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Drawing upon the surrounding earth, you form a pillar of solid rock. " "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "你用魔法将四周的泥土堆起,形成一根硬石柱。经验的累积将使施法更容易,并减少对周围区域的破坏。" -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Pillar Side Effect" msgstr "石柱冲击" #. ~ Description for {'str': 'Pillar Side Effect'} -#: data/mods/Magiclysm/Spells/earthshaper.json +#: data/mods/Magical_Nights/Spells/earthshaper.json msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "带来的钝击效果,等级降低伤害和AOE范围。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Rock Tomb" +msgstr "岩石封锁" + +#. ~ Description for {'str': 'Rock Tomb'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "" +"You tear up the ground beneath you to throw a medium boulder. It shatters " +"upon impact, scattering rocks and debris everywhere." +msgstr "你撕裂脚下的大地掀起一块中型巨石,投掷出去。巨石撞击时粉碎,四散飞溅岩石和碎片。" + +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "Meteor" +msgstr "陨石术" + +#. ~ Description for {'str': 'Meteor'} +#: data/mods/Magical_Nights/Spells/earthshaper.json +msgid "You summon a small meteorite to fall down on your foes." +msgstr "你召唤一颗小型陨石从天而降,砸向敌人。" + +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Twisted Restoration" msgstr "扭曲恢復" #. ~ Description for {'str': 'Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "這個法術讓你的心臟超頻,以產生新的肉體與肌肉。在危險情況下使用它是不明智的,如果在危急情況下施展可能會致命。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Improved Twisted Restoration" msgstr "改良扭曲恢復" #. ~ Description for {'str': 'Improved Twisted Restoration'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "This spell overclocks your heart, generating new flesh and muscle. It is " "unwise to use this in immediate danger, and may be fatal if done in critical" " condition. Improved brewing mitigates the strain of the spell." msgstr "這個法術讓你的心臟超頻,以產生新的肉體與肌肉。在危險情況下使用它是不明智的,如果在危急情況下施展可能會致命。經過改良,降低了該法術的壓力。" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Conjure Throwing Blade I" msgstr "召喚投擲之刃 I" #. ~ Description for {'str': 'Conjure Throwing Blade I'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "conjures 3 throwing knives" msgstr "召喚 3 把飛刀" #. ~ Message for SPELL '{'str': 'Conjure Throwing Blade I'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "你使用了戒指,出現三把飛刀,準備投擲!" -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "Recover Mana" msgstr "魔力恢复" #. ~ Description for {'str': 'Recover Mana'} -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You regain mana." msgstr "你正恢复魔力。" #. ~ Message for SPELL '{'str': 'Recover Mana'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "You start regenerating mana!" msgstr "你开始恢复魔力!" #. ~ Message for SPELL '{'str': 'Pain'}' -#: data/mods/Magiclysm/Spells/item_only.json +#: data/mods/Magical_Nights/Spells/item_only.json msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" @@ -202378,503 +202128,547 @@ msgstr "" "你的血管感觉像是着火了!\n" "你开始恢复魔力!" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Point Flare" msgstr "定點驟燃" #. ~ Description for {'str': 'Point Flare'} #. ~ Description for {'str': 'Scroll of Point Flare', 'str_pl': 'Scrolls of #. Point Flare'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Causes an intense heat at the location, damaging the target." msgstr "在該位置產生強烈的熱量,並傷害目標。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Finger Firelighter" msgstr "指尖引火" #. ~ Description for {'str': 'Finger Firelighter'} #. ~ Description for {'str': 'Scroll of Finger Firelighter', 'str_pl': #. 'Scrolls of Finger Firelighter'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a small flame that does not burn you, but you can use it to light " "things on fire. It seems to need you to have some intent to light things on" " fire, because you are able to put it in your pocket with no issue." msgstr "召唤出一朵不会烧到你的小火苗,可以用来点燃其它物品。看起来你需要有点燃东西的想法它才会点火,因为你可以把它安全的存放在你的口袋里。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Spike" msgstr "冰刺術" #. ~ Description for {'str': 'Ice Spike'} #. ~ Description for {'str': 'Scroll of Ice Spike', 'str_pl': 'Scrolls of Ice #. Spike'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Causes jagged icicles to form in the air above the target, falling and " "damaging it." msgstr "在目标上方制造冰刺,坠落造成伤害。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Fireball" msgstr "火球術" #. ~ Description for {'str': 'Fireball'} #. ~ Description for {'str': 'Scroll of Fireball', 'str_pl': 'Scrolls of #. Fireball'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You hurl a pea-sized glowing orb that when reaches its target or an obstacle" " produces a pressure-less blast of searing heat." msgstr "投掷一颗豌豆大小的炽热球体,到达目标或遇到障碍物时发生剧烈烧灼。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Cone of Cold" msgstr "冷錐術" #. ~ Description for {'str': 'Cone of Cold'} #. ~ Description for {'str': 'Scroll of Cone of Cold', 'str_pl': 'Scrolls of #. Cone of Cold'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You blast a cone of frigid air toward the target." msgstr "向目标发射一股锥形的极寒空气。" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Burning Hands" msgstr "燃燒之手" #. ~ Description for {'str': 'Burning Hands'} #. ~ Description for {'str': 'Scroll of Burning Hands', 'str_pl': 'Scrolls of #. Burning Hands'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of fire." msgstr "向一片较小的锥形区域喷射火焰。\"你肯定在其他游戏中见过这个。\"" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Spray" msgstr "寒霜噴霧" #. ~ Description for {'str': 'Frost Spray'} #. ~ Description for {'str': 'Scroll of Frost Spray', 'str_pl': 'Scrolls of #. Frost Spray'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You're pretty sure you saw this in a game somewhere. You fire a short-range" " cone of ice and cold." msgstr "你很確定在某個遊戲裡面看過它。你發射短距離的寒冰錐體。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Chilling Touch" msgstr "冰冷之觸" #. ~ Description for {'str': 'Chilling Touch'} #. ~ Description for {'str': 'Scroll of Chilling Touch', 'str_pl': 'Scrolls of #. Chilling Touch'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Freezes the touched target with intense cold." msgstr "以強烈的冰冷冷凍接觸到的目標。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Glide on Ice" msgstr "冰面滑行" #. ~ Description for {'str': 'Glide on Ice'} #. ~ Description for {'str': 'Scroll of Glide on Ice', 'str_pl': 'Scrolls of #. Glide on Ice'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Encases your feet in a magical coating of ice, allowing you to glide along " "smooth surfaces faster." msgstr "将你的脚包裹在一层神奇的冰层中,让你更快地沿着光滑的表面滑行。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Hoary Blast" msgstr "蒼白爆破" #. ~ Description for {'str': 'Hoary Blast'} #. ~ Description for {'str': 'Scroll of Hoary Blast', 'str_pl': 'Scrolls of #. Hoary Blast'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You project a glowing white crystal of ice and it explodes on impact into a " "blossom of shattering cold." msgstr "你发射出一颗发光的白色冰晶,在撞击之处绽放酷寒。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Ice Shield" msgstr "冰盾術" #. ~ Description for {'str': 'Ice Shield'} #. ~ Description for {'str': 'Scroll of Ice Shield', 'str_pl': 'Scrolls of Ice #. Shield'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a magical shield of ice on your arm, you can defend yourself with it" " in melee combat and use it to bash." msgstr "在你的手臂上制造一个魔法冰盾,你可以用它在近战中保护自己,并使用它来攻击。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Frost Armor" msgstr "寒霜護甲" #. ~ Description for {'str': 'Frost Armor'} #. ~ Description for {'str': 'Scroll of Frost Armor', 'str_pl': 'Scrolls of #. Frost Armor'} -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "用一层薄薄的魔法冰来保护你不受伤害。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Kelvinist Rune" msgstr "熱力學者符文" #. ~ Description for {'str': 'Kelvinist Rune'} -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "這個儀式創造了一個與熱力學者契合的小石子。你能將此符文用於製作時的催化劑。" -#: data/mods/Magiclysm/Spells/kelvinist.json -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/Spells/kelvinist.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "Flamesword" msgid_plural "Flameswords" msgstr[0] "火焰剑" #. ~ Description for Flamesword -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "这个咒语会点燃一把木剑,形成一把燃烧的剑刃,可以灼烧、挫伤和劈砍。" -#: data/mods/Magiclysm/Spells/kelvinist.json +#: data/mods/Magical_Nights/Spells/kelvinist.json msgid "Flamebreath" msgstr "火焰吐息" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#. ~ Description for {'str': 'Flamebreath'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"This spell ignites dust scattered in the air, creating a cone of flame. The" +" hot ashes can cling to targets, causing additional burns over time." +msgstr "该法术会点燃散落在空气中的灰尘,形成锥形火焰。 灼热的灰烬会附着在目标身上,随着时间的推移会造成额外的灼伤。" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Fire Storm" +msgstr "火焰风暴" + +#. ~ Description for {'str': 'Fire Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the scorching summer to roast the earth. Several " +"fireballs fly from your finger tips to strike the target." +msgstr "你召唤炙热之夏的力量来焚烧大地。 几道火球从你的指尖射出,击中目标。" + +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "Ice Storm" +msgstr "寒冰风暴" + +#. ~ Description for {'str': 'Ice Storm'} +#: data/mods/Magical_Nights/Spells/kelvinist.json +msgid "" +"You call the power of the frigid winter to freeze the earth. Several ice " +"crystals fly from your finger tips to strike the target." +msgstr "你召唤寒冬的力量来冻结大地。几颗冰晶从你的指尖飞出,击中目标。" + +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summon Crocodile" msgstr "召唤鳄鱼" #. ~ Description for Summon Crocodile -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Summons a permanent crocodile." msgstr "召唤1只永久的鳄鱼。" #. ~ Message for SPELL 'Summon Crocodile' -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "The shaman summons a crocodile!" msgstr "蜥蜴人萨满召唤出一只鳄鱼!" -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "an ancient reptilian spell" msgstr "古老的蜥蜴人法术" #. ~ Description for an ancient reptilian spell -#: data/mods/Magiclysm/Spells/lizardfolk_shaman.json +#: data/mods/Magical_Nights/Spells/lizardfolk_shaman.json msgid "Causes one of the shaman spells to be cast." msgstr "让一名蜥蜴人萨满施放法术。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Magic Missile" msgstr "魔法飛彈" #. ~ Description for {'str': 'Magic Missile'} #. ~ Description for {'str': 'Scroll of Magic Missile', 'str_pl': 'Scrolls of #. Magic Missile'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "I cast Magic Missile at the darkness!" msgstr "我能在黑暗中施放魔法飛彈!" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Phase Door" msgstr "相位之門" #. ~ Description for {'str': 'Phase Door'} #. ~ Description for {'str': 'Scroll of Phase Door', 'str_pl': 'Scrolls of #. Phase Door'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Teleports you in a random direction a short distance." msgstr "把你傳送到短距離內的隨機位置。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Gravity Well" msgstr "重力井" #. ~ Description for {'str': 'Gravity Well'} #. ~ Description for {'str': 'Scroll of Gravity Well', 'str_pl': 'Scrolls of #. Gravity Well'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Summons a well of gravity with the epicenter at the location. Deals bashing" " damage to all creatures in the affected area." msgstr "以該地點為震央召喚一口重力井。對受影響區域內的所有生物造成鈍擊傷害。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Blast" msgstr "魔力爆破" #. ~ Description for {'str': 'Mana Blast'} #. ~ Description for {'str': 'Scroll of Mana Blast', 'str_pl': 'Scrolls of #. Mana Blast'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" "聚焦过的魔法轰击,可以夷平一大片区域。\n" "“不需要魔法道具辅助聚焦”" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Bolt" msgstr "魔力之箭" #. ~ Description for {'str': 'Mana Bolt'} #. ~ Description for {'str': 'Scroll of Mana Bolt', 'str_pl': 'Scrolls of Mana #. Bolt'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A bolt of magical power that only damages your foes." msgstr "一束破坏性魔法闪电,只会伤害你的敌人。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Haste" msgstr "迅捷術" #. ~ Description for {'str': 'Haste'} #. ~ Description for {'str': 'Scroll of Haste', 'str_pl': 'Scrolls of Haste'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell gives you an enormous boost of speed lasting a short period of " "time." msgstr "此法術可以在短時間內極大地提高速度。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Mana Beam" msgstr "魔力射線" #. ~ Description for {'str': 'Mana Beam'} #. ~ Description for {'str': 'Scroll of Mana Beam', 'str_pl': 'Scrolls of Mana #. Beam'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A beam of focused magical power that damages any foes in its path." msgstr "一束聚焦过的破坏性魔法光束,会伤害到它路径上的所有敌人。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Escape" msgstr "逃脫術" #. ~ Description for {'str': 'Escape'} #. ~ Description for {'str': 'Scroll of Escape', 'str_pl': 'Scrolls of #. Escape'} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Teleports you in a random direction a medium distance, to help escape your " "foes in dangerous situations." msgstr "将你向随机方向传送一段中等的距离,可以在危险情况下帮你逃出敌人包围。" -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "Magus Rune" msgstr "祆教徒符文" #. ~ Description for {'str': 'Magus Rune'} -#: data/mods/Magiclysm/Spells/magus.json +#: data/mods/Magical_Nights/Spells/magus.json msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "這個儀式創造了一個與祆教徒契合的小石子。你能將此符文用於製作時的催化劑。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Cat's Grace" msgstr "貓之優雅" #. ~ Description for {'str': "Cat's Grace"} #. ~ Description for {'str': "Scroll of Cat's Grace", 'str_pl': "Scrolls of #. Cat's Grace"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become more graceful, agile, and coordinated." msgstr "你變得更優雅、敏捷與協調。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Eagle's Sight" msgstr "鷹之視野" #. ~ Description for {'str': "Eagle's Sight"} #. ~ Description for {'str': "Scroll of Eagle's Sight", 'str_pl': "Scrolls of #. Eagle's Sight"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the perception of an eagle." msgstr "你得到獵鷹般的感知力。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ogre's Strength" msgstr "食人魔之力" #. ~ Description for {'str': "Ogre's Strength"} #. ~ Description for {'str': "Scroll of Ogre's Strength", 'str_pl': "Scrolls #. of Ogre's Strength"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You gain the strength of an ogre." msgstr "你得到食人魔的力量。" -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Fox's Cunning" msgstr "狐之狡滑" #. ~ Description for {'str': "Fox's Cunning"} #. ~ Description for {'str': "Scroll of Fox's Cunning", 'str_pl': "Scrolls of #. Fox's Cunning"} -#: data/mods/Magiclysm/Spells/magus.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/magus.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "You become wily like a fox." msgstr "你變得像狐狸一樣狡滑。" #. ~ Description for {'str': 'Crystallize Mana'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "将魔力凝聚成固体结晶型态。你生理上的变化使这个法术效果更强大,且更容易施放。" -#: data/mods/Magiclysm/Spells/manatouched.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Seeker Bolts" msgstr "追踪箭" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "从你的指尖发射多只魔法火焰箭,随机命中在射程中的目标。" #. ~ Description for the sound of spell '{'str': 'Seeker Bolts'}' -#: data/mods/Magiclysm/Spells/manatouched.json +#: data/mods/Magical_Nights/Spells/manatouched.json msgid "a zing" msgstr "尖啸声" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Blood Suck" msgstr "吸血術" #. ~ Description for {'str': 'Blood Suck'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Sucks blood from one foe." msgstr "從一個敵人身上吸血。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Bear Trap" msgstr "唤熊陷阱" #. ~ Description for Bear Trap -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "一个能够召唤出熊的陷阱!没想到吧?" #. ~ Description for the sound of spell 'Bear Trap' -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "\"It's a trap!\"" msgstr "\"这是个陷阱!\"" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Rocket Punch" msgstr "火箭飞拳" #. ~ Description for Rocket Punch -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ejects giant fist from arm." msgstr "将拳头从手臂上发射出去。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Gas Attack" msgstr "毒气攻击" #. ~ Description for Gas Attack -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Spreads toxic gas around itself." msgstr "在自身四周散发出有毒气体。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Demon Fireball" msgstr "惡魔火球術" #. ~ Description for Demon Fireball -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "This is a monster only spell." msgstr "這是怪物專用的法術。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summon Demon Spiderlings" msgstr "召喚惡魔蜘蛛" #. ~ Description for Summon Demon Spiderlings -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Summons 4 permanent demon spiderlings." msgstr "召喚四隻永久性的惡魔蜘蛛。" #. ~ Description for {'str': 'Burning Hands'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Separated from the player burning hands, because I'm not trying to " "accidentally buff Demon Spiders again." -msgstr "" +msgstr "从玩家燃烧的双手中分离出来,因为我不想再意外地给恶魔蜘蛛加buff了。" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Krabgek Gaze" -msgstr "" +msgstr "魔眼怪凝视" #. ~ Description for {'str': 'Krabgek Gaze'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "" "Carcinization ray, go! (Krabgek version of Necrotic Gaze for balance " "purposes)" -msgstr "" +msgstr "蟹化射线,出击!(魔眼怪平衡版的“腐蚀凝视”)" -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Ooze Acidic Spray" -msgstr "" +msgstr "软泥酸性喷洒" #. ~ Description for {'str': 'Ooze Acidic Spray'} -#: data/mods/Magiclysm/Spells/monsterspells.json +#: data/mods/Magical_Nights/Spells/monsterspells.json msgid "Someone's pudding recipe has gone *very* awry… (Monster Spell)" -msgstr "" +msgstr "某人的布丁配方出了一点*大*问题……(怪物法术)" + +#. ~ Description for {'str': 'Magic Missile'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "They cast Magic Missile at your puny head! (Monster Spell)" +msgstr "它朝你的脆弱脑袋施放了魔法飞弹!(怪物法术)" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Monster Pain Split" +msgstr "怪物伤痛分流" + +#. ~ Description for {'str': 'Monster Pain Split'} +#: data/mods/Magical_Nights/Spells/monsterspells.json +msgid "Perfect for evening out damage on breath attacks" +msgstr "非常适合用来平摊吐息攻击的伤害。" + +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Jolt" msgstr "猛擊術" #. ~ Description for {'str': 'Jolt'} #. ~ Description for {'str': 'Scroll of Jolt', 'str_pl': 'Scrolls of Jolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "從你手指射出短距離的電擊波動。" @@ -202882,20 +202676,20 @@ msgstr "從你手指射出短距離的電擊波動。" #. ~ Description for the sound of spell '{'str': 'Lightning Bolt'}' #. ~ Description for the sound of spell '{'str': 'Lightning Blast'}' #. ~ Mutation class: Manatouched iv_sound_message -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "a crackle" msgstr "劈啪聲" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Bolt" msgstr "閃電之箭" #. ~ Description for {'str': 'Lightning Bolt'} #. ~ Description for {'str': 'Scroll of Lightning Bolt', 'str_pl': 'Scrolls of #. Lightning Bolt'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "The goto spell for many Stormshapers, this iconic spell does just what you " "expect: you shoot lightning from your fingertips. However, this lightning " @@ -202904,74 +202698,74 @@ msgid "" msgstr "" "許多塑風者常依賴的法術,這個標誌性的法術正如你所想的:你從指尖射出閃電。然而,這種閃電比一般閃電更有針對性,並且穿透沿線中大多數非固體的目標。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Windstrike" msgstr "風擊術" #. ~ Description for {'str': 'Windstrike'} #. ~ Description for {'str': 'Scroll of Windstrike', 'str_pl': 'Scrolls of #. Windstrike'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A powerful blast of wind slams into anything in front of your outstretched " "hand." msgstr "在你伸出的雙手前,一股勁風將猛擊所有東西。" #. ~ Description for the sound of spell '{'str': 'Windstrike'}' -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "a whoosh" msgstr "嗚咻聲" -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Windrunning" msgstr "迅捷之風" #. ~ Description for {'str': 'Windrunning'} #. ~ Description for {'str': 'Scroll of Windrunning', 'str_pl': 'Scrolls of #. Windrunning'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "A magical wind pushes you forward as you move, easing your movements and " "increasing speed." msgstr "當你移動時,一股魔法風將你推向前方,讓你行動更加容易並提高速度。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Call Stormhammer" msgstr "召喚暴風之錘" #. ~ Description for {'str': 'Call Stormhammer'} #. ~ Description for {'str': 'Scroll of Call Stormhammer', 'str_pl': 'Scrolls #. of Call Stormhammer'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "製造一把充滿閃電劈啪作響的魔法戰鎚,用來打擊你的敵人,當然也能砸碎東西!" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Stormshaper Rune" msgstr "塑風者符文" #. ~ Description for {'str': 'Stormshaper Rune'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "這個儀式創造了一個與風暴塑形者契合的小石子。你能將此符文用於製作時的催化劑。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Lightning Blast" msgstr "閃電爆破" #. ~ Description for {'str': 'Lightning Blast'} #. ~ Description for {'str': 'Scroll of Lightning Blast', 'str_pl': 'Scrolls #. of Lightning Blast'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You fire a small concentrated ball of lightning at the target. The " "electricity diffuses quickly, so it doesn't do much damage, but you're able " @@ -202979,21 +202773,21 @@ msgid "" msgstr "你向目標發射一個小的閃電球。電流擴散很快,所以它不會造成太大的傷害,但你可以快速地連續發射好幾個。" #. ~ Description for {'str': 'Lightning Storm'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "" "You call the power of the sky to strike the earth. Several lightning blasts" " fire from your finger tips to strike the target." msgstr "你召唤天空的力量来打击大地。几道闪电从你的指尖射出,击中目标。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization" msgstr "电离术" #. ~ Description for {'str': 'Ionization'} #. ~ Description for {'str': 'Scroll of Ionization', 'str_pl': 'Scrolls of #. Ionization'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "By manipulating the charge in the air, you can conjure a sharp snap of " "lightning over a wide area. While its destructive potential is a far cry " @@ -203002,105 +202796,129 @@ msgid "" msgstr "" "通过操控空气中的电荷,你可以在大片区域内召唤出一道闪电。虽然它的破坏力与自然产生的闪电相去甚远,但它所产生的强光和雷击会让你的敌人战战兢兢。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Ionization Thunderclap" msgstr "电离术闪光" #. ~ Description for {'str': 'Ionization Thunderclap'} -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Adds the actual flashbang effect." msgstr "为电离术添加闪光弹效果。" -#: data/mods/Magiclysm/Spells/stormshaper.json +#: data/mods/Magical_Nights/Spells/stormshaper.json msgid "Wall of Fog" msgstr "雾墙术" #. ~ Description for {'str': 'Wall of Fog'} #. ~ Description for {'str': 'Scroll of Wall of Fog', 'str_pl': 'Scrolls of #. Wall of Fog'} -#: data/mods/Magiclysm/Spells/stormshaper.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "Draws forth a broad wall of thick fog. While the sudden force of air " "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "召唤出一堵厚厚的雾墙。虽然突然出现的气压会击倒任何被困在里面的敌人,但这个魔法无法造成其它伤害。" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Water" +msgstr "水凝聚" + +#. ~ Description for {'str': 'Condense Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it down into usable water. " +"Handy in situations where you just don't have reliable access to water, but " +"have access to a method of cleaning it." +msgstr "从空气中提取水分并将其凝聚成可用的水源。适用于缺乏可靠水源,但拥有净水方法的情况下。" + +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "Condense Clean Water" +msgstr "净水凝聚" + +#. ~ Description for {'str': 'Condense Clean Water'} +#: data/mods/Magical_Nights/Spells/stormshaper.json +msgid "" +"Draws water forth from the air then condenses it into fully cleaned water. " +"Takes more finesse than simply condensing normal water, but that's to be " +"expected." +msgstr "从空气中提取水分并凝聚成完全净化的水。比单纯凝聚普通水需要更多的技巧,但这是意料之中的事情。" + +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Invisibility" msgstr "隱身術" #. ~ Description for {'str': 'Invisibility'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "創造一個魔法力場,對其他人隱藏住你的視覺存在。俗稱“隱形”,但沒有任何科學晦澀難懂的知識。" #. ~ Message for SPELL '{'str': 'Invisibility'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "To the outside world, your body fades away and you cease to exist!" msgstr "對外部世界來說,你的身體逐漸消失,你不復存在!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lamp" msgstr "魔法灯" #. ~ Description for {'str': 'Lamp'} #. ~ Description for {'str': 'Scroll of Lamp', 'str_pl': 'Scrolls of Lamp'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Creates a magical lamp." msgstr "创造一盏神奇的魔法灯。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Manatricity" msgstr "法力轉化" #. ~ Description for {'str': 'Manatricity'} #. ~ Description for {'str': 'Scroll of Manatricity', 'str_pl': 'Scrolls of #. Manatricity'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You have found a way to convert your spiritual energy into power you can use" " for your bionics." msgstr "你已經找到了一種方法,可以將你的精神能量轉化成你的生化能量。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Technomancer Rune" msgstr "科技巫師符文" #. ~ Description for {'str': 'Technomancer Rune'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "這個儀式創造了一個與科技巫師契合的小石子。你能將此符文用於製作時的催化劑。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Taze" msgstr "電擊術" #. ~ Description for {'str': 'Taze'} #. ~ Description for {'str': 'Scroll of Taze', 'str_pl': 'Scrolls of Taze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "該卷軸能從你手指射出極短距離的閃電箭來電擊你的敵人。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Lesser Quantum Tunnel" msgstr "次級量子隧道" #. ~ Description for {'str': 'Lesser Quantum Tunnel'} #. ~ Description for {'str': 'Scroll of Lesser Quantum Tunnel', 'str_pl': #. 'Scrolls of Lesser Quantum Tunnel'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates some quantum something or other to tunnel you through" " a short distance of space, and even matter, unfortunately there's that " @@ -203109,16 +202927,16 @@ msgid "" msgstr "" "這個法術操縱一些量子領域的東西來引導你穿過空間中的一小段距離,甚至是物質中的,不幸的是,你出來的地方存在滿滿地不確定性。當你重新定位自己後,會讓你神智有點茫然。" -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Synaptic Stimulation" msgstr "突觸刺激" #. ~ Description for {'str': 'Synaptic Stimulation'} #. ~ Description for {'str': 'Scroll of Synaptic Stimulation', 'str_pl': #. 'Scrolls of Synaptic Stimulation'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell stimulates the synapses in your brain beyond normal processing " "speeds, giving you a large boost in mental processing capability, including " @@ -203126,74 +202944,74 @@ msgid "" "responsibly!" msgstr "此法術刺激大腦突觸超出正常處理速度,使你在心智處理能力上有大幅的提升,包括提高你的反應能力、速度和基礎智力。負責任地使用!" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Laze" msgstr "雷光術" #. ~ Description for {'str': 'Laze'} #. ~ Description for {'str': 'Scroll of Laze', 'str_pl': 'Scrolls of Laze'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "You concentrate and release a focused beam of photons at a target, also " "known as a laser." msgstr "你集中並釋放一道光子束到目標上,俗稱叫做雷射。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Animated Blade" msgstr "飛舞幻刃" #. ~ Description for {'str': 'Animated Blade'} #. ~ Description for {'str': 'Scroll of Animated Blade', 'str_pl': 'Scrolls of #. Animated Blade'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell conjures flying animated blades that will cut your enemies down " "to size. Into small pieces that is." msgstr "這法術會召喚出飛行舞動的刀刃,它將把你的敵人大卸八塊。大卸成八百塊。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Mirror Image" msgstr "鏡像投影" #. ~ Description for {'str': 'Mirror Image'} #. ~ Description for {'str': 'Scroll of Mirror Image', 'str_pl': 'Scrolls of #. Mirror Image'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" "This spell manipulates light into barely tangible duplicates of a living " "being, a magical hologram in short." msgstr "這個法術將操縱光線將施法者的影像完整地複製出來,簡而言之就是魔法的全像投影。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Summon floating disk" msgstr "召唤飘浮碟" #. ~ Description for {'str': 'Summon floating disk'} #. ~ Description for {'str': 'Scroll of Summon Floating Disk', 'str_pl': #. 'Scrolls of Summon Floating Disk'} -#: data/mods/Magiclysm/Spells/technomancer.json -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/Spells/technomancer.json +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "召唤一个能够减轻你的负担的飘浮碟。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Overcharge Burn" msgstr "过载烧伤" #. ~ Description for {'str': 'Overcharge Burn'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "The side effects of casting the overcharge spell." msgstr "施放过载术造成的副作用。" -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "Optical Sneeze Beam" msgstr "喷嚏激光术" #. ~ Description for {'str': 'Optical Sneeze Beam'} -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your internal batteries to send a semi-directed beam from " "your face. The inventor of this spell must have had some weird sense of " @@ -203201,356 +203019,356 @@ msgid "" msgstr "你将体内的生化电池过载,从你的脸上射出半定向的激光光束。这个法术的发明者一定有某种诡异的幽默感。" #. ~ Description for the sound of spell '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "bzzzzzzt!" msgstr "噗滋滋滋滋!" #. ~ Message for SPELL '{'str': 'Optical Sneeze Beam'}' -#: data/mods/Magiclysm/Spells/technomancer.json +#: data/mods/Magical_Nights/Spells/technomancer.json msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "你将体内的生化能量过载并导入你的灵脉中,并将其导引至脸部射出。" #. ~ Description of effect 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are exhausted from channeling a lot of mana." msgstr "你因为引导了大量魔力而精疲力竭。" #. ~ Apply message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Channeling so much mana is making you tired" msgstr "引导大量魔力让你感到疲倦。" #. ~ Remove message for effect(s) 'Mana Fatigue'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The burden of mana fatigue has faded" msgstr "魔力疲乏带来的负荷已消逝不见。" #. ~ Description of effect 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind." msgstr "你被風的力量所支撐和推動。" #. ~ Apply message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are bolstered and pushed along by the power of the wind" msgstr "你被風的力量所支撐和推動" #. ~ Remove message for effect(s) 'Windrunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The wind at your back dies down." msgstr "你背後的風消失了。" #. ~ Description of effect 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see in the dark." msgstr "你可以在黑暗中看到東西。" #. ~ Apply message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your sight adjusts to the darkness." msgstr "你的視覺能適應黑暗。" #. ~ Remove message for effect(s) 'Dark Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The darkness loses its shape." msgstr "你失去在黑暗中辨形的能力。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal Hold" msgstr "幽影之拥" #. ~ Description of effect 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ghostly arms are trying to hold you in place!" msgstr "幽灵般的手臂正试图把你抱在原地!" #. ~ Apply message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Ethereal arms shoot out of the ground and grab onto you!" msgstr "虚幻的手臂从地上射出,抓住你!" #. ~ Remove message for effect(s) 'Ethereal Hold'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The ghostly arms fade away." msgstr "幽灵般的手臂消失了。" #. ~ Description of effect 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Nothing can see you." msgstr "沒有東西能看到你。" #. ~ Apply message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You fade away." msgstr "你消失了。" #. ~ Remove message for effect(s) 'Invisibility'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You can see your hands again." msgstr "你又能看到你的手了。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Blessed" msgstr "受到祝福" #. ~ Description of effect 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do." msgstr "你充滿了能量,提高了你所有屬性。" #. ~ Apply message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are filled with energy that improves everything you do!" msgstr "你充滿了能量,提高了你所有屬性!" #. ~ Remove message for effect(s) 'Blessed'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your energy fades." msgstr "祝福的能量消逝了。" #. ~ Description of effect 'Grotesque Enhancement'. #. ~ Apply message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your body ripples with writhing alien muscles, your limbs lengthen, and your" " eyes glow with a faint green." msgstr "你的身体随着翻卷的异形肌肉波荡,四肢被拉伸,眼中闪烁着幽幽的绿芒。" #. ~ Remove message for effect(s) 'Grotesque Enhancement'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body rapidly returns to normal." msgstr "你的身体很快恢复正常。" #. ~ Description of effect 'Vegetative Grasp'. #. ~ Description of effect 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes." msgstr "树根和藤蔓缠绕着你的敌人。" #. ~ Apply message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots and vines entangle your foes to slow them!" msgstr "树根和藤蔓缠绕你的敌人,使他们减速!" #. ~ Remove message for effect(s) 'Vegetative Grasp'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots and vines wither up and die." msgstr "树根和藤蔓枯萎死亡。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Root Impale" msgstr "根须穿刺" #. ~ Apply message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Roots rip out from the ground and impale your enemies!" msgstr "从地上拔出根来刺穿你的敌人!" #. ~ Remove message for effect(s) 'Root Impale'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The roots wither up and die." msgstr "树根枯萎死亡。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Acidic burn" msgstr "酸性灼傷" #. ~ Description of effect 'Acidic burn'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Burned with acid" msgstr "被強酸燒灼" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Hasted" msgstr "迅捷" #. ~ Description of effect 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted enormously." msgstr "你的速度得到了極大的提升。" #. ~ Apply message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your speed is boosted to superhuman levels!" msgstr "你的速度提升到超人的水平!" #. ~ Remove message for effect(s) 'Hasted'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You return to your normal speed." msgstr "你恢復正常速度。" #. ~ Description of effect 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mental processing is increased." msgstr "你的心智處理能力提高了。" #. ~ Apply message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind accelerates." msgstr "你的腦袋運作加速了。" #. ~ Remove message for effect(s) 'Synaptic Stimulation'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your mind returns to normal speed." msgstr "你的腦袋恢復正常速度。" #. ~ Description of effect 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the strength of an Ogre!" msgstr "你有食人魔的力量!" #. ~ Apply message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel strong!" msgstr "你感覺很強壯!" #. ~ Remove message for effect(s) 'Ogre's Strength'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your strength deflates." msgstr "你的增強的力量消失了。" #. ~ Description of effect 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the perception of an Eagle!" msgstr "你有鷹的視覺!" #. ~ Apply message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You notice small details!" msgstr "你能注意到微小的細節!" #. ~ Remove message for effect(s) 'Eagle's Sight'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your vision returns to normal." msgstr "你的視力恢復正常。" #. ~ Description of effect 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the dexterity of a cat!" msgstr "你有貓的靈巧!" #. ~ Apply message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes are heightened!" msgstr "你的反應提高了!" #. ~ Remove message for effect(s) 'Cat's Grace'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your reflexes return to normal." msgstr "你的反應恢復正常。" #. ~ Description of effect 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You have the cunning of a Fox!" msgstr "你有狐狸的狡猾!" #. ~ Apply message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence is heightened!" msgstr "你的智力提高了!" #. ~ Remove message for effect(s) 'Fox's Cunning'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your intelligence returns to normal." msgstr "你的智力恢復正常。" #. ~ Apply message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin tingle with the power of the Devs!" msgstr "開發人員的力量使您的皮膚發麻!" #. ~ Remove message for effect(s) 'Debug Full Protection'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your skin stops tingling, your life is empty and meaningless again." msgstr "你的皮膚不再發麻,你的生活再度空虛又毫無意義。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Debug Feather Fall" msgstr "除錯羽落術" #. ~ Description of effect 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are light as a feather and fall like one." msgstr "你像羽毛一樣輕盈飄落。" #. ~ Apply message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your body feels light as a feather." msgstr "你的身體就像羽毛一樣輕盈。" #. ~ Remove message for effect(s) 'Debug Feather Fall'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The earth pulls you down hard." msgstr "大地用力地把你拉下。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Scared" msgstr "驚恐" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Frightened" msgstr "惶悚" -#: data/mods/Magiclysm/effects/effects.json src/npc.cpp +#: data/mods/Magical_Nights/effects/effects.json src/npc.cpp msgid "Terrified" msgstr "嚇壞了" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Your knees are shaking, your heart beats fast, and your stomach rebels." msgstr "你的膝蓋在顫抖著,心臟快速跳動,而且反胃。" #. ~ Apply message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You are afraid!" msgstr "你感到害怕!" #. ~ Remove message for effect(s) 'Scared, Frightened, Terrified'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Your fear dissipates." msgstr "你的恐懼消失了。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Visceral Overexertion" msgstr "脏腑过劳" #. ~ Description of effect 'Visceral Overexertion'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "You feel sickened from overtaxing your body, having extended your influence " "over such a wide area." msgstr "你因为将自身脏腑过度膨胀以将其覆盖这么大一片范围而感到恶心难受。" #. ~ Description of effect 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "" "Immunity to bleeding and bites, increased stamina regeneration, increased " "hunger and thirst gain." msgstr "对流血和咬伤免疫,增加耐力重生速度,饥渴增长速度。" #. ~ Remove message for effect(s) 'Coagulant Weave'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "The tension running through your flesh fades." msgstr "你感到血肉中的紧绷感消退了。" -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "Biomantic Venom" msgstr "生化毒素" #. ~ Description of effect 'Biomantic Venom'. -#: data/mods/Magiclysm/effects/effects.json +#: data/mods/Magical_Nights/effects/effects.json msgid "You feel sluggish and weak, from magically-induced poisoning." msgstr "你感觉到由于生化魔法导致的迟钝及虚弱。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "owlbear gastrolith" msgid_plural "owlbear gastroliths" msgstr[0] "鴞熊胃結石" #. ~ Description for owlbear gastrolith -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This strangely shaped rock was once a part of an owlbear's complex digestive" " system, creating a link between owl throat and bear stomach. It is " @@ -203559,267 +203377,169 @@ msgid "" msgstr "" "這顆形狀奇特的石頭曾經是鴞熊複雜消化系統的一部分,在鴞熊喉嚨和熊胃之間建立了聯繫。它有可能在煉金術中起到類似的作用,有助於將兩個不同的一半結合在一起。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stone shell" msgid_plural "stone shells" msgstr[0] "石之殼" #. ~ Description for stone shell -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The broken fragment of an owlbear egg. With luck it might still contain " "some of its former power, though if nothing else it's still a bit sharp." msgstr "鴞熊蛋的破片。幸運的是它仍保有原本的力量,除此之外還有點尖銳。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "銅灌注手鐲" - -#. ~ Description for {'str': 'copper infusion bracelet'} -#. ~ Description for {'str': 'silver infusion bracelet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"This bracelet has runes engraved on it. You sense a faint air of mysticism " -"when you look at it. It would be useful for imbuing mana into material." -msgstr "这个手镯上刻着符文。当你看着它的时候,你会感觉到一种神秘的微弱气息。它将有助于将魔力灌注到物质中。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "符文银手镯" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "銅飾環" - -#. ~ Description for {'str': 'copper circlet'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." -msgstr "镶有铜边的木质头环。在戴上它时按摩太阳穴会使你感到非常平静。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "potion starter" msgid_plural "potion starters" msgstr[0] "基础药剂" #. ~ Description for potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Strong alcohol, infused with mana and concentrated into a liquid that can " "stabilize spells into liquid form. You can still drink it, if you want." msgstr "強烈的酒精,注入法力並濃縮成液體,可以使法術穩定成液態。如果你願意,仍然可以喝它。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "superior potion starter" msgid_plural "superior potion starters" msgstr[0] "强效基础药剂" #. ~ Description for superior potion starter -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Pure ethanol saturated with magical energy. The sheer power concentrated " "within causes the surface of the potion to ripple continuously." msgstr "充满魔法能量的纯净乙醇。聚集在其中的魔力使药剂表面不断地波动起伏。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "large adrenal gland" msgid_plural "large adrenal glands" msgstr[0] "大肾上腺" #. ~ Description for {'str': 'large adrenal gland'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "An organ located above the kidneys responsible for secretion of adrenaline, " "cortisol, and aldosterone. This one is huge, whether by nature or mutation." msgstr "位於腎臟上方的器官,負責分泌腎上腺素、皮質醇和醛固酮。無論是天生還是突變的,這個都是巨大的。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "glow dust" msgid_plural "glow dusts" msgstr[0] "發光粉" #. ~ Description for glow dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "The powdered remains of a will-o-wisps's phsyical form. It seems to still " "possess an otherworldly glow." msgstr "鬼火物質型態的粉狀遺骸。它依然散發出異界的光芒。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light" -msgid_plural "magical reading lights" -msgstr[0] "魔法閱讀燈" - -#. ~ Description for magical reading light -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. Use it to close the cover and hide the light." -msgstr "這種極其昂貴的小光源用發光粉和次級法力藥水提供動力,提供閱讀時足夠的光源長達至少十年。使用它來蓋上蓋子並隱藏燈光。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" -msgstr[0] "魔法閱讀燈(蓋上)" - -#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': -#. 'magical reading lights (covered)'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"Powered by the magic of glow powder and lesser mana potions, this extremely " -"expensive little light will provide just enough light to read by for at " -"least a decade. The cover is closed. Use it to open the cover and show the" -" light." -msgstr "這種極其昂貴的小光源用發光粉和次級法力藥水提供動力,提供閱讀時足夠的光源長達至少十年。蓋子已經蓋上。使用它來打開蓋子並顯示燈光。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "bulette plate" -msgid_plural "bulette plates" -msgstr[0] "鯊蜥獸甲片" - -#. ~ Description for bulette plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." -msgstr "從鯊蜥獸頭部後面撬出來的大型甲片,可用來製作盾牌跟護甲。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "bulette pearl" msgid_plural "bulette pearls" msgstr[0] "鯊蜥獸珍珠" #. ~ Description for bulette pearl -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "As a bulette burrows through the earth its gills collect minute amounts of " "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "當鯊蜥獸在地底挖洞時,它的鰓會收集微量的貴重金屬和寶石,這些慢慢地聚集成燦爛的珠寶,因其美麗與魔力而備受珍視。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "dragon essence" msgid_plural "dragon essences" msgstr[0] "龙之精粹" #. ~ Description for dragon essence -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "This is the magical essence from a dragon, distilled into a concentrated " "form." msgstr "這是龍的魔力精華,蒸餾成濃縮型態。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "stirge proboscis" msgid_plural "stirge proboscises" msgstr[0] "蚊蝠喙" #. ~ Description for {'str': 'stirge proboscis', 'str_pl': 'stirge #. proboscises'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "一根从蚊蝠尸体上收获所得的长喙,可以勉强当成武器使用。" -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" -msgstr[0] "惡魔幾丁質塊" - -#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of -#. demon chitin'} -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." -msgstr "一塊惡魔蜘蛛的外骨骼。質輕且非常耐用,並且可能具有一些魔法特性。" - -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "demon chitin plate" -msgid_plural "demon chitin plates" -msgstr[0] "惡魔幾丁質板" - -#. ~ Description for demon chitin plate -#: data/mods/Magiclysm/items/alchemy_items.json -msgid "" -"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" -" of an adult demon spider. A plate of this size can be used to create armor" -" plating." -msgstr "一大片惡魔蜘蛛的外骨骼,從成年惡魔蜘蛛的屍體細心地割下。這種尺寸的板可用於製造裝甲板。" - -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "demon spider fang" msgid_plural "demon spider fangs" msgstr[0] "惡魔蜘蛛毒牙" #. ~ Description for demon spider fang -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "A fang from a demon spider. It seems to still drip with poison; you might " "be able to use this in some alchemical recipe?" msgstr "一支惡魔蜘蛛的獠牙。它仍然滴著毒藥;也許你在一些煉金術配方中能使用它?" -#: data/mods/Magiclysm/items/alchemy_items.json -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/alchemy_items.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "alumentum" msgid_plural "alumentum" msgstr[0] "源动之焰" #. ~ Description for {'str_sp': 'alumentum'} -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " -"magnesium, and for a significantly longer period of time. One of the very " -"few magical materials that is still produced in any quantity today due to " -"its usefulness." -msgstr "" -"源动之焰是经过魔法处理的煤或木炭。它能像镁一样剧烈燃烧,而且燃烧时间要长得多。由于它的广泛用途,成为为数不多的至今仍在大量被生产的魔法材料之一。" +"magnesium, and for a significantly longer period of time. This makes it " +"quite a useful material to produce for many mages." +msgstr "源动之焰是经过魔法处理的煤或木炭。它能像镁一样剧烈燃烧,而且燃烧时间要长得多。这使得它成为许多法师非常实用的材料。" -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "mana dust" msgid_plural "mana dusts" msgstr[0] "魔力之尘" #. ~ Description for mana dust -#: data/mods/Magiclysm/items/alchemy_items.json +#: data/mods/Magical_Nights/items/alchemy_items.json msgid "" "Crystallized mana in powdered form. It faintly pulses with arcane energy." msgstr "粉末状的魔力结晶。它所含的奥术能量不断脉动着发出微光。" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "龍血" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/fuel.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/fuel.json msgid "mana infused blood" msgid_plural "mana_infused_blood" msgstr[0] "注魔之血" -#: data/mods/Magiclysm/items/ammo_types.json -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/ammo_types.json +#: data/mods/Magical_Nights/items/archery.json msgid "orichalcum arrow" msgid_plural "orichalcum arrows" msgstr[0] "山铜箭" -#: data/mods/Magiclysm/items/ammo_types.json +#: data/mods/Magical_Nights/items/ammo_types.json msgid "mercury" msgstr "液态汞" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "Ichaival" msgid_plural "Ichaivals" msgstr[0] "伊奇巴爾" -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the" " string. It has gold and silver ornaments on it, as well as an ornate " @@ -203827,396 +203547,372 @@ msgid "" msgstr "伊奇巴尔,传说中北欧众神之父奥丁使用的神弓。据说每次拉弦能够射出 10 只箭。这件上面覆盖满了金银饰品,以及一只装饰华丽的渡鸦。" #. ~ Description for orichalcum arrow -#: data/mods/Magiclysm/items/archery.json +#: data/mods/Magical_Nights/items/archery.json msgid "" "An arrow composed of a sliver of orichalcum. The arrow has a mysterious " "glow. Has a very high chance of staying intact when fired, however can only" " be fired from Ichaival." msgstr "由山铜制成的箭,正发出神秘的光芒。射击后有很大概率可以保持完好,但是只能从神弓伊奇巴尔上射出。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin arm guards" msgid_plural "pairs of demon chitin arm guards" msgstr[0] "恶魔甲壳护臂" #. ~ Description for {'str': 'pair of demon chitin arm guards', 'str_pl': #. 'pairs of demon chitin arm guards'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "一对由经过精心清理并裁剪过的恶魔蜘蛛躯壳制成的护臂,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin armor" msgid_plural "demon chitin armors" msgstr[0] "恶魔甲壳护甲" #. ~ Description for {'str': 'demon chitin armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "一副由经过精心清理并裁剪过的恶魔蜘蛛躯壳制成的全身护甲,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin helmet" msgid_plural "demon chitin helmets" msgstr[0] "恶魔甲壳头盔" #. ~ Description for {'str': 'demon chitin helmet'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A helmet crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "一顶由恶魔蜘蛛躯壳制成制成的头盔,能覆盖你的整个头部,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin gauntlets" msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "恶魔甲壳护手" #. ~ Description for {'str': 'pair of demon chitin gauntlets', 'str_pl': #. 'pairs of demon chitin gauntlets'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "一对由恶魔蜘蛛躯壳制成的护手,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "pair of demon chitin boots" msgid_plural "pairs of demon chitin boots" msgstr[0] "恶魔甲壳靴" #. ~ Description for {'str': 'pair of demon chitin boots', 'str_pl': 'pairs of #. demon chitin boots'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "Boots crafted from carefully cleaned and pruned pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "一对由恶魔蜘蛛躯壳制成的长靴,轻便耐用而且防火。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin dog mesh harness" msgid_plural "demon chitin dog mesh harnesses" msgstr[0] "恶魔甲壳犬具" #. ~ Description for {'str': 'demon chitin dog mesh harness', 'str_pl': 'demon #. chitin dog mesh harnesses'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift harness of demon chitin fitted to a thin mesh protecting the " "neck to flank of canines. You could put this on a friendly dog." msgstr "一套自制的犬具,上面的恶魔甲壳片和薄薄的网状织物贴合在一起,保护狗的侧面和颈部。你可以将这套犬具穿在一匹友好的狗身上。" -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "demon chitin horse armor" msgid_plural "demon chitin horse armors" msgstr[0] "恶魔甲壳马铠" #. ~ Description for {'str': 'demon chitin horse armor'} -#: data/mods/Magiclysm/items/armor.json +#: data/mods/Magical_Nights/items/armor.json msgid "" "A makeshift assembly of criniere, peytral and croupiere made from demon " "chitin fitted to a thin mesh. You could put this on a friendly horse." msgstr "" "一套自制的马铠,包含保护马颈的鸡颈、保护马胸的当胸和保护马臀的搭后,上面的恶魔甲壳片和薄薄的网状织物贴合在一起。你可以将这套马铠穿在一匹友好的马身上。" -#. ~ Description for {'str': 'Blood Power Generator CBM'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"Using the latest advancement in technomancy this bionic is able to convert " -"the innate energy stored in blood into bionic power. The stronger the blood" -" the better. It can hold up to 100 mL of blood." -msgstr "科技魔法的最新进展使这个生化插件能够将血液中的固有能量转化成生化能量。血液越强,效率越高。可以容纳 100 ml 血液。" - -#: data/mods/Magiclysm/items/bionics.json -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" -msgstr[0] "魔力结晶义鼻" - -#. ~ Description for {'str': 'Crystallized Mana Nose Replacement'} -#: data/mods/Magiclysm/items/bionics.json -msgid "" -"A large gem made with crystallized mana and some other stabilizing metals. " -"Comes with a specially designed power pack (installed into the skull) that " -"does not interfere with your mana ley lines. WARNING: for Technomancer use " -"only. By using this spell you are waiving all liability of Frikken Laser " -"Beams Inc. and its subsidiaries." -msgstr "" -"一个使用魔力结晶和其他稳定金属制作而成的大型宝石。配有一个经过特别设计不会干扰你魔力脉络的供能装置(被安装在头骨之中)。警告:仅供科技法师使用。施放此法术视为你同意免除弗里肯激光公司及其子公司的所有责任。" - -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon scale" msgid_plural "black dragon scales" msgstr[0] "黑龍鱗片" #. ~ Description for black dragon scale -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A scale from a black dragon. It still has its magical properties and acid " "resistance." msgstr "黑龍的鱗片。它仍保留原有的魔法性質與耐酸性。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "raw black dragon hide" msgid_plural "raw black dragon hides" msgstr[0] "生黑龙皮" #. ~ Description for raw black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A carefully folded raw hide harvested from a black dragon. It is a large " "enough piece that it is workable to make armor, and with enough scales you " "could make scale mail." msgstr "細心地從黑龍身上剝下來的一疊龍皮,這是很大的一片,足夠你用來製作護甲,如果有夠多的鱗片,可以作成鱗甲。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "tanning black dragon hide" msgid_plural "tanning black dragon hides" msgstr[0] "鞣製過的黑龍皮" #. ~ Use action msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "你小心翼翼的的把鞣製過的黑龍皮攤開,並把它上面殘留的液體甩乾淨。" #. ~ Use action not_ready_msg for tanning black dragon hide. -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "The black dragon hide isn't done yet." msgstr "黑龍皮尚未鞣製完成。" #. ~ Description for tanning black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A treated black dragon hide which is undergoing the chemical processes " "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "一張經過處理的黑龍皮,它正透過化學反應以轉變成可做為製作材料的皮革,完成後你可以使用它來攤開它並得到一張可以利用的皮革。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragon hide" msgid_plural "black dragon hides" msgstr[0] "黑龍皮" #. ~ Description for black dragon hide -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Prepared hide from a black dragon. Hard, acid-resistant, and with more " "scales could make a suit of armor as hard as steel and half as heavy." msgstr "已處理的黑龍皮。堅硬而耐酸,如果有足量的黑龍皮,你可以製作一套硬如鋼鐵的護甲,而且重量只有鋼鐵的一半。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale boots" msgid_plural "pairs of black dragonscale boots" msgstr[0] "黑龍鱗靴" #. ~ Description for {'str': 'pair of black dragonscale boots', 'str_pl': #. 'pairs of black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonscale. Very protective, and surprisingly light." msgstr "由黑龍鱗片製成的靴子。保護力很強,而且非常輕盈。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide boots" msgid_plural "pairs of black dragonhide boots" msgstr[0] "黑龍皮靴" #. ~ Description for {'str': 'pair of black dragonhide boots', 'str_pl': #. 'pairs of black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Boots made of black dragonhide. Very protective, and surprisingly light." msgstr "由黑龍皮製成的靴子。保護力很強,而且非常輕盈。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale helmet" msgid_plural "black dragonscale helmets" msgstr[0] "黑龍鱗盔" #. ~ Description for black dragonscale helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonscale, held together with black dragonhide. " "It comes equipped with a full face visor." msgstr "由黑龍鱗甲與黑龍皮製成的頭盔。它配備有全臉面罩。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide helmet" msgid_plural "black dragonhide helmets" msgstr[0] "黑龍皮帽" #. ~ Description for black dragonhide helmet -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A helmet made from black dragonhide. It protects your head well, and " "doesn't cover your face." msgstr "由黑龍皮製成的頭盔。它能妥善保護你的頭部,並且不會遮住你的臉。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonscale armor" msgid_plural "black dragonscale armors" msgstr[0] "黑龍鱗甲" #. ~ Description for black dragonscale armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragon scale mail. It comes with all the accoutrements" " that cover your torso, legs, and arms, with the benefit of being very light" " and flexible." msgstr "一套完整的黑龍鱗片鎖子甲。它配備了覆蓋軀幹、腿部和手臂的所有裝備,具有非常輕便和靈活的優點。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "black dragonhide armor" msgid_plural "black dragonhide armors" msgstr[0] "黑龍皮甲" #. ~ Description for black dragonhide armor -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A full suit of black dragonhide armor. It comes with all the accoutrements " "that cover your torso, legs, and arms, with the benefit of being very light " "and flexible." msgstr "一套完整的黑龍皮護甲。它配備了覆蓋軀幹、腿部和手臂的所有裝備,具有非常輕便和靈活的優點。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonscale gauntlets" msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "黑龍鱗護手" #. ~ Description for {'str': 'pair of black dragonscale gauntlets', 'str_pl': #. 'pairs of black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands." msgstr "一雙由黑龍鱗片製成的重型護手,可以保護雙手。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of black dragonhide gloves" msgid_plural "pairs of black dragonhide gloves" msgstr[0] "黑龍皮手套" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale boots" msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "黑龙鳞靴(XL)" #. ~ Description for {'str': 'pair of XL black dragonscale boots', 'str_pl': #. 'pairs of XL black dragonscale boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonscale, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "用黑龙鳞制成的特大码的靴子,经过精心剪裁能容下各种变异肢体,在拥有极高的防御力的同时令人惊异的轻便。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide boots" msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "黑龙皮靴(XL)" #. ~ Description for {'str': 'pair of XL black dragonhide boots', 'str_pl': #. 'pairs of XL black dragonhide boots'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "Massive boots made of black dragonhide, modified to fit even the strangest " "of bodies. Very protective, and surprisingly light." msgstr "用黑龙皮制成的特大码的靴子,经过精心剪裁能容下各种变异肢体,在拥有极高的防御力的同时令人惊异的轻便。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonscale gauntlets" msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "黑龙鳞护手(XL)" #. ~ Description for {'str': 'pair of XL black dragonscale gauntlets', #. 'str_pl': 'pairs of XL black dragonscale gauntlets'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of heavy-duty gauntlets made of black dragonscale that covers your " "hands, or whatever you use as hands." msgstr "一对特大码的耐用护手,由黑龙鳞制成,用于双手或其他变异肢体的防护。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "pair of XL black dragonhide gloves" msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "黑龙皮手套(XL)" #. ~ Description for {'str': 'pair of XL black dragonhide gloves', 'str_pl': #. 'pairs of XL black dragonhide gloves'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A pair of customized, Kevlar armored leather gloves, modified to be easy to " "wear while providing maximum protection under extreme conditions. Sized to " "fit even the strangest of anatomy." msgstr "一对特大码的耐用护手,由黑龙皮制成,用于双手或其他变异肢体的防护。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale helmet" msgid_plural "XL black dragonscale helmets" msgstr[0] "黑龙鳞盔(XL)" #. ~ Description for {'str': 'XL black dragonscale helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonscale, held together with black " "dragonhide. It comes equipped with a full face visor and is large enough to" " fit even the strangest of heads." msgstr "用黑龙鳞与黑龙皮制成的巨型头盔,全覆面设计,能容下各种变异肢体。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide helmet" msgid_plural "XL black dragonhide helmets" msgstr[0] "黑龙皮盔(XL)" #. ~ Description for {'str': 'XL black dragonhide helmet'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive helmet made from black dragonhide. It protects your head well, " "and doesn't cover your face, but is large enough to fit even the strangest " "of heads." msgstr "黑龙皮制成的巨型头盔,提供出色的头部防护,又不会遮挡面部,能容下各种变异肢体。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonscale armor" msgid_plural "XL black dragonscale armors" msgstr[0] "黑龙鳞甲(XL)" #. ~ Description for {'str': 'XL black dragonscale armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragon scale mail. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "特大码的全套黑龙鳞甲,部件覆盖躯干、腿、手臂,能容下各种变异肢体。" -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "XL black dragonhide armor" msgid_plural "XL black dragonhide armors" msgstr[0] "黑龙皮甲(XL)" #. ~ Description for {'str': 'XL black dragonhide armor'} -#: data/mods/Magiclysm/items/black_dragon_items.json +#: data/mods/Magical_Nights/items/black_dragon_items.json msgid "" "A massive full suit of black dragonhide armor. It comes with all the " "accoutrements that cover your torso, legs, and arms; sized to fit even the " "strangest of bodies." msgstr "特大码的全套黑龙皮甲,部件覆盖躯干、腿、手臂,能容下各种变异肢体。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "vacation brochure" msgid_plural "vacation brochures" msgstr[0] "度假手册" #. ~ Use action message for vacation brochure. #. ~ Use action message for lair map. -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "You add the locations to your map." msgstr "你在地图上标记了一些地点。" #. ~ Description for vacation brochure -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is a glossy brochure encouraging students to book vactaions at a lake " "retreat or remote cabin. The brochure includes lush photographs of a tower " @@ -204225,290 +203921,257 @@ msgid "" msgstr "" "这是一本精美的小册子,鼓励学生在湖畔度假地或偏远的小屋里度假。这本小册子有着岛屿上的一座塔和林中一座偏远小屋的华丽照片。里面附带着一张本地区的地图。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "lair map" msgid_plural "lair maps" msgstr[0] "巢穴地图" #. ~ Description for lair map -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "这是一张破旧的地图。它有一些奇形怪状的野兽的照片,装饰着精心绘制的地图标记。" -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "old photo" msgid_plural "old photos" msgstr[0] "旧照片" #. ~ Description for old photo -#: data/mods/Magiclysm/items/books_lore.json +#: data/mods/Magical_Nights/items/books_lore.json msgid "" "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in " "this basement. There is a stack of suitcases in the background." msgstr "一张快乐的老巫师的照片,他似乎正在地下室里和一个衣架跳舞。背景里有一堆手提箱。" -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "lesser mana potion" -msgid_plural "lesser mana potions" -msgstr[0] "次等魔力药剂" - -#. ~ Description for {'str': 'lesser mana potion'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" -msgstr "你無法買到這東西,所以你需要留下來直到打最後首領!正確來說,你也不要在那裡使用。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "mana potion" -msgid_plural "mana potions" -msgstr[0] "魔力药剂" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "高等魔力药剂" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" -msgstr[0] "猫之优雅药剂" - -#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of -#. Cat's Grace"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." -msgstr "貓之優雅藥劑,能夠增加你的敏捷 10 分鐘。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" -msgstr[0] "巨魔之力药剂" - -#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions -#. of Ogre's Strength"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." -msgstr "食人魔之力藥劑,能夠增加你的力量 10 分鐘。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" -msgstr[0] "鹰眼药剂" - -#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of -#. Eagle's Sight"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." -msgstr "鷹之視野藥劑。能夠增加你的感知 10 分鐘。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" -msgstr[0] "狐之狡黠药剂" - -#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of -#. Fox's Cunning"} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." -msgstr "狐之狡滑藥劑,能夠增加你的智力 10 分鐘。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" -msgstr[0] "丧尸巫毒娃娃" - -#. ~ Description for zombie voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human, including pieces of bone " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "一個維妙維肖的不死人類模型,包括骨頭和器官。死靈魔法延遲了它的腐爛,但不會永遠持續下去。使用附帶的針刺穿它可以迫使它為你服務。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" -msgstr[0] "骨片巫毒娃娃" - -#. ~ Description for ossified voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead human covered with bone, including" -" pieces of organs. Necromantic magic delays immediate rot, but it won't " -"last forever. Piercing it with the attached needle could compel it to serve" -" you." -msgstr "一個維妙維肖被骨頭包覆的不死人類模型,包括器官。死靈魔法延遲了它的腐爛,但不會永遠持續下去。使用附帶的針刺穿它可以迫使它為你服務。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" -msgstr[0] "美洲狮巫毒娃娃" - -#. ~ Description for cougar voodoo doll -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " -"and organs. Necromantic magic delays immediate rot, but it won't last " -"forever. Piercing it with the attached needle could compel it to serve you." -msgstr "一個維妙維肖的不死美洲獅模型,包括毛皮、骨骼和器官。死靈魔法延遲了它的腐爛,但不會永遠持續下去。使用附帶的針刺穿它可以迫使它為你服務。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" -msgstr[0] "扭曲恢复药剂" - -#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': -#. 'potions of Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal." -msgstr "這種惡臭的液體用加速你的心跳達到危險等級的方式來模擬不死生物的再生。在危險或危急情況下飲用可能會致命。" - -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "改良扭曲恢复药剂" - -#. ~ Description for {'str': 'potion of Improved Twisted Restoration', -#. 'str_pl': 'potions of Improved Twisted Restoration'} -#: data/mods/Magiclysm/items/cast_spell_items.json -msgid "" -"This foul-smelling liquid simulates undead regeneration by accelerating your" -" heart to dangerous levels. Drinking this in danger or at critical " -"condition may be lethal. Improved infusion techniques lessen the strain of " -"the process." -msgstr "" -"這種惡臭的液體用加速你的心跳達到危險等級的方式來模擬不死生物的再生。在危險或危急情況下飲用可能會致命。改良的灌注技術讓這過程稍微減輕了壓力。" - -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Biomancer rune" msgid_plural "Biomancer runes" msgstr[0] "生機術士符文" #. ~ Description for {'str': 'Biomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of rended flesh and bones on it. It is " "necessary for Biomancers to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像撕裂骨肉的符号,对于将魔力导入制品的生化术士来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Technomancer rune" msgid_plural "Technomancer runes" msgstr[0] "科技巫師符文" #. ~ Description for {'str': 'Technomancer rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of clockwork and gears on it. It is " "necessary for Technomancers to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像齿轮和发条装置的符号,对于将魔力导入制品的科技法师来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Magus rune" msgid_plural "Magi runes" msgstr[0] "祆教徒符文" #. ~ Description for {'str': 'Magus rune', 'str_pl': 'Magi runes'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of crystal and mana orbs on it. It is " "necessary for Magi to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像水晶与魔力球的符号,对于将魔力导入制品的魔术师来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Earthshaper rune" msgid_plural "Earthshaper runes" msgstr[0] "塑地者符文" #. ~ Description for {'str': 'Earthshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of steel and rocks on it. It is " "necessary for Earthshapers to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像钢铁与岩石的符号,对于将魔力导入制品的塑地者来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Kelvinist rune" msgid_plural "Kelvinist runes" msgstr[0] "熱力學者符文" #. ~ Description for {'str': 'Kelvinist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of ice and flames on it. It is " "necessary for Kelvinists to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像寒冰与烈火的符号,对于将魔力导入制品的炽霜法师来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Stormshaper rune" msgid_plural "Stormshaper runes" msgstr[0] "塑風者符文" #. ~ Description for {'str': 'Stormshaper rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of lightning and storm clouds on it. It" " is necessary for Stormshapers to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像闪电与雷雨云的符号,对于将魔力导入制品的风暴塑造者来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Druid rune" msgid_plural "Druid runes" msgstr[0] "德魯伊符文" #. ~ Description for {'str': 'Druid rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of nature and trees on it. It is " "necessary for Druids to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像自然与绿树的符号,对于将魔力导入制品的德鲁伊来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "Animist rune" msgid_plural "Animist runes" msgstr[0] "泛靈論者符文" #. ~ Description for {'str': 'Animist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "这块注魔的小石块上面有一个像召唤师的符号,对于将魔力导入制品的泛灵师来说必不可少。" -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "alchemist rune" msgid_plural "alchemist runes" msgstr[0] "煉金術士符文" #. ~ Description for {'str': 'alchemist rune'} -#: data/mods/Magiclysm/items/class_runes.json +#: data/mods/Magical_Nights/items/class_items.json msgid "" "This magical pebble has an insignia of alchemy and potions on it. While " "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "这块注魔的小石块上面有一个像炼金术和魔药的符号。虽然它在制造中的用处十分广泛,但是因为缺少与任何魔法流派的共鸣,它无法用于制造高级的物品。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/class_items.json +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "生機術士骨矛" + +#. ~ Description for {'str': 'Biomancer spear'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." +msgstr "奇異的骨製矛頭裝在粗壯的木桿上。矛頭底部鑲嵌著生機術士符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" +msgstr[0] "科技巫師工具棒" + +#. ~ Description for {'str': 'Technomancer toolbar'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convienent package. There is a Technomancer rune " +"embedded in the hammerhead." +msgstr "這棍棒在橇棍前頭上整合了堅固的活動扳手,以及在鐵鎚上整合了許多適合的工具套組。在鎚頭上鑲嵌著科技巫師符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Magus staff" +msgid_plural "Magus staves" +msgstr[0] "祆教徒法杖" + +#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A quarterstaff with runes carved into it and two glass jars, heat-tempered " +"and infused with mana for durability, to act as mana receptacles. There are" +" two Magi runes embedded at the tips." +msgstr "雕刻符文的長棍,附有兩個玻璃罐。經過淬火回火後注入法力提升其耐用度。尖端鑲嵌著兩個祆教徒符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "熱力學者焰形劍" + +#. ~ Description for {'str': 'Kelvinist flamberge'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." +msgstr "有著如火焰般波浪形狀劍身的雙手大劍。在劍柄端頭上鑲嵌著熱力學者符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" +msgstr[0] "塑風者銅斧" + +#. ~ Description for {'str': 'Stormshaper axe'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." +msgstr "有著銀飾和木製手柄的鍛造銅斧。斧眼中鑲嵌著風暴塑形者的符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Animist athame" +msgid_plural "Animist athames" +msgstr[0] "泛靈論者儀式刀" + +#. ~ Description for {'str': 'Animist athame'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." +msgstr "鋼製的儀式用小刀,泛靈論者在召喚時用來放血的器具。他們學派的符文正鑲嵌在護手上。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "科技法师工具腰带" + +#. ~ Description for {'str': "technomancer's toolbelt"} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "一条自制的皮革工具带,能够瞬间变出你所想要的任何工具。激活它来收拔武器。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Druid composite bow" +msgid_plural "Druid composite bows" +msgstr[0] "德魯伊合成弓" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A bow made of multiple materials to maximize energy efficiency. There are " +"two Druid runes embedded at the tips." +msgstr "一把采用多种材料复合制成以增加储能效率的弓。弓背两端镶嵌着两个德鲁伊符文。" + +#: data/mods/Magical_Nights/items/class_items.json +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cesti" +msgstr[0] "塑地者拳套" + +#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper +#. cesti'} +#: data/mods/Magical_Nights/items/class_items.json +msgid "" +"A stone battle glove with carved runes encasing the hand, protecting it " +"while increasing striking power. There is an Earthshaper rune embedded in " +"the palm." +msgstr "一雙雕刻著符文的石製手套,包覆雙手保護它並增強打擊力道。在掌中鑲嵌著大地塑形者的符文。" + +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg" msgid_plural "owlbear eggs" msgstr[0] "枭熊蛋" #. ~ Description for owlbear egg -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "This egg laid by an owlbear seems almost indistinguishable from a large rock" " until you touch it and can feel the warm glow of potential life energy from" @@ -204518,3910 +204181,4456 @@ msgid "" msgstr "" "這顆鴞熊蛋幾乎與大石頭沒有區別,直到你觸摸它並能從內部感受到潛在生命能量的溫暖光芒。人們很難相信鴞熊可以從如此小的東西中快速增長。也許你可以小心地打開它以獲得裡面金色高質地的液體。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "owlbear egg yolk" msgid_plural "owlbear egg yolks" msgstr[0] "枭熊蛋蛋黄" #. ~ Description for owlbear egg yolk -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "The liquid innards of an owlbear egg. Good eating." msgstr "鴞熊蛋內的液體。好吃。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "hairball" msgid_plural "hairballs" msgstr[0] "毛团" #. ~ Description for {'str': 'hairball'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "動物舔吐出來的巨大醜陋毛球。不要吞它。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "龍肉" #. ~ Description for {'str_sp': 'dragon meat'} -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " "same way as other meat, making it obvious that it still retains some magical" " properties." msgstr "來自被殺死的龍的肉。無法用平常的烹飪方式處理它,顯然它依舊保有一些魔法特性。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "scream mushroom" msgid_plural "scream mushrooms" msgstr[0] "尖叫蘑菇" #. ~ Description for scream mushroom -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "從死亡尖叫者收穫而來的蘑菇。可以用來製作藥劑。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "purified meat" msgid_plural "purified meats" msgstr[0] "净化肉" #. ~ Description for purified meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" " but somehow it's just edible." msgstr "和大灾变前实验室培育的牛肉没有区别。本来它应该是非常美味的,但不知为何只是勉强可以食用而已。" -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "impure meat" msgid_plural "impure meats" msgstr[0] "未净肉" #. ~ Description for impure meat -#: data/mods/Magiclysm/items/comestibles.json +#: data/mods/Magical_Nights/items/comestibles.json msgid "" "Not as tainted as previously and tastes like the real thing. You do not " "want to cook this for your friends, though if you do they won't know the " "difference for a while." msgstr "虽然不像之前那样被感染,尝起来也和真肉一样。但你可不想用它来做东西给你的同伴吃,尽管这样做了他们也一时半会发现不出有什么区别。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken clay golem" msgid_plural "broken clay golems" msgstr[0] "粘土傀儡(损坏)" #. ~ Description for broken clay golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "一个损坏的粘土傀儡,看起来像一件后现代艺术品。打碎可以获得粘土。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken plastic golem" msgid_plural "broken plastic golems" msgstr[0] "塑料傀儡(损坏)" #. ~ Description for broken plastic golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken plastic golem, like a giant action figure chewed up by an equally " "giant puppy. You could smash it up into recycled plastic bits." msgstr "一个损坏的塑料傀儡,就像一个巨大的人偶被一只同样巨大的小狗咬碎了。打碎可以获得塑料。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken stone golem" msgid_plural "broken stone golems" msgstr[0] "石傀儡(损坏)" #. ~ Description for broken stone golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "一个损坏的石傀儡,看起来像一件后现代艺术品。打碎可以获得石头。" -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "broken iron golem" msgid_plural "broken iron golems" msgstr[0] "铁傀儡(损坏)" #. ~ Description for broken iron golem -#: data/mods/Magiclysm/items/constructs.json +#: data/mods/Magical_Nights/items/constructs.json msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "一个损坏的铁傀儡,看起来像一件后现代艺术品。打碎可以获得铁。" -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "力量腰帶 +2" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "belt of haste" -msgid_plural "belts of haste" -msgstr[0] "急速腰帶" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" -msgstr[0] "次等法师法杖" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken fresh resin golem" +msgid_plural "broken fresh resin golems" +msgstr[0] "生树脂魔像(损坏)" -#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser -#. staves of the magi'} -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken fresh resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A beautifully carved staff, made of enchanted wood and mithril. It faintly " -"glows with magic when you cast spells, but it is not a sturdy melee weapon." -msgstr "一根精心制造的长杖,采用经过附魔的木头和秘银制成。当你使用它施放法术时它会在魔法的作用下微微发光,但它不是一个耐用的近战武器。" +"A broken resin golem, slowly becoming more and more of a puddle. You could " +"recover some small amount of materials from it, but it'll be difficult " +"considering how liquid it is." +msgstr "一具破损的生树脂魔像,正慢慢变成一滩液体。你可以从中回收一些少量的材料,但考虑到它现在已经是液态的,这会很困难。" -#: data/mods/Magiclysm/items/enchanted.json -msgid "wizard hat" -msgid_plural "wizard hats" -msgstr[0] "巫師帽" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken semi-cured resin golem" +msgid_plural "broken semi-cured resin golems" +msgstr[0] "半固化树脂魔像(损坏)" -#. ~ Description for wizard hat -#: data/mods/Magiclysm/items/enchanted.json +#. ~ Description for broken semi-cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"A blue pointed hat with stars stiched into it. Wearing it increases your " -"mana regeneration." -msgstr "縫有星星圖樣的藍色尖頂帽子。佩戴它會增加你的法力回復。" - -#: data/mods/Magiclysm/items/enchanted.json -msgid "fireball hammer" -msgid_plural "fireball hammers" -msgstr[0] "火球錘" - -#. ~ Description for fireball hammer -#: data/mods/Magiclysm/items/enchanted.json -msgid "Use with caution! Flammable! Explosive!" -msgstr "請謹慎使用!易燃!爆炸!" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "magic leather belt" -msgid_plural "magic leather belts" -msgstr[0] "魔法皮帶" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Haste" -msgid_plural "Belts of Haste" -msgstr[0] "迅捷腰带" +"A broken resin golem, looking a bit like a big pile of toffee. You can " +"recover some materials from it, but some wastage will definitely happen." +msgstr "一具破损的树脂魔像,看起来有点像一大堆太妃糖。你可以从中回收一些材料,但肯定会有一些浪费。" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Megingjörð" -msgid_plural "Megingjörð" -msgstr[0] "索尔的神奇腰带" +#: data/mods/Magical_Nights/items/constructs.json +msgid "broken cured resin golem" +msgid_plural "broken cured resin golems" +msgstr[0] "固化树脂魔像(损坏)" -#. ~ Description for {'str_sp': 'Megingjörð'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for broken cured resin golem +#: data/mods/Magical_Nights/items/constructs.json msgid "" -"The mythical belt of Thor, god of thunder. Or at least so it appears. It " -"doubles the wearer's base strength." -msgstr "传说中雷神索尔的神奇腰带,至少看起来是这样的。它能使佩戴者的基础力量加倍。" +"A broken resin golem, now reduced to a pile of rubble. You could recover " +"some materials from it if you were to work at it for a while." +msgstr "一具破损的树脂魔像,现在已经变成了一堆瓦砾。如果你花些时间去处理,还是可以从中回收一些材料。" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Lesser Girdle of Pockets" -msgid_plural "Lesser Girdles of Pockets" -msgstr[0] "次级口袋腰带" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "魔石护手" -#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser -#. Girdles of Pockets'} -#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater -#. Girdles of Pockets'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A wide girdle that fits around your waist, coverd in numerous small pouches " -"that hold a lot more than they should, and the weight of their contents is " -"greatly reduced." -msgstr "一条很适合你腰部的宽腰带,上面覆盖着许多小口袋,能装下超出它们体积的物品,而且口袋中的物品重量大大减少。" +#. ~ Description for {'str': 'pair of magical armored stone gauntlets', +#. 'str_pl': 'pairs of magical armored stone gauntlets'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "一種神奇地物質,像石頭一樣卻擁有彈性。可用於保護與攻擊。" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Greater Girdle of Pockets" -msgid_plural "Greater Girdles of Pockets" -msgstr[0] "高级口袋腰带" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter" +msgid_plural "finger firelighters" +msgstr[0] "指尖引火" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of Weaponry" -msgid_plural "Belts of Weaponry" -msgstr[0] "武器腰带" +#. ~ Use action msg for finger firelighter. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim the flame." +msgstr "你将火焰调暗。" -#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of -#. Weaponry'} -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A wide girdle that fits around your waist, you can sheath or holster any " -"weapon into it in the blink of an eye, and it seemingly stores them " -"somewhere else." -msgstr "合身地環繞在你腰部的寬腰帶,你可以在眨眼間將任何武器放入其中,而它似乎將武器儲存在其他地方。" - -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "科技法师工具腰带" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire." +msgstr "這是團能捧在手心的小火光。你想到可以將它用來點燃其他物品。" -#. ~ Description for {'str': "technomancer's toolbelt"} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." -msgstr "一条自制的皮革工具带,能够瞬间变出你所想要的任何工具。激活它来收拔武器。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "finger firelighter (dimmed)" +msgid_plural "finger firelighter (dimmed)s" +msgstr[0] "火焰之指(暗淡)" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "Belt of The Iron Whip" -msgid_plural "Belts of the Iron Whip" -msgstr[0] "鐵鞭腰帶" +#. ~ Use action msg for finger firelighter (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You brighten the flame." +msgstr "你点亮了火焰。" -#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of -#. the Iron Whip'}. -#: data/mods/Magiclysm/items/enchanted_belts.json +#. ~ Description for finger firelighter (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"You grab the belt and it uncoils to become a flexible metal whip in your " -"hand!" -msgstr "你抓起腰带,它瞬间在你手中舒展开,变成一根灵活的铁鞭子!" +"This is a small flame you can hold in your hand. With a thought, you can " +"cause it to light something on fire, though it is currently dimmed." +msgstr "这是一朵你可以握在手中的小火苗。只要想着火焰,你就可以用它点燃其它物品,尽管现在它的火焰已经被调暗。" -#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the -#. Iron Whip'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A braided but flexible belt seemingly made of metal. You can activate it to" -" transform it into a whip and flay your enemies." -msgstr "一根看上去似由金属编织而成但又十分灵活的皮带。你可以激活它,把它变成鞭子,然后切碎你的敌人。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "魔法燈" -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "The Iron Whip" -msgid_plural "Iron Whips" -msgstr[0] "铁鞭" +#. ~ Use action msg for magic lamp. +#. ~ Use action msg for magic light. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You dim your spell until it's dark." +msgstr "你将你的魔法调暗,直到它完全熄灭。" -#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." -msgstr "你把鞭子在手中缠绕,使其在瞬间卷曲回皮带形状。" +#. ~ Description for magic lamp +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical light source that will light up a small area." +msgstr "能照亮小區域的魔法燈。" -#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} -#: data/mods/Magiclysm/items/enchanted_belts.json -msgid "" -"A long braided flexible steel bullwhip that narrows into a sharp blade at " -"the end. Easily capable of slicing and dicing anything that comes at you. " -"It transforms back into a belt." -msgstr "一条编织而成、柔软灵活的钢铁长鞭,末端变成锋利的刀刃。能够轻易切割任何向你袭来的物品。使用它能够将其变回皮带。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic lamp (dimmed)" +msgid_plural "magic lamp (dimmed)s" +msgstr[0] "魔法灯(暗淡)" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "seven league boots" -msgid_plural "pairs of seven league boots" -msgstr[0] "七里靴" +#. ~ Use action msg for magic lamp (dimmed). +#. ~ Use action msg for magic light (dimmed). +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "You return your spell to full brightness." +msgstr "你将魔法恢复到全亮状态。" -#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven -#. league boots'} -#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of -#. haste'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, they look like they've seen a lot of use and will likely see a lot " -"more. They make your movement a lot less work." -msgstr "一双十分坚固却又非常舒适合身的旧钢头皮靴,看上去已经用了很久,而且能继续用上更久。穿上它让你移动变得轻松了不少。" +#. ~ Description for magic lamp (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "a magical aura that you know can be brightened into a powerful light." +msgstr "一种你知道可以被调亮成强大光芒的魔法光环。" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "加速靴" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "魔法小燈" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "escape boots" -msgid_plural "escape boots" -msgstr[0] "遁逃靴" +#. ~ Description for magic light +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A small magical light that you can read by." +msgstr "可用於閱讀的小魔法燈。" -#. ~ Description for {'str_sp': 'escape boots'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, these boots can be activated once a day to escape from nasty " -"situations, teleporting you a good distance in a random direction." -msgstr "即使表面破舊,但是磨損的皮革跟鋼鐵卻非常舒適且合腳。這靴子每天能啟動一次來逃離惡劣的環境,能將你傳送到隨機方向的很長距離處。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "magic light (dimmed)" +msgid_plural "magic light (dimmed)s" +msgstr[0] "魔法阅读灯(暗淡)" -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" -msgstr[0] "立地靴" +#. ~ Description for magic light (dimmed) +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A magical aura which you know can be brightened for reading light." +msgstr "一种魔法光环,你知道它可以被调亮用作阅读光源。" -#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots -#. of grounding'} -#: data/mods/Magiclysm/items/enchanted_boots.json -msgid "" -"Rugged yet extremely comfortable and well fitting boots of leather with " -"small engraved runes seemingly filled with rubber. When worn, you are " -"immune to damage from electricity." -msgstr "一双十分坚固却又非常舒适合身的旧皮靴,上面雕刻着些似乎充满了橡胶的小型符文。穿上它能让你免疫电击。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "魔法大冰盾" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "pair of steel bracers" -msgid_plural "pairs of steel bracers" -msgstr[0] "一對鋼護腕" +#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large +#. shields of magical ice'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "輕巧但堅韌的盾牌,完全由魔法冰製成。" -#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of -#. steel bracers'} -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "A full assembly of medieval arm protection." -msgstr "一副完整的中世紀手臂保護裝置。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "光滑冰层" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "steel bracer" -msgid_plural "steel bracers" -msgstr[0] "鋼護腕" +#. ~ Description for {'str_sp': 'slick icy coatings'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." +msgstr "腳上有一層光滑的魔法冰塗層。雖然能讓你在平坦的地面上行動非常快,但卻很難在崎嶇的地形上移動。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of lesser defense" -msgid_plural "bracers of lesser defense" -msgstr[0] "次級防護護腕" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The Stormhammer" +msgid_plural "The Stormhammers" +msgstr[0] "暴風之錘" -#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of -#. lesser defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'The Stormhammer'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, silver accentuates the intricate design. It protects your body " -"with a light aura to reduce damage you take." -msgstr "輕巧但堅固的鋼製護腕,頂部刻有華麗的盾牌,銀色凸顯出精緻的設計。它具有輕微的靈氣保護你的身體,能減少受到的傷害。" +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" +msgstr "一把充滿閃電劈啪作響的魔法戰鎚,可以打擊你的敵人,當然還可以砸碎東西!" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "bracer of greater defense" -msgid_plural "bracers of greater defense" -msgstr[0] "高級防護護腕" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Stormfist" +msgid_plural "Stormfists" +msgstr[0] "暴風拳套" -#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers -#. of greater defense'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for Stormfist +#. ~ Description for {'str': 'Stormfist'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate shield engraved on " -"the top, gold accentuates the intricate design. It protects your body with " -"a strong aura to reduce damage you take." -msgstr "輕巧但堅固的鋼製護腕,頂部刻有華麗的盾牌,金色凸顯出精緻的設計。它具有強大的靈氣保護你的身體,能減少受到的傷害。" +"Encases your arm and hand in a sheath of crackling magical lightning, you " +"can punch and defend yourself with it in melee combat." +msgstr "將你的手臂和拳頭包裹在劈啪作響的魔法閃電護套中,你可以在近戰格鬥中用它來打擊對手並保護自己。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "lesser bracer of lightning" -msgid_plural "lesser bracers of lightning" -msgstr[0] "次級閃電護腕" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "邪惡觸手鞭" -#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for vicious tentacle whip +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, silver accentuates the intricate design. It " -"protects your body with a light aura to reduce electrical damage you take, " -"as well as being able to release a Jolt spell 3 times a day." -msgstr "" -"輕巧但堅固的鋼製護腕,頂部刻有華麗的閃電束,銀色凸顯出精緻的設計。它具有輕微的靈氣保護你的身體,能減少遭受的電擊傷害,並且每天可以施放 3 次猛擊術。" +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." +msgstr "一條扭曲的長觸手,上面覆蓋著鋒利的骨狀刃片和突起的尖刺。" -#: data/mods/Magiclysm/items/enchanted_bracers.json -msgid "greater bracer of lightning" -msgid_plural "greater bracers of lightning" -msgstr[0] "高級閃電護腕" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "肉身成袋" -#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater -#. bracers of lightning'} -#: data/mods/Magiclysm/items/enchanted_bracers.json +#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A light but extremely sturdy steel bracer with an ornate bundle of lightning" -" bolts engraved on the top, gold accentuates the intricate design. It " -"protects your body with a strong aura to reduce electrical damage you take, " -"as well as being able to release a Lightning Bolt spell 3 times a day." -msgstr "" -"輕巧但堅固的鋼製護腕,頂部刻有華麗的閃電束,銀色凸顯出精緻的設計。它具有輕微的靈氣保護你的身體,能減少遭受的電擊傷害,並且每天可以施放 3 次閃電之箭。" +"A large pouch of tough flesh on your back, filled with tiny tentacles that " +"grasp and hold anything you place inside. It shifts and adjusts itself to " +"minimize encumbrance." +msgstr "一只大型的肉質袋子,能背在背上。裡面滿布著小觸手,能夠抓握住你放進袋中的東西,它會自動移動和調整,使你的累贅值降到最低。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "'Silent Winds' suppressor" -msgid_plural "'Silent Winds' suppressors" -msgstr[0] "\"静风\"消音器" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "邪惡骨矛" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"Rather than using purely wipe media, an additional localized silence spell " -"in this tube quiets gunshots going through to hearing-safe levels." -msgstr "除了消音材料之外,这个消音器还含有一个小范围静音法术,能够把枪声降低到对听力安全的水平。" +#. ~ Description for {'str': 'Wicked Bonespear'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This is a wicked spear/halberd hybrid entirely created of bone." +msgstr "這是一種完全由骨骼製成的邪惡的長矛/戟混合體。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (rail)" -msgid_plural "mana laser sights (rail)" -msgstr[0] "魔法激光瞄具(导轨)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Woodbow" +msgid_plural "Woodbows" +msgstr[0] "木弓" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit under the barrel." -msgstr "" -"小型可见激光发射器,使用魔力水晶发射激光,可安装在枪械上,增加命中率与瞄准速度。完全没有缺点——除了增加一点点重量。你可以旋转导轨将其变成管下瞄具。" +"A magically conjured ornate recurve bow of solid flexible wood. A matching " +"conjured wooden arrow appears when you draw the string back for firing." +msgstr "一把魔法生成的华丽反曲弓。由结实而有弹性的木料制成,拉开弓弦就会自动生成一只箭。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana laser sight (underbarrel)" -msgid_plural "mana laser sights (underbarrel)" -msgstr[0] "魔法激光瞄具(管下)" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "seed of purification" +msgid_plural "seeds of purification" +msgstr[0] "净化之种" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "" -"A small visible-light laser using light shown through a mana crystal that " -"mounts on a firearm's accessory rail to enhance ease and speed of target " -"acquisition. Aside from increased weight, there are no drawbacks. You can " -"rotate the attachment rail to fit on the rail." -msgstr "" -"小型可见激光发射器,使用魔力水晶发射激光,可安装在枪械上,增加命中率与瞄准速度。完全没有缺点——除了增加一点点重量。你可以旋转导轨将其变成导轨瞄具。" +#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds +#. of purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Squeeze seed" +msgstr "擠壓種子" -#: data/mods/Magiclysm/items/enchanted_gunmods.json -msgid "mana dot sight" -msgid_plural "mana dot sights" -msgstr[0] "魔法蓝点瞄准镜" +#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'}. +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"You squeeze the seed in your palm, and it begins to turn to a fine dust." +msgstr "你擠壓在你手掌中的種子,它開始變成細小的粉塵。" -#: data/mods/Magiclysm/items/enchanted_gunmods.json +#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of +#. purification'} +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"Adds a blue dot optic made from crystallized mana to the top of your gun, " -"replacing the iron sights. Increases accuracy and weight." -msgstr "在你的枪上安装一个使用魔力结晶发光的蓝点瞄具以取代机械瞄准具。提高命中率,增加重量。" +"A magical seed that can be squeezed to release purifying dust, which can " +"then be used to purify up to a gallon of water" +msgstr "一種魔法種子,在擠壓後釋放淨化粉塵,可用於淨化高達一加侖的水" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "magic mask" -msgid_plural "magic masks" -msgstr[0] "魔法面具" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "faintly glowing dust" +msgid_plural "faintly glowing dusts" +msgstr[0] "微弱的發光粉" -#. ~ Description for magic mask -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "A generic magic mask." -msgstr "一張普通的魔法面具。" +#. ~ Description for faintly glowing dust +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "This fine dust glows with a growing intensity" +msgstr "這細粉微微發光,越來越亮" -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of disappearance" -msgid_plural "masks of disappearance" -msgstr[0] "消逝面具" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "朦胧光环" -#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of -#. disappearance'} -#: data/mods/Magiclysm/items/enchanted_masks.json +#. ~ Description for obfuscating aura +#: data/mods/Magical_Nights/items/ethereal_items.json msgid "" -"A mask with no facial features at all, just eye and mouth holes, upon " -"activation it makes everything ignore your presence for a while." -msgstr "完全沒有面部特徵,只有眼孔和嘴孔的面具,當啟動時,它會使所有東西在一段時間內忽視你的存在。" - -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "mask of perfect vision" -msgid_plural "masks of perfect vision" -msgstr[0] "完美視覺面具" +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." +msgstr "一个覆盖全身、看不见的魔法光环扭曲了你身体周围的光。让你在一个回合中获得两次额外闪避攻击的能力。" -#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of -#. perfect vision'} -#: data/mods/Magiclysm/items/enchanted_masks.json -msgid "" -"A decidedly steampunk-looking half mask that covers the eye area of the " -"face, it has large lenses that correct and greatly enhance the vision of the" -" wearer." -msgstr "這款看起來像蒸汽龐克的半面罩覆蓋了臉部的眼睛區域,它具有可矯正並大大增強佩戴者視力的大鏡片。" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "防酸光环" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +1" -msgid_plural "cudgel +1s" -msgstr[0] "棒槌 +1" +#. ~ Description for {'str': 'acid resistance aura'} +#. ~ Description for greater acid resistance aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "An all-encompassing, invisible layer of protection against acid." +msgstr "一个覆盖全身的肉眼无法看见的防酸光环。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cudgel +2" -msgid_plural "cudgel +2s" -msgstr[0] "棒槌 +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "高等防酸光环" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +1" -msgid_plural "quarterstaff +1s" -msgstr[0] "木杖 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "寒霜盔甲" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "quarterstaff +2" -msgid_plural "quarterstaff +2s" -msgstr[0] "木杖 +2" +#. ~ Description for {'str_sp': 'frost armor'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "A thin layer of magical ice, covering the entire body." +msgstr "一层包覆全身的、薄薄的魔法冰层。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaff +1s" -msgstr[0] "鐵頭木杖 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "石化皮肤" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaff +2s" -msgstr[0] "鐵頭木杖 +2" +#. ~ Description for {'str_sp': 'stoneskin coating'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "一层覆盖全身的薄薄的不断移动的岩石,仿佛是有生命的液体一般。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +1" -msgid_plural "longsword +1s" -msgstr[0] "長劍 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "过载烧伤" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "longsword +2" -msgid_plural "longsword +2s" -msgstr[0] "長劍 +2" +#. ~ Description for {'str': 'overcharge burn'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "哎哟,这可是太聪明了!也许它很快就会消退?" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +1" -msgid_plural "sledge hammer +1s" -msgstr[0] "大鎚 +1" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "保护光环" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "sledge hammer +2" -msgid_plural "sledge hammer +2s" -msgstr[0] "大鎚 +2" +#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of +#. protection'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "一个覆盖全身的肉眼无法看见的环境防护光环。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" -msgstr[0] "" +#. ~ Description for {'str': 'Flamesword'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "这把木剑燃烧起来了!看起来握着它似乎还算安全,但它很快就会烧光。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" +msgstr[0] "腐烂骨棒" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +1" -msgid_plural "warhammer +1s" -msgstr[0] "戰槌 +1" +#. ~ Description for {'str': 'decaying boneclub'} +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "一根由骨头制成的会跳动的棍子,沾满了不断蠕动的血衣,渴望吸收活物。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "warhammer +2" -msgid_plural "warhammer +2s" -msgstr[0] "戰槌 +2" +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "windrunning aura" +msgid_plural "windrunning auras" +msgstr[0] "风行光环" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +1" -msgid_plural "bat +1s" -msgstr[0] "球棒 +1" +#. ~ Description for windrunning aura +#: data/mods/Magical_Nights/items/ethereal_items.json +msgid "The wind at your back helping to ease your travel." +msgstr "背后的风帮助你轻松旅行。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "bat +2" -msgid_plural "bat +2s" -msgstr[0] "球棒 +2" +#. ~ Description for {'str_sp': 'dragon blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood of a dragon, it radiates warmth and looking at it you see moving " +"patterns form and disappear in it as if looking at an actual fire." +msgstr "龍的鮮血,散發出溫暖的光芒,看著它,你會看到圖案在其中移動形成並消失,就好像看著真實的火焰一樣。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +1" -msgid_plural "aluminum bat +1s" -msgstr[0] "鋁製球棒 +1" +#. ~ Description for {'str': 'mana infused blood', 'str_pl': +#. 'mana_infused_blood'} +#: data/mods/Magical_Nights/items/fuel.json +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." +msgstr "充满了魔法能量的血液。它发出微弱的蓝光。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "aluminum bat +2" -msgid_plural "aluminum bat +2s" -msgstr[0] "鋁製球棒 +2" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "crystallized mana" +msgid_plural "crystallized mana" +msgstr[0] "法力結晶" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +1" -msgid_plural "steel spear +1s" -msgstr[0] "鋼矛+1" +#. ~ Description for {'str_sp': 'crystallized mana'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"Some crystallized mana. This can be reloaded into rechargable mana " +"crystals, but can never be unloaded." +msgstr "一些結晶的法力。這可以重新裝填到可填充的法力水晶中,但永遠不能卸下。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "steel spear +2" -msgid_plural "steel spear +2s" -msgstr[0] "鋼矛+2" +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "small mana crystal" +msgid_plural "small mana crystals" +msgstr[0] "小型法力水晶" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +1" -msgid_plural "qiang +1s" -msgstr[0] "中式槍 +1" +#. ~ Description for {'str': 'small mana crystal'} +#: data/mods/Magical_Nights/items/mana_crystals.json +msgid "" +"This is a small mana crystal specifically designed to be attached to wand " +"tips." +msgstr "這種小型法力水晶,專門設計用於連接魔杖的尖端。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "qiang +2" -msgid_plural "qiang +2s" -msgstr[0] "中式槍 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "raw owlbear pelt" +msgid_plural "raw owlbear pelts" +msgstr[0] "生枭熊毛皮" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +1" -msgid_plural "halberd +1s" -msgstr[0] "長戟 +1" +#. ~ Description for raw owlbear pelt +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A carefully folded raw skin harvested from an owlbear. It still has the fur" +" attached. You can cure it for storage and tanning, or eat it if you're " +"desperate enough." +msgstr "一块从枭熊上仔细地削下来的生皮毛。还有连着毛皮。你可以加工它来存储并进一步的鞣制,或者直接吃掉它,如果你的肚子里真的是一根毛都没有了的话。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "halberd +2" -msgid_plural "halberd +2s" -msgstr[0] "長戟 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "cured owlbear pelt" +msgid_plural "cured owlbear pelts" +msgstr[0] "硬化枭熊毛皮" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +1" -msgid_plural "glaive +1s" -msgstr[0] "長柄刀 +1" +#. ~ Description for {'str': 'cured owlbear pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" +" and treated to prevent decay. It could be tanned and transformed into " +"usable fur pelts." +msgstr "一张卷起来的硬化枭熊毛皮。相比生皮去除了多余的皮毛和残留肌肉脂肪组织,并且进行了防腐处理。依旧需要鞣制和处理才能变成可使用的毛皮。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "glaive +2" -msgid_plural "glaive +2s" -msgstr[0] "長柄刀 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "owlbear fur pelt" +msgid_plural "owlbear fur pelts" +msgstr[0] "枭熊毛皮" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +1" -msgid_plural "naginata +1s" -msgstr[0] "薙刀 +1" +#. ~ Description for {'str': 'owlbear fur pelt'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +msgstr "这是由枭熊做成的毛皮,可以用来制造非常保暖的衣物。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "naginata +2" -msgid_plural "naginata +2s" -msgstr[0] "薙刀 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone" +msgid_plural "dragon bones" +msgstr[0] "龙骨" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +1" -msgid_plural "mace +1s" -msgstr[0] "硬頭錘 +1" +#. ~ Description for {'str': 'dragon bone'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A bone from a dragon! Even on its own, these bones make an excellent " +"material for weapons. However, something tells you that the bones hide more" +" secrets than just that." +msgstr "一块龙骨!即使单独使用,这些骨头也是制作武器的极佳材料。然而,有些直觉告诉你,这些骨头隐藏的秘密远不止于此。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "mace +2" -msgid_plural "mace +2s" -msgstr[0] "硬頭錘 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "dragon bone shard" +msgid_plural "dragon bone shards" +msgstr[0] "龙骨碎片" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +1" -msgid_plural "morningstar +1s" -msgstr[0] "流星錘 +1" +#. ~ Description for {'str': 'dragon bone shard'} +#: data/mods/Magical_Nights/items/materials.json +msgid "A small shard of dragon bone, shaped almost like a shard of porcelain." +msgstr "一小块龙骨碎片,形状几乎像一片瓷器碎片。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "morningstar +2" -msgid_plural "morningstar +2s" -msgstr[0] "流星錘 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "bulette plate" +msgid_plural "bulette plates" +msgstr[0] "鯊蜥獸甲片" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +1" -msgid_plural "jian +1s" -msgstr[0] "中式劍 +1" +#. ~ Description for bulette plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." +msgstr "從鯊蜥獸頭部後面撬出來的大型甲片,可用來製作盾牌跟護甲。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "jian +2" -msgid_plural "jian +2s" -msgstr[0] "中式劍 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" +msgstr[0] "惡魔幾丁質塊" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +1" -msgid_plural "scimitar +1s" -msgstr[0] "彎刀 +1" +#. ~ Description for {'str': 'chunk of demon chitin', 'str_pl': 'chunks of +#. demon chitin'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." +msgstr "一塊惡魔蜘蛛的外骨骼。質輕且非常耐用,並且可能具有一些魔法特性。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "scimitar +2" -msgid_plural "scimitar +2s" -msgstr[0] "彎刀 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "demon chitin plate" +msgid_plural "demon chitin plates" +msgstr[0] "惡魔幾丁質板" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +1" -msgid_plural "estoc +1s" -msgstr[0] "穿甲劍 +1" +#. ~ Description for demon chitin plate +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A large piece of demon spider exoskeleton, painstakingly cut from the corpse" +" of an adult demon spider. A plate of this size can be used to create armor" +" plating." +msgstr "一大片惡魔蜘蛛的外骨骼,從成年惡魔蜘蛛的屍體細心地割下。這種尺寸的板可用於製造裝甲板。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "estoc +2" -msgid_plural "estoc +2s" -msgstr[0] "穿甲劍 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of orichalcum" +msgid_plural "lumps of orichalcum" +msgstr[0] "山铜块" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +1" -msgid_plural "arming sword +1s" -msgstr[0] "騎士劍 +1" +#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." +msgstr "一块未经过处理的山铜。需要先将其打造成锭才能进一步使用。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "arming sword +2" -msgid_plural "arming sword +2s" -msgstr[0] "騎士劍 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "sliver of orichalcum" +msgid_plural "slivers of orichalcum" +msgstr[0] "山铜片" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +1" -msgid_plural "broadsword +1s" -msgstr[0] "闊劍 +1" +#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of +#. orichalcum'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A sliver of orichalcum broken from a larger piece. Needs to be reformed " +"into an ingot to be useful." +msgstr "一块未经过处理的山铜碎片。需要先将其打造成锭才能进一步使用。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "broadsword +2" -msgid_plural "broadsword +2s" -msgstr[0] "闊劍 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" +msgstr[0] "山铜锭" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +1" -msgid_plural "battle axe +1s" -msgstr[0] "戰斧 +1" +#. ~ Description for orichalcum ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " +"used for various blacksmithing tasks." +msgstr "一块山铜锭。约有3x7x12厘米大小,能够被用来锻造成各种物品。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "battle axe +2" -msgid_plural "battle axe +2s" -msgstr[0] "戰斧 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "liquid mercury" +msgid_plural "liquid mercury" +msgstr[0] "液态汞" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +1" -msgid_plural "cavalry sabre +1s" -msgstr[0] "騎兵軍刀 +1" +#. ~ Description for {'str_sp': 'liquid mercury'} +#: data/mods/Magical_Nights/items/materials.json +msgid "Elemental liquid mercury. Known for its use in thermometers." +msgstr "液态的汞元素,以其在温度计中的使用而闻名。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cavalry sabre +2" -msgid_plural "cavalry sabre +2s" -msgstr[0] "騎兵軍刀 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "lump of mithril" +msgid_plural "lumps of mithril" +msgstr[0] "秘银锭" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +1" -msgid_plural "crowbar +1s" -msgstr[0] "撬棍 +1" +#. ~ Description for {'str': 'lump of mithril', 'str_pl': 'lumps of mithril'} +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"A lump of raw mithril. Needs to be reformed into an ingot to be useful." +msgstr "一块未经过处理的秘银。需要先将其打造成锭才能进一步使用。" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "crowbar +2" -msgid_plural "crowbar +2s" -msgstr[0] "撬棍 +2" +#: data/mods/Magical_Nights/items/materials.json +msgid "mithril ingot" +msgid_plural "mithril ingots" +msgstr[0] "秘银锭" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +1" -msgid_plural "cutlass +1s" -msgstr[0] "海盜彎刀 +1" +#. ~ Description for mithril ingot +#: data/mods/Magical_Nights/items/materials.json +msgid "" +"An ingot of mithril. About 3cm by 7cm by 12cm in size, ready to be used for" +" various blacksmithing tasks." +msgstr "一块秘银锭。约有3x7x12厘米大小,能够被用来锻造成各种物品。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "cutlass +2" -msgid_plural "cutlass +2s" -msgstr[0] "海盜彎刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Mjölnir" +msgid_plural "Mjölnirs" +msgstr[0] "雷神錘" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +1" -msgid_plural "fire axe +1s" -msgstr[0] "消防斧 +1" +#. ~ Description for {'str': 'Mjölnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " +"mountains with a single blow. You feel the power of Asgard coursing through" +" the hammer." +msgstr "妙尔尼尔,传说中雷神索尔使用的锤子。据传只要一击就能把整座大山夷为平地。你能通过锤子感受到来自仙宫阿斯加德的力量。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "fire axe +2" -msgid_plural "fire axe +2s" -msgstr[0] "消防斧 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "永恆之槍" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +1" -msgid_plural "katana +1s" -msgstr[0] "武士刀 +1" +#. ~ Description for {'str': 'Gungnir'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " +"perfectly hitting any target regardless of the wielder's strength or skill." +" If feels like Odin's protecting you." +msgstr "" +"冈格尼尔,传说中北欧众神之父奥丁使用的长矛。据传它是完美的长矛,无论持用者的力量或技能如何,它都能完美地击中任何目标。拿着它让你有种被奥丁守护的感觉。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "katana +2" -msgid_plural "katana +2s" -msgstr[0] "武士刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gram" +msgid_plural "Grams" +msgstr[0] "Gram,胜利之剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +1" -msgid_plural "combat knife +1s" -msgstr[0] "戰鬥刀 +1" +#. ~ Description for {'str': 'Gram'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " +"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " +"the edge is impeccable." +msgstr "古拉姆,传说中英雄齐格鲁德使用的魔剑。据传是斩杀传说中恶龙法夫尼尔的剑。据说曾将侏儒雷金的铁砧劈成两半,它的剑刃无懈可击。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "combat knife +2" -msgid_plural "combat knife +2s" -msgstr[0] "戰鬥刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "勝利之劍" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +1" -msgid_plural "hunting knife +1s" -msgstr[0] "獵刀 +1" +#. ~ Description for {'str': 'Laevateinn'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " +"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" +" himself." +msgstr "" +"一柄北欧神话丰饶之神弗雷与巨人苏尔特所使用的魔剑,又名烈焰之剑、胜利之剑、炎之魔剑。传说中欺骗之神(亦是火神)洛基使用的魔杖,所以又名灾厄之杖,在《洛基的吵骂》中,洛基责骂弗雷因美色丢失了此武器,据说是由洛基从冥界海拉城门上拔出来的。传说中这把剑永远燃烧着火痛名它的光芒如同太阳程耀眼,于请神的黄昏战结束时苏尔特持此剑焚毁了整个世界,后下落不明。它充满了神秘的魔力,来自欺诈之神自己的魔力。" -#: data/mods/Magiclysm/items/enchanted_melee.json -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "hunting knife +2" -msgid_plural "hunting knife +2s" -msgstr[0] "獵刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum combat knife" +msgid_plural "orichalcum combat knives" +msgstr[0] "山铜战术匕首" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +1" -msgid_plural "survival knife +1s" -msgstr[0] "生存者戰鬥刀 +1" +#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum +#. combat knives'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the combat knife that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this knife " +"also has a thinner blade, which shaves off some weight." +msgstr "一把由山铜而不是钢材制成的战术匕首。山铜制品比钢更锋利,更容易维护,虽然密度和钢一样,但它的刀刃更薄,减少了自身的重量。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "survival knife +2" -msgid_plural "survival knife +2s" -msgstr[0] "生存者戰鬥刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum longsword" +msgid_plural "orichalcum longswords" +msgstr[0] "山铜长剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +1" -msgid_plural "trench knife +1s" -msgstr[0] "雙刃短刀 +1" +#. ~ Description for {'str': 'orichalcum longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of orichalcum instead of steel. " +"Sharper and easier to maintain than steel while just as dense, this " +"longsword also has a thinner blade, which shaves off some weight." +msgstr "一把由山铜而不是钢材制成的长剑。山铜制品比钢更锋利,更容易维护,虽然密度和钢一样,但它的剑刃更薄,减少了自身的重量。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "trench knife +2" -msgid_plural "trench knife +2s" -msgstr[0] "雙刃短刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "orichalcum fire axe" +msgid_plural "orichalcum fire axes" +msgstr[0] "山铜消防斧" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +1" -msgid_plural "kris +1s" -msgstr[0] "馬來短劍 +1" +#. ~ Description for {'str': 'orichalcum fire axe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A fire axe made with orichalcum instead of steel. This makes it possible to" +" chop through harder materials, and in the very well-funded fire stations is" +" preferred." +msgstr "一把由山铜而不是钢材制成的消防斧。这让它能够砍开更坚硬的材质,成为资金非常充足的消防局的首选消防斧。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kris +2" -msgid_plural "kris +2s" -msgstr[0] "馬來短劍 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone longsword" +msgid_plural "dragonbone longswords" +msgstr[0] "龙骨长剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +1" -msgid_plural "kukri +1s" -msgstr[0] "反曲刀 +1" +#. ~ Description for {'str': 'dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "一种由龙骨制成的长剑变种。它拥有极高的威力,同时毫不牺牲耐久性。甚至优于星陨矿,并且你隐约感觉到,这还不是它的最终形态。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "kukri +2" -msgid_plural "kukri +2s" -msgstr[0] "反曲刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone battleaxe" +msgid_plural "dragonbone battleaxes" +msgstr[0] "龙骨战斧" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +1" -msgid_plural "nodachi +1s" -msgstr[0] "野太刀 +1" +#. ~ Description for {'str': 'dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone. This makes for a " +"very powerful blade without sacrificing durability. Even better than " +"orichalcum, and you can sense that this isn't even its final form." +msgstr "一种由龙骨制成的战斧变种。它拥有极高的威力,同时毫不牺牲耐久性。甚至优于星陨矿,并且你隐约感觉到,这还不是它的最终形态。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "nodachi +2" -msgid_plural "nodachi +2s" -msgstr[0] "野太刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone qiang" +msgid_plural "dragonbone qiangs" +msgstr[0] "龙骨长枪" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +1" -msgid_plural "pickaxe +1s" -msgstr[0] "十字鎬 +1" +#. ~ Description for {'str': 'dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "一种由龙骨制成的长枪变种。它拥有极高的威力,同时毫不牺牲耐久性。甚至优于星陨矿,并且你隐约感觉到,这还不是它的最终形态。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pickaxe +2" -msgid_plural "pickaxe +2s" -msgstr[0] "十字鎬 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "dragonbone tachi" +msgid_plural "dragonbone tachis" +msgstr[0] "龙骨太刀" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +1" -msgid_plural "pike +1s" -msgstr[0] "長柄槍 +1" +#. ~ Description for {'str': 'dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone. This makes for a very " +"powerful blade without sacrificing durability. Even better than orichalcum," +" and you can sense that this isn't even its final form." +msgstr "一种由龙骨制成的太刀变种。它拥有极高的威力,同时毫不牺牲耐久性。甚至优于星陨矿,并且你隐约感觉到,这还不是它的最终形态。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "pike +2" -msgid_plural "pike +2s" -msgstr[0] "長柄槍 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "Gaul Maraz" +msgid_plural "Gaul Marazs" +msgstr[0] "盖尔玛拉兹" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +1" -msgid_plural "rapier +1s" -msgstr[0] "護手刺劍 +1" +#. ~ Description for {'str': 'Gaul Maraz'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"An impressively ornate golden warhammer with a sapphire and a ruby embedded " +"within. The engraved words on it appear to be in some strange mix of " +"ancient French and German. You can sense a faint magic aura being emitted " +"by it, and picking up the weapon gives you the distinct impression that " +"there's even more power within laying dormant. If only you could harness " +"that power and awaken it once more…" +msgstr "" +"一把令人印象深刻的华丽金色战锤,镶嵌着蓝宝石和红宝石。上面刻着的文字似乎是古法语和古德语的某种奇怪混合体。你可以感觉到它散发出微弱的魔法光环,拿起武器会给你一种确凿的印象,即更多的力量还在休眠中。要是你能将其驾驭,再一次唤醒它就好了......" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "rapier +2" -msgid_plural "rapier +2s" -msgstr[0] "護手刺劍 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone longsword" +msgid_plural "acid-infused dragonbone longswords" +msgstr[0] "酸液注入的龙骨长剑" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +1" -msgid_plural "tanto +1s" -msgstr[0] "短刀 +1" +#. ~ Description for {'str': 'acid-infused dragonbone longsword'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the longsword that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "龙骨长剑的一种变体,由龙骨制成,内部注入了黑龙的酸性火焰。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "tanto +2" -msgid_plural "tanto +2s" -msgstr[0] "短刀 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone battleaxe" +msgid_plural "acid-infused dragonbone battleaxes" +msgstr[0] "酸液注入的龙骨战斧" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +1" -msgid_plural "wakizashi +1s" -msgstr[0] "脇差 +1" +#. ~ Description for {'str': 'acid-infused dragonbone battleaxe'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the battleaxe that is made of dragonbone, now with the acidic " +"ire of a black dragon imbued within." +msgstr "龙骨战斧的一种变体,由龙骨制成,内部注入了黑龙的酸性火焰。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "wakizashi +2" -msgid_plural "wakizashi +2s" -msgstr[0] "脇差 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone qiang" +msgid_plural "acid-infused dragonbone qiangs" +msgstr[0] "酸液注入的龙骨长枪" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +1" -msgid_plural "zweihänder +1s" -msgstr[0] "德國雙手劍 +1" +#. ~ Description for {'str': 'acid-infused dragonbone qiang'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the qiang that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "龙骨长枪的一种变体,由龙骨制成,内部注入了黑龙的酸性火焰。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "zweihänder +2" -msgid_plural "zweihänder +2s" -msgstr[0] "德國雙手劍 +2" +#: data/mods/Magical_Nights/items/melee.json +msgid "acid-infused dragonbone tachi" +msgid_plural "acid-infused dragonbone tachis" +msgstr[0] "酸液注入的龙骨太刀" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +1" -msgid_plural "khopesh +1s" -msgstr[0] "霍佩什彎刀 +1" +#. ~ Description for {'str': 'acid-infused dragonbone tachi'} +#: data/mods/Magical_Nights/items/melee.json +msgid "" +"A variant of the tachi that is made of dragonbone, now with the acidic ire " +"of a black dragon imbued within." +msgstr "龙骨太刀的一种变体,由龙骨制成,内部注入了黑龙的酸性火焰。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "khopesh +2" -msgid_plural "khopesh +2s" -msgstr[0] "霍佩什彎刀 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "greatclub" +msgid_plural "greatclubs" +msgstr[0] "巨木棒" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +1" -msgid_plural "xiphos +1s" -msgstr[0] "希臘劍 +1" +#. ~ Description for greatclub +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A stout knotty club with a large knob at the top. While it's very heavy, " +"it's a very effective weapon in the hands of a strong opponent." +msgstr "一根顶端有个十分粗壮疙瘩的坚固木棍。虽然它很重,但在力量强大的人手中,它是非常有效的武器。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "xiphos +2" -msgid_plural "xiphos +2s" -msgstr[0] "希臘劍 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "wood trident" +msgid_plural "wood tridents" +msgstr[0] "木制三叉戟" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +1" -msgid_plural "dao +1s" -msgstr[0] "中式刀 +1" +#. ~ Description for wood trident +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"A wooden melee weapon with a hand-forged steel forked spearhead attached to " +"the end. It can be used for stabbing opponents either in close-range or as " +"a thrown weapon, and in the right hands can also readily disarm opponents." +msgstr "" +"这根木制近战武器的顶端安装了一个手工锻造的三叉钢叉。它可以用来近距离穿刺敌人,也可以作为投掷武器使用,在知道如何正确使用的人手中可以很容易地解除对手的武装。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "dao +2" -msgid_plural "dao +2s" -msgstr[0] "中式刀 +2" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "barbed javelin" +msgid_plural "barbed javelins" +msgstr[0] "带刺标枪" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" -msgstr[0] "" +#. ~ Description for {'str': 'barbed javelin'} +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "" +"This weapon measures about 3 feet in length and is fletched like an arrow " +"for better accuracy. The business end of the javelin has wicked-looking " +"barbs which could cause significant bleeding." +msgstr "这根大约有3英尺长的标枪上像箭一样安装了尾翼,提高了命中率。它的尖端有个看上去很邪恶的倒钩,能够导致大量出血。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/monster_weapons.json +msgid "Fake gun that fires barbed javelins." +msgstr "射出带刺标枪的假枪。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Biomancer spear" -msgid_plural "Biomancer spears" -msgstr[0] "生機術士骨矛" +#: data/mods/Magical_Nights/items/mutagen.json +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" +msgstr[0] "浓缩魔力血清" -#. ~ Description for {'str': 'Biomancer spear'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for concentrated mana serum +#: data/mods/Magical_Nights/items/mutagen.json msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." -msgstr "奇異的骨製矛頭裝在粗壯的木桿上。矛頭底部鑲嵌著生機術士符文。" +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" +msgstr "一种高度浓缩的魔法药剂。你不太确定它的效果都有什么……" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" -msgstr[0] "科技巫師工具棒" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" +msgstr[0] "丧尸巫毒娃娃" -#. ~ Description for {'str': 'Technomancer toolbar'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for zombie voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convienent package. There is a Technomancer rune " -"embedded in the hammerhead." -msgstr "這棍棒在橇棍前頭上整合了堅固的活動扳手,以及在鐵鎚上整合了許多適合的工具套組。在鎚頭上鑲嵌著科技巫師符文。" +"A remarkably accurate effigy of an undead human, including pieces of bone " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "一個維妙維肖的不死人類模型,包括骨頭和器官。死靈魔法延遲了它的腐爛,但不會永遠持續下去。使用附帶的針刺穿它可以迫使它為你服務。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Magus staff" -msgid_plural "Magus staves" -msgstr[0] "祆教徒法杖" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" +msgstr[0] "骨片巫毒娃娃" -#. ~ Description for {'str': 'Magus staff', 'str_pl': 'Magus staves'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for ossified voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A quarterstaff with runes carved into it and two glass jars, heat-tempered " -"and infused with mana for durability, to act as mana receptacles. There are" -" two Magi runes embedded at the tips." -msgstr "雕刻符文的長棍,附有兩個玻璃罐。經過淬火回火後注入法力提升其耐用度。尖端鑲嵌著兩個祆教徒符文。" +"A remarkably accurate effigy of an undead human covered with bone, including" +" pieces of organs. Necromantic magic delays immediate rot, but it won't " +"last forever. Piercing it with the attached needle could compel it to serve" +" you." +msgstr "一個維妙維肖被骨頭包覆的不死人類模型,包括器官。死靈魔法延遲了它的腐爛,但不會永遠持續下去。使用附帶的針刺穿它可以迫使它為你服務。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" -msgstr[0] "熱力學者焰形劍" +#: data/mods/Magical_Nights/items/necromancy.json +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" +msgstr[0] "美洲狮巫毒娃娃" -#. ~ Description for {'str': 'Kelvinist flamberge'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for cougar voodoo doll +#: data/mods/Magical_Nights/items/necromancy.json msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." -msgstr "有著如火焰般波浪形狀劍身的雙手大劍。在劍柄端頭上鑲嵌著熱力學者符文。" +"A remarkably accurate effigy of an undead cougar, complete with fur, bones, " +"and organs. Necromantic magic delays immediate rot, but it won't last " +"forever. Piercing it with the attached needle could compel it to serve you." +msgstr "一個維妙維肖的不死美洲獅模型,包括毛皮、骨骼和器官。死靈魔法延遲了它的腐爛,但不會永遠持續下去。使用附帶的針刺穿它可以迫使它為你服務。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" -msgstr[0] "塑風者銅斧" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of fireballs" +msgid_plural "wands of fireballs" +msgstr[0] "火球法杖" -#. ~ Description for {'str': 'Stormshaper axe'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of +#. fireballs'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." -msgstr "有著銀飾和木製手柄的鍛造銅斧。斧眼中鑲嵌著風暴塑形者的符文。" +"A classic, this wand shoots fireballs without fail. A more skilled " +"Kelvinist could cast them more efficiently, though." +msgstr "這是一款經典的魔杖,可以不失誤地施展火球術。技藝熟練的熱力學者可以更有效地使用它。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Animist athame" -msgid_plural "Animist athames" -msgstr[0] "泛靈論者儀式刀" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "wand of magic missiles" +msgid_plural "wands of magic missiles" +msgstr[0] "魔法飞弹法杖" -#. ~ Description for {'str': 'Animist athame'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of +#. magic missiles'} +#: data/mods/Magical_Nights/items/obsolete.json msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." -msgstr "鋼製的儀式用小刀,泛靈論者在召喚時用來放血的器具。他們學派的符文正鑲嵌在護手上。" +"A classic, this wand shoots magic missiles without fail. A more skilled " +"Magus could cast them more efficiently, though." +msgstr "這是一款經典的魔杖,可以不失誤地發射魔法飛彈。技藝熟練的祆教徒可以更有效地使用它。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" -msgstr[0] "弹簧长杖(甩棍)" +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE! Blood Power Generator CBM" +msgid_plural "OBSOLETE! Blood Power Generator CBMs" +msgstr[0] "过时!血液燃料电池CBM" -#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Extend to staff" -msgstr "展开" +#. ~ Description for {'str': 'OBSOLETE! Blood Power Generator CBM'} +#: data/mods/Magical_Nights/items/obsolete.json +msgid "OBSOLETE ITEM! Only exists for save integrity" +msgstr "过时物品! 仅为保存完整性存在。" -#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You snap open your springstaff into staff mode." -msgstr "你将弹簧长杖展开成长杖模式。" +#: data/mods/Magical_Nights/items/potions.json +msgid "lesser mana potion" +msgid_plural "lesser mana potions" +msgstr[0] "次等魔力药剂" -#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': -#. 'springstaves(baton)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': 'lesser mana potion'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." -msgstr "这种多用途武器使用科技魔法增强过的弹簧以保持长杖两端在甩棍模式时收回。激活以展开。" +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" +msgstr "你無法買到這東西,所以你需要留下來直到打最後首領!正確來說,你也不要在那裡使用。" -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" -msgstr[0] "弹簧长杖(长杖)" +#: data/mods/Magical_Nights/items/potions.json +msgid "mana potion" +msgid_plural "mana potions" +msgstr[0] "魔力药剂" -#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "Retract to baton" -msgstr "折叠" +#: data/mods/Magical_Nights/items/potions.json +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "高等魔力药剂" -#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'}. -#: data/mods/Magiclysm/items/enchanted_melee.json -msgid "You collapse your springstaff into baton mode." -msgstr "你将弹簧长杖折叠成甩棍模式。" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" +msgstr[0] "猫之优雅药剂" -#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': -#. 'springstaves(staff)'} -#: data/mods/Magiclysm/items/enchanted_melee.json +#. ~ Description for {'str': "potion of Cat's Grace", 'str_pl': "potions of +#. Cat's Grace"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." -msgstr "这种多用途武器使用科技魔法增强过的弹簧以保持长杖两端在甩棍模式时收回。激活以折叠。" - -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube" -msgid_plural "heat cubes" -msgstr[0] "热立方" +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." +msgstr "貓之優雅藥劑,能夠增加你的敏捷 10 分鐘。" -#. ~ Use action menu_text for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "Activate torch mode" -msgstr "启动火炬模式" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" +msgstr[0] "巨魔之力药剂" -#. ~ Use action msg for heat cube. -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': "potion of Ogre's Strength", 'str_pl': "potions +#. of Ogre's Strength"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"You push the torch button and the cube emits a large flame from the top, one" -" that does radiate heat, but won't burn anything." -msgstr "你按下火炬按钮,热立方上方随即喷出了一道巨大的火焰。这道火焰会散发热量,但是不会引燃其它物品。" +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." +msgstr "食人魔之力藥劑,能夠增加你的力量 10 分鐘。" -#. ~ Description for heat cube -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "鹰眼药剂" + +#. ~ Description for {'str': "potion of Eagle's Sight", 'str_pl': "potions of +#. Eagle's Sight"} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A smooth steel cube the size of your fist. Several buttons on the sides " -"activate the powers of the cube." -msgstr "一个有你拳头大的光滑钢制立方体,上面有数个按钮,能够启动热立方的不同功能。" +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." +msgstr "鷹之視野藥劑。能夠增加你的感知 10 分鐘。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "heat cube (torch on)" -msgid_plural "heat cubes (torch on)" -msgstr[0] "热立方(点亮)" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" +msgstr[0] "狐之狡黠药剂" -#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The torch flame is extinguished." -msgstr "热立方的火焰熄灭了。" +#. ~ Description for {'str': "potion of Fox's Cunning", 'str_pl': "potions of +#. Fox's Cunning"} +#: data/mods/Magical_Nights/items/potions.json +msgid "" +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." +msgstr "狐之狡滑藥劑,能夠增加你的智力 10 分鐘。" -#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes -#. (torch on)'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" +msgstr[0] "扭曲恢复药剂" + +#. ~ Description for {'str': 'potion of Twisted Restoration', 'str_pl': +#. 'potions of Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"The heat cube in the torch configuration, where it emits warmth and a bright" -" flame that does not burn." -msgstr "热立方目前处于火炬模式,正发出一道温暖的闪耀火焰,却不会引燃其它物品。" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal." +msgstr "這種惡臭的液體用加速你的心跳達到危險等級的方式來模擬不死生物的再生。在危險或危急情況下飲用可能會致命。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "skeleton key of opening" -msgid_plural "skeleton keys of opening" -msgstr[0] "魔法万能钥匙" +#: data/mods/Magical_Nights/items/potions.json +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" +msgstr[0] "改良扭曲恢复药剂" -#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton -#. keys of opening'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'potion of Improved Twisted Restoration', +#. 'str_pl': 'potions of Improved Twisted Restoration'} +#: data/mods/Magical_Nights/items/potions.json msgid "" -"A small gold skeleton key. You can activate it to unlock locked things." -msgstr "一把金制万能钥匙。你可以用它来开锁。" +"This foul-smelling liquid simulates undead regeneration by accelerating your" +" heart to dangerous levels. Drinking this in danger or at critical " +"condition may be lethal. Improved infusion techniques lessen the strain of " +"the process." +msgstr "" +"這種惡臭的液體用加速你的心跳達到危險等級的方式來模擬不死生物的再生。在危險或危急情況下飲用可能會致命。改良的灌注技術讓這過程稍微減輕了壓力。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "everburning torch" -msgid_plural "everburning torches" -msgstr[0] "不灭火炬" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" +msgstr[0] "《黑龍:沼澤廢墟》的副本" -#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning -#. torches'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies +#. of Black Dragons: Swamp Ruins'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality engraved wooden torch. On command, the tip bursts " -"into flame and produces a fair amount of light. It will burn forever." -msgstr "这是一把优质的木制雕花火炬。你可以随意令其燃烧,用它照亮四周,而它永远不会烧尽。" +"This book details black dragons: The most evil of dragons, who live in ruins" +" generally in swamps. Immune to acid and breathe acid. The book also " +"details how to prepare its hide and craft various armors that make use of " +"some of its acid resistance." +msgstr "" +"這本書詳細介紹了黑龍:最邪惡的龍,通常生活在沼澤中的廢墟中。對酸免疫並且會酸性吐息。這本書還詳細介紹如何處理它的皮革,並利用它的耐酸性來製作各種護甲。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "endless flask" -msgid_plural "endless flasks" -msgstr[0] "無盡瓶" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Beginner's Guide to Alchemy" +msgid_plural "copies of A Beginner's Guide to Alchemy" +msgstr[0] "《煉金術初學指南》的副本" -#. ~ Use action msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" -msgstr "你打開瓶子,發現裡面充滿了甜美的、甜美的,威士忌!" +#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': +#. "copies of A Beginner's Guide to Alchemy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgstr "一本關於液態魔法技藝的平裝魔典,但不包括酒類。" -#. ~ Use action not_ready_msg for {'str': 'endless flask'}. -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "The flask isn't done refilling yet." -msgstr "這瓶子還沒完成續滿。" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "A Soulbinder's Guide to Necromancy" +msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgstr[0] "《死靈法術的靈魂束縛者指南》的副本" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "enchanted tailor's kit" -msgid_plural "enchanted tailor's kits" -msgstr[0] "附魔裁縫工具" +#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': +#. "copies of A Soulbinder's Guide to Necromancy"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." +msgstr "一本平裝魔典,記述將不死生物靈魂綁定到玩偶的技藝,以及模仿它們的治療因子。" -#. ~ Description for enchanted tailor's kit -#: data/mods/Magiclysm/items/enchanted_misc.json +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" +msgstr[0] "魔法科技图解" + +#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of +#. Magitek Illustrated'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a high quality, engraved steel kit with a variety of needles, some " -"plastic spools for thread, some small scissors, even a small heating element" -" for melting and joining plastic. Use a tailor's kit to customize your " -"clothing and armor. This uses your tailoring skill. It also contains one " -"of those magic spiders that constantly, if slowly, makes new thread." +"A paperback tome for the art of combining modern technology with magic. " +"There is a disclaimer on the back: `Cannith Industries bears no " +"responsibility for malfunctions or accidents for any products mentioned " +"herein`." msgstr "" -"這是一個高品質的雕刻綱製工具盒,裝著各種針頭與一些纏繞縫線的塑膠線軸,一些小剪刀,甚至有小型的加熱元件,能夠融化與加工塑膠。使用裁縫工具能夠修改你的衣物與護甲。取決於你的裁縫技能。它也包含一隻魔法蜘蛛,會持續而緩慢地產出新的縫線。" +"一本平装本书籍,主题是将现代科技和魔法结合的技术。书背上有一段免责声明:“坎尼斯工业对使用本书所涉及的任何产品所引发的故障或事故不负任何责任”。" -#: data/mods/Magiclysm/items/enchanted_misc.json -msgid "spider box" -msgid_plural "spider boxes" -msgstr[0] "蜘蛛盒" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "The Weapons of Asgard and Beyond" +msgid_plural "copies of The Weapons of Asgard and Beyond" +msgstr[0] "阿斯加德之武" -#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} -#: data/mods/Magiclysm/items/enchanted_misc.json +#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': +#. 'copies of The Weapons of Asgard and Beyond'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"This is a small glass box that contains a spider that diligently works day " -"and night to produce silk thread that it stores in a reservoir you can open " -"and retrieve it from." -msgstr "这是一个装着一只蜘蛛的小玻璃盒。这只蜘蛛日以继夜地产出丝线并储存起来,你打开盒子便可以收集。" +"An ornate book which appears to be written in Norse runes. Based on the " +"detailed illustrations, it appears to contain information about crafting " +"numerous weapons used by various Gods." +msgstr "一本精美华丽的古书,似乎是用北欧符文写的。从书中详细的插图来看,它似乎包含了关于制造北欧众神所使用的各种武器的信息。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "Druid composite bow" -msgid_plural "Druid composite bows" -msgstr[0] "德魯伊合成弓" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" +msgstr[0] "与毒共煮" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of +#. Cooking with Poison'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A bow made of multiple materials to maximize energy efficiency. There are " -"two Druid runes embedded at the tips." -msgstr "一把采用多种材料复合制成以增加储能效率的弓。弓背两端镶嵌着两个德鲁伊符文。" +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." +msgstr "一本皮面精装书,封面上有个凸印的大锅图案。书中详细地描述了各种使用魔法净化食物的方法。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "M47A1 Techno-Medusa" -msgid_plural "M47A1 Techno-Medusae" -msgstr[0] "M47A1 科技魔法\"美杜莎\"左轮手枪" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" +msgstr[0] "传奇炼金者手册" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals +#. of Legend'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" -"caliber revolver aimed at survivalists. While Technomancy improves the " -"reliability with smaller cartridges, it is not as accurate as dedicated " -"caliber revolvers due to freebore." -msgstr "" -"一把经过魔法增强的菲利普斯和罗杰斯公司出品的 M47 " -"\"美杜莎\"左轮手枪,这把手枪是一把多口径左轮手枪,专为生存主义者定制。虽然科技魔法提高了手枪发射小口径子弹时的可靠性,但由于是滑膛发射,和对应口径的左轮手枪相比命中率还是略低。" +"A book with a brass coverplate. It professes to teach one how to make " +"magical metals such as Orichalcum. It is dry reading even for an alchemical" +" tome." +msgstr "一本有着黄铜板封面的书。它号称能够教人如何制造山铜等魔法金属。即使按照炼金术手册的标准来说,它也要更枯燥乏味。" -#: data/mods/Magiclysm/items/enchanted_ranged.json -msgid "gunblade" -msgid_plural "gunblades" -msgstr[0] "枪刃" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" +msgstr[0] "魔法生物防护手册" -#: data/mods/Magiclysm/items/enchanted_ranged.json +#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': +#. 'copies of Protection from Magical Beasts'} +#: data/mods/Magical_Nights/items/recipe_books.json msgid "" -"Constructed similarly to a falcata, this forward-sloping blade has a short-" -"barrel pump shotgun attached to the blade's spine for finishing blows or a " -"first strike." -msgstr "它的结构类似于一把伊比利亚短剑,这把向前倾斜的短刀上有一把短筒泵动式霰弹枪,连接在刀背上,以终结对手或先发打击。" - -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "copper magic ring" -msgid_plural "copper magic rings" -msgstr[0] "魔法銅戒指" +"A leatherbound book with a picture of a shield holding back dragonfire on " +"the cover. There are many ways to turn monster skins and hides into " +"protective equipment inside." +msgstr "一本皮革装订的书,封面上画着一个盾牌挡住了龙炎。里面描述了把各种怪物毛皮制成防护装备的方法。" -#. ~ Description for copper magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic copper magic ring." -msgstr "一枚普通的魔法銅戒指。" +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "Enchanter's Guidebook" +msgid_plural "copies of Enchanter's Guidebooks" +msgstr[0] "附魔师指南" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "magic ring" -msgid_plural "magic rings" -msgstr[0] "魔法戒指" +#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of +#. Enchanter's Guidebooks"} +#: data/mods/Magical_Nights/items/recipe_books.json +msgid "" +"A hefty textbook on the theory and practice of magically strengthening " +"weapons and tools." +msgstr "一本厚重的关于武器和工具附魔理论与实践的教科书。" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic silver magic ring." -msgstr "一枚普通的魔法銀戒指。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" +msgstr[0] "法術卷軸" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic gold magic ring." -msgstr "一枚普通的魔法金戒指。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" +msgstr[0] "魔力结晶卷轴" -#. ~ Description for magic ring -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A generic platinum magic ring." -msgstr "一枚普通的魔法鉑戒指。" +#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls +#. of Crystallize Mana'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"A proper wizard is always prepared, crystallize your mana for the future!" +msgstr "一名合格的巫师永远准备周全,把你的魔力结晶化以留待未来!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of blades" -msgid_plural "rings of blades" -msgstr[0] "刀刃戒指" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" +msgstr[0] "黑暗视觉卷轴" -#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of +#. Dark Sight'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"An ornate silver ring engraved with daggers that conjures a near perfect " -"throwing knife into your hand on activation." -msgstr "一枚雕有匕首的華麗銀戒指,使用後會幻化成一把在你手中近乎完美的飛刀。" +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" +msgstr "在此奧術之前黑暗無所遁藏。調整你的視覺成完美夜視。" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "eel ring" -msgid_plural "eel rings" -msgstr[0] "鳗鱼戒指" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" +msgstr[0] "隐身术卷轴" -#. ~ Description for eel ring -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of +#. Invisibility'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin silver band ring, depicting an eel coiled on itself. Allows you to " -"dodge an extra attack per turn." -msgstr "一个轻薄的银戒指,上面画着一条鳗鱼。让你每回合额外闪避一次攻击。" +"The light can not interact with you unless you want it to. Become " +"invisible!" +msgstr "没有你的允许,光将不会与你发生作用。隐身!" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "bicephalous eel ring" -msgid_plural "bicephalous eel rings" -msgstr[0] "双头鳗鱼戒指" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" +msgstr[0] "朦胧术卷轴" -#. ~ Description for {'str': 'bicephalous eel ring'} -#: data/mods/Magiclysm/items/enchanted_rings.json +#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls +#. of Obfuscated Body'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" -" you to dodge two extra attacks per turn." -msgstr "一个轻薄的金戒指,上面画着一条盘绕在自己身上的双头鳗鱼。让你每回合额外闪避两次攻击。" +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." +msgstr "一个魔法光环扭曲了你身体周围的光线,使你更容易闪避敌人的攻击。" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +1" -msgid_plural "rings of strength +1" -msgstr[0] "力量戒指 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" +msgstr[0] "全息换位术卷轴" -#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of -#. strength +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little stronger when you wear it." -msgstr "一枚銅戒指,戴上它會使你稍微強壯一點。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" +msgstr[0] "神圣惩击卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +2" -msgid_plural "rings of strength +2" -msgstr[0] "力量戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" +msgstr[0] "生命分流卷轴" -#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of -#. strength +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit stronger when you wear it." -msgstr "一枚銀戒指,戴上它會使你變得強壯。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" +msgstr[0] "心胜于痛卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +3" -msgid_plural "rings of strength +3" -msgstr[0] "力量戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" +msgstr[0] "召唤丧尸卷轴" -#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of -#. strength +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly stronger when you wear it." -msgstr "一枚金戒指,戴上它會使你變得非常強壯。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" +msgstr[0] "召唤骷髅卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of strength +4" -msgid_plural "rings of strength +4" -msgstr[0] "力量戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" +msgstr[0] "召唤飘浮碟卷轴" -#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of -#. strength +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much stronger when you wear it." -msgstr "一枚鉑戒指,戴上它會使你強壯許多。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" +msgstr[0] "召唤腐朽突袭兽卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +1" -msgid_plural "rings of dexterity +1" -msgstr[0] "敏捷戒指 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" +msgstr[0] "治疗轻伤卷轴" -#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of -#. dexterity +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little more agile when you wear it." -msgstr "一枚銅戒指,戴上它會使你稍微敏捷一點。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" +msgstr[0] "伤痛分流卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +2" -msgid_plural "rings of dexterity +2" -msgstr[0] "敏捷戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" +msgstr[0] "残暴之鞭卷轴" -#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of -#. dexterity +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit more agile when you wear it." -msgstr "一枚銀戒指,戴上它會使你變得敏捷。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" +msgstr[0] "扭曲强化卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +3" -msgid_plural "rings of dexterity +3" -msgstr[0] "敏捷戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" +msgstr[0] "酸液喷射卷轴" -#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of -#. dexterity +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you surprisingly more agile when you wear it." -msgstr "一枚金戒指,戴上它會使你變得非常敏捷。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" +msgstr[0] "肉身成袋卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of dexterity +4" -msgid_plural "rings of dexterity +4" -msgstr[0] "敏捷戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" +msgstr[0] "白骨之矛卷轴" -#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of -#. dexterity +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more agile when you wear it." -msgstr "一枚鉑戒指,戴上它會使你敏捷許多。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" +msgstr[0] "炽能冲击卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +1" -msgid_plural "rings of intelligence +1" -msgstr[0] "智力戒指 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" +msgstr[0] "魔法阅读灯卷轴" -#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of -#. intelligence +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more intelligent when you wear it." -msgstr "一枚銅戒指,戴上它會使你稍微聰明一點。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" +msgstr[0] "致盲闪光卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +2" -msgid_plural "rings of intelligence +2" -msgstr[0] "智力戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" +msgstr[0] "幽影攫抓卷轴" -#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of -#. intelligence +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more intelligent when you wear it." -msgstr "一枚銀戒指,戴上它會使你變得聰明。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" +msgstr[0] "保护光环卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +3" -msgid_plural "rings of intelligence +3" -msgstr[0] "智力戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" +msgstr[0] "藤蔓缠绕卷轴" -#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of -#. intelligence +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you surprisingly more intelligent when you wear it." -msgstr "一枚金戒指,戴上它會使你變得非常聰明。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" +msgstr[0] "树根穿刺卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of intelligence +4" -msgid_plural "rings of intelligence +4" -msgstr[0] "智力戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" +msgstr[0] "硬木投掷卷轴" -#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of -#. intelligence +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more intelligent when you wear it." -msgstr "一枚鉑戒指,戴上它會使你聰明許多。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" +msgstr[0] "自然之弓卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +1" -msgid_plural "rings of perception +1" -msgstr[0] "感知戒指 +1" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" +msgstr[0] "自然冥想卷轴" -#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of -#. perception +1'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that makes you a little more perceptive when you wear it." -msgstr "一枚銅戒指,戴上它會使你稍微感覺靈敏一點。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" +msgstr[0] "袋装猫咪卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +2" -msgid_plural "rings of perception +2" -msgstr[0] "感知戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" +msgstr[0] "大地之拳卷轴" -#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of -#. perception +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that makes you a good bit more perceptive when you wear it." -msgstr "一枚銀戒指,戴上它會使你變得感覺靈敏。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" +msgstr[0] "战争践踏卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +3" -msgid_plural "rings of perception +3" -msgstr[0] "感知戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" +msgstr[0] "坚如磐石卷轴" -#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of -#. perception +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that makes you eye-openingly more perceptive when you wear it." -msgstr "一枚金戒指,戴上它會使你的感覺變得非常靈敏。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" +msgstr[0] "碎片喷射卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of perception +4" -msgid_plural "rings of perception +4" -msgstr[0] "感知戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" +msgstr[0] "穿刺箭卷轴" -#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of -#. perception +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much more perceptive when you wear it." -msgstr "一枚鉑戒指,戴上它會使你感覺靈敏許多。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" +msgstr[0] "碎片风暴卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +3" -msgid_plural "rings of speed +3" -msgstr[0] "速度戒指 +3" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" +msgstr[0] "石之箭卷轴" -#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed -#. +3'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A copper ring that makes you a little faster when you wear it." -msgstr "一枚銅戒指,戴上它會使你稍微快速一點。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" +msgstr[0] "定点炎爆卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +5" -msgid_plural "rings of speed +5" -msgstr[0] "速度戒指 +5" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" +msgstr[0] "火焰之指卷轴" -#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed -#. +5'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A silver ring that makes you a good bit faster when you wear it." -msgstr "一枚銀戒指,戴上它會使你變得快速。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" +msgstr[0] "冰刺卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +7" -msgid_plural "rings of speed +7" -msgstr[0] "速度戒指 +7" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" +msgstr[0] "火球术卷轴" -#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed -#. +7'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A golden ring that makes you quite hasty when you wear it." -msgstr "一枚金戒指,戴上它會使你變得非常快速。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" +msgstr[0] "极寒喷射卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of speed +10" -msgid_plural "rings of speed +10" -msgstr[0] "速度戒指 +10" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" +msgstr[0] "燃烧之手卷轴" -#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed -#. +10'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "A platinum ring that makes you much faster when you wear it." -msgstr "一枚鉑戒指,戴上它會使你快速許多。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" +msgstr[0] "寒霜喷射卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +2" -msgid_plural "rings of protection +2" -msgstr[0] "防護戒指 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" +msgstr[0] "寒冷之触卷轴" -#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of -#. protection +2'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A copper ring that reduces some of the force of damage you take when you " -"wear it." -msgstr "一枚銅戒指,戴上它會使你受到的傷害力道降低一些。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" +msgstr[0] "冰上滑行卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +4" -msgid_plural "rings of protection +4" -msgstr[0] "防護戒指 +4" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" +msgstr[0] "白霜冲击卷轴" -#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of -#. protection +4'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A silver ring that appreciably reduces some of the force of damage you take " -"when you wear it." -msgstr "一枚銀戒指,戴上它會使你受到的傷害力道降低相當程度。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "冰盾卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +6" -msgid_plural "rings of protection +6" -msgstr[0] "防護戒指 +6" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" +msgstr[0] "霜甲卷轴" -#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of -#. protection +6'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A golden ring that greatly reduces some of the force of damage you take when" -" you wear it." -msgstr "一枚金戒指,戴上它會使你受到的傷害力道大幅降低。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" +msgstr[0] "魔法飞弹卷轴" -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "ring of protection +8" -msgid_plural "rings of protection +8" -msgstr[0] "防護戒指 +8" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" +msgstr[0] "相位门卷轴" -#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of -#. protection +8'} -#: data/mods/Magiclysm/items/enchanted_rings.json -msgid "" -"A platinum ring that vastly reduces some of the force of damage you take " -"when you wear it." -msgstr "一枚鉑戒指,戴上它會使你受到的傷害力道極大地降低。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" +msgstr[0] "重力井卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "magic token" -msgid_plural "magic tokens" -msgstr[0] "魔法代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" +msgstr[0] "奥术冲击卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "longsword token" -msgid_plural "longsword tokens" -msgstr[0] "長劍代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" +msgstr[0] "奥术闪电卷轴" -#. ~ Use action msg for longsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的長劍!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" +msgstr[0] "加速术卷轴" -#. ~ Description for longsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a longsword." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為長劍。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" +msgstr[0] "奥术光束卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "arming sword token" -msgid_plural "arming sword tokens" -msgstr[0] "騎士劍代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" +msgstr[0] "逃脱术卷轴" -#. ~ Use action msg for {'str': 'arming sword token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine arming sword!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的騎士劍!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" +msgstr[0] "猫之优雅卷轴" -#. ~ Description for {'str': 'arming sword token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case an arming sword." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為騎士劍。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" +msgstr[0] "鹰眼卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "broadsword token" -msgid_plural "broadsword tokens" -msgstr[0] "闊劍代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" +msgstr[0] "巨魔之力卷轴" -#. ~ Use action msg for broadsword token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine broadsword!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的闊劍!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" +msgstr[0] "狐之狡黠卷轴" -#. ~ Description for broadsword token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a broadsword." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為闊劍。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" +msgstr[0] "震颤电击卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "battleaxe token" -msgid_plural "battleaxe tokens" -msgstr[0] "戰斧代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" +msgstr[0] "闪电束卷轴" -#. ~ Use action msg for {'str': 'battleaxe token'}. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine battle axe!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的戰斧!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" +msgstr[0] "风击术卷轴" -#. ~ Description for {'str': 'battleaxe token'} -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a battle axe." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為戰斧。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" +msgstr[0] "风行术卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "pike token" -msgid_plural "pike tokens" -msgstr[0] "長柄槍代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" +msgstr[0] "风暴之锤卷轴" -#. ~ Use action msg for pike token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的長柄槍!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" +msgstr[0] "祝福卷轴" -#. ~ Description for pike token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a pike." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為長柄槍。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" +msgstr[0] "光明之刃卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "mace token" -msgid_plural "mace tokens" -msgstr[0] "硬頭錘代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" +msgstr[0] "心灵装甲卷轴" -#. ~ Use action msg for mace token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine mace!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的硬頭錘!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" +msgstr[0] "魔法灯卷轴" -#. ~ Description for mace token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a mace." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為硬頭錘。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" +msgstr[0] "魔能转换术卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" -msgstr[0] "木杖代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" +msgstr[0] "电击术卷轴" -#. ~ Use action msg for quarterstaff token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a pristine quarterstaff!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新的木杖!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgstr[0] "次级隧穿术卷轴" -#. ~ Description for quarterstaff token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a quarterstaff." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為木杖。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" +msgstr[0] "突触刺激卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "hammer token" -msgid_plural "hammer tokens" -msgstr[0] "鐵鎚代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" +msgstr[0] "激光术卷轴" -#. ~ Use action msg for hammer token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的鐵鎚!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" +msgstr[0] "魔剑苏生卷轴" -#. ~ Description for hammer token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a hammer." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為鐵鎚。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" +msgstr[0] "召唤镜像卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" -msgstr[0] "螺絲起子套組代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" +msgstr[0] "闪电冲击卷轴" -#. ~ Use action msg for screwdriver set token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的螺絲起子套組!" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" +msgstr[0] "死灵凝视卷轴" -#. ~ Description for screwdriver set token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" +msgstr[0] "净化之种卷轴" + +#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls +#. of Purification Seed'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a screwdriver." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為螺絲起子。" +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." +msgstr "你召喚大地的贈禮,它將淨化水質。越高的等級能產生越多的種子。" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "toolbox token" -msgid_plural "toolbox tokens" -msgstr[0] "工具箱代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" +msgstr[0] "喷嚏激光术卷轴" -#. ~ Use action msg for toolbox token. -#: data/mods/Magiclysm/items/enchanted_tokens.json +#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': +#. 'Scrolls of Optical Sneeze Beam'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine toolbox!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的工具箱!" +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." +msgstr "你将体内的生化电池过载,从你的脸上射出半定向的激光光束。" -#. ~ Description for toolbox token -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a toolbox." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為工具箱。" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lava Bomb" +msgid_plural "Scrolls of Lava Bomb" +msgstr[0] "熔岩炸弹卷轴" -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "crowbar token" -msgid_plural "crowbar tokens" -msgstr[0] "撬棍代幣" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" +msgstr[0] "防酸术卷轴" -#. ~ Use action msg for crowbar token. -#: data/mods/Magiclysm/items/enchanted_tokens.json -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" -msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的撬棍!" +#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls +#. of Acid Resistance'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This spell creates an invisible aura to protect you from acid." +msgstr "这法术能产生一个肉眼无法看见的防酸光环保护你。" -#. ~ Description for crowbar token -#: data/mods/Magiclysm/items/enchanted_tokens.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" +msgstr[0] "闪电雷暴卷轴" + +#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls +#. of Lightning Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A large silver coin that, when activated by uttering the word on the back, " -"turns into the item pictured on the front, in this case a crowbar." -msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為撬棍。" +"This scroll details how a spell called 'Lightning Blast' which is commonly " +"used among Stormshapers can be altered to become much more powerful, at a " +"much higher mana cost." +msgstr "這卷軸詳細描述了如何耗用更多的法力來改變塑風者常用的「閃電爆破」法術,讓它變成更強大破壞力的法術。" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" +msgstr[0] "沃血重萌卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" +msgstr[0] "舍己济人卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +1" -msgid_plural "scalpels +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" +msgstr[0] "石肤术卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "scalpel +2" -msgid_plural "scalpels +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" +msgstr[0] "石柱术卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +1" -msgid_plural "butcher knives +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" +msgstr[0] "麻痹毒刺卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butcher knife +2" -msgid_plural "butcher knives +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" +msgstr[0] "脏腑四射卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" +msgstr[0] "凝结组织卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" +msgstr[0] "电离术卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +1" -msgid_plural "carving knives +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" +msgstr[0] "召唤鬼火卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "carving knife +2" -msgid_plural "carving knives +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" +msgstr[0] "雾墙术卷轴" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +1" -msgid_plural "butchering kits +1" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Water" +msgid_plural "Scrolls of Condense Water" +msgstr[0] "水凝聚卷轴" + +#. ~ Description for {'str': 'Scroll of Condense Water', 'str_pl': 'Scrolls of +#. Condense Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense water from the air around you." +msgstr "允许你从周围的空气中凝聚水。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Condense Clean Water" +msgid_plural "Scrolls of Condense Clean Water" +msgstr[0] "净水凝聚卷轴" + +#. ~ Description for {'str': 'Scroll of Condense Clean Water', 'str_pl': +#. 'Scrolls of Condense Clean Water'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Allows you to condense clean water from the air around you." +msgstr "允许你从周围的空气中凝聚净水。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Create Hydrochloric Acid" +msgid_plural "Scrolls of Create Hydrochloric Acid" +msgstr[0] "创造盐酸卷轴" + +#. ~ Description for {'str': 'Scroll of Create Hydrochloric Acid', 'str_pl': +#. 'Scrolls of Create Hydrochloric Acid'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Produces usable Hydrochloric Acid for you." +msgstr "为你生产可用的盐酸。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Summon… Demon(?)" +msgid_plural "Scrolls of Summon… Demon(?)" +msgstr[0] "召唤……恶魔(?)卷轴" + +#. ~ Description for {'str': 'Scroll of Summon… Demon(?)', 'str_pl': 'Scrolls +#. of Summon… Demon(?)'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"You can tell this is an authentic magic scroll by all the cursive writing. " +"It does make it a bit hard to read, though…" +msgstr "你可以通过所有的草书文字判断这是一张真正的魔法卷轴。不过,这确实让它有些难以阅读……" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Fire Storm" +msgid_plural "Scrolls of Fire Storm" +msgstr[0] "火焰风暴卷轴" + +#. ~ Description for {'str': 'Scroll of Fire Storm', 'str_pl': 'Scrolls of +#. Fire Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Fireball' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "这幅卷轴详细描述了一个被称为\"火球术\"的常见的炽霜法师法术是如何被改造变得更强大的,但施放时将会消耗更多的魔力。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Ice Storm" +msgid_plural "Scrolls of Ice Storm" +msgstr[0] "寒冰风暴卷轴" + +#. ~ Description for {'str': 'Scroll of Ice Storm', 'str_pl': 'Scrolls of Ice +#. Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how a spell called 'Hoary Blast' which is commonly used " +"among Kelvinists can be altered to become much more powerful, at a much " +"higher mana cost." +msgstr "这幅卷轴详细描述了一个被称为\"白霜冲击\"的常见的炽霜法师法术是如何被改造变得更强大的,但施放时将会消耗更多的魔力。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Rock Tomb" +msgid_plural "Scrolls of Rock Tomb" +msgstr[0] "岩石封锁卷轴" + +#. ~ Description for {'str': 'Scroll of Rock Tomb', 'str_pl': 'Scrolls of Rock +#. Tomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll details how to tear up the ground beneath you to throw a medium " +"boulder." +msgstr "这张卷轴详细描述了如何撕裂你脚下的大地,将一块中型巨石投掷出去。" + +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Meteor" +msgid_plural "Scrolls of Meteor" +msgstr[0] "陨石术卷轴" + +#. ~ Description for {'str': 'Scroll of Meteor', 'str_pl': 'Scrolls of +#. Meteor'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains a powerful spell to call down a meteor from high in the" +" sky. With this cataclysm, maybe another dinosaur-killer would be a good " +"thing." +msgstr "这张卷轴包含了一个强大的法术,可以从高空召唤一颗陨石。在这场大灾变中,也许再出现一个\"恐龙杀手\"会是件好事。" -#: data/mods/Magiclysm/items/enchanted_tools.json -msgid "butchering kit +2" -msgid_plural "butchering kits +2" -msgstr[0] "" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bolt" +msgid_plural "Scrolls of Acid Bolt" +msgstr[0] "酸液箭卷轴" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +1" -msgid_plural "cestus +1s" -msgstr[0] "金屬拳套 +1" +#. ~ Description for {'str': 'Scroll of Acid Bolt', 'str_pl': 'Scrolls of Acid +#. Bolt'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "This scroll details how to throw acid at someone." +msgstr "这张卷轴详细描述了如何将酸液投掷到某人身上。" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "cestus +2" -msgid_plural "cestus +2s" -msgstr[0] "金屬拳套 +2" +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Bomb" +msgid_plural "Scrolls of Acid Bomb" +msgstr[0] "酸液弹卷轴" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist" -msgid_plural "flaming fists" -msgstr[0] "燃焰拳套" +#. ~ Description for {'str': 'Scroll of Acid Bomb', 'str_pl': 'Scrolls of Acid +#. Bomb'} +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "" +"This scroll contains details on how to shape acid into a compressed " +"spherical shape." +msgstr "这张卷轴包含了如何将酸液塑造成压缩球形的详细信息。" -#. ~ Description for {'str': 'flaming fist'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#: data/mods/Magical_Nights/items/spell_scrolls.json +msgid "Scroll of Acid Storm" +msgid_plural "Scrolls of Acid Storm" +msgstr[0] "酸液风暴卷轴" + +#. ~ Description for {'str': 'Scroll of Acid Storm', 'str_pl': 'Scrolls of +#. Acid Storm'} +#: data/mods/Magical_Nights/items/spell_scrolls.json msgid "" -"A heavy metal guard that covers the fist and increases striking power, with " -"stout padding underneath to protect the wearers hand. It has been enchanted" -" to emit dark magical flames that only harm enemies." -msgstr "沉重金屬拳套,包覆雙拳並加強攻擊力道,內有厚實的襯墊保護穿戴者的手。它有著只傷害敵人的魔法闇焰附魔。" +"This scroll details how a spell called 'Acid Bomb' can be altered to become " +"much more powerful, at a much higher mana cost." +msgstr "这幅卷轴详细描述了一个被称为\"酸液弹\"的法术是如何被改造变得更强大的,但施放时将会消耗更多的魔力。" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +1" -msgid_plural "flaming fist +1s" -msgstr[0] "燃焰拳套 +1" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Technomancer's Guide to Debugging C:DDA" +msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +msgstr[0] "科技法师的CDDA调试指南" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "flaming fist +2" -msgid_plural "flaming fist +2s" -msgstr[0] "燃焰拳套 +2" +#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", +#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "static std::string description( spell sp ) const;" +msgstr "static std::string 描述(法術 sp)const;" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" -msgstr[0] "重擊護手" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Beginner's Guide to Magic" +msgid_plural "copies of A Beginner's Guide to Magic" +msgstr[0] "魔法入门指南" -#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of -#. pounding'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies +#. of A Beginner's Guide to Magic"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "一雙巨大的發光金屬重型長手套,表面鑲滿著魔法符號,讓你可以揮出驚人的強大打擊。" +"Looks just like a typical pamphlet claiming to teach people magic. Yet, for" +" some reason you can't quite put your finger on, you get the feeling that " +"there's a little more truth than usual to this one…" +msgstr "看起来就像一本典型的小册子,声称可以教人们魔法。 然而出于某种原因,你无法完全确定,你觉得这个比平时多一点真相......" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "shotcestus" -msgid_plural "shotcesti" -msgstr[0] "霰弹拳套" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" +msgstr[0] "魔法师背包指南" -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': +#. 'copies of Wizarding Guide to Backpacking'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " -"stock to absorb recoil means some strength is required to fire." -msgstr "一把安装在金属拳套上的锯短双管霰弹枪。由于没有吸收后坐力的枪托,这意味着需要一些力量才能开火。" +"This appears to be the spell version of a guide for what things to take with" +" you when backpacking. It's a little bulky, but will certainly prove " +"useful." +msgstr "這似乎是背包旅行指南的法術版本,教導你該打包何物以進行背包旅行。它雖然笨重了點,但是卻提供很多有用的資訊。" -#: data/mods/Magiclysm/items/enchanted_unarmed.json -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cesti" -msgstr[0] "塑地者拳套" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" +msgstr[0] "异教徒的火焰魔法" -#. ~ Description for {'str': 'Earthshaper cestus', 'str_pl': 'Earthshaper -#. cesti'} -#: data/mods/Magiclysm/items/enchanted_unarmed.json +#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of +#. Pyromancy for Heretics'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A stone battle glove with carved runes encasing the hand, protecting it " -"while increasing striking power. There is an Earthshaper rune embedded in " -"the palm." -msgstr "一雙雕刻著符文的石製手套,包覆雙手保護它並增強打擊力道。在掌中鑲嵌著大地塑形者的符文。" +"This charred husk of a book still contains many ways to light things aflame." +msgstr "這本書雖然有著燒焦的書皮,卻仍然記述著許多點燃物品的方法。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Magic Wand" -msgid_plural "Magic Wands" -msgstr[0] "魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A Treatise on Magical Elements" +msgid_plural "copies of A Treatise on Magical Elements" +msgstr[0] "魔法元素论" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "Disposable Wand" -msgid_plural "Disposable Wands" -msgstr[0] "一次性魔杖" +#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': +#. 'copies of A Treatise on Magical Elements'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This details complex diagrams, rituals, and choreography that describes " +"various spells." +msgstr "這本書以詳細而複雜圖表、儀式和動作順序來介紹各種法術。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of magic missile" -msgid_plural "minor wands of magic missile" -msgstr[0] "魔法飛彈劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" +msgstr[0] "神祇简介" -#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor -#. wands of magic missile'} -#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser -#. wands of magic missile'} -#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': -#. 'greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies +#. of Introduction to the Divine'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts magic missile." -msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展魔法飛彈。" +"This appears to mostly be a religious text, but it does have some notes on " +"healing." +msgstr "這似乎主要是宗教文本,但它確實有一些關於治療的記述。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of magic missile" -msgid_plural "lesser wands of magic missile" -msgstr[0] "魔法飛彈次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Paladin's Guide to Modern Spellcasting" +msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +msgstr[0] "圣骑士的现代施法指南" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of magic missile" -msgid_plural "greater wands of magic missile" -msgstr[0] "魔法飛彈高級魔杖" +#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", +#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Despite the title, this seems to be written in Middle English. A little " +"obtuse, but you can make out most of the words well enough." +msgstr "雖說書名這麼寫,但是內容卻是用中古世紀的英文寫成的。雖然有點難讀懂,但你還是能搞懂大部分的字詞。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of fireball" -msgid_plural "minor wands of fireball" -msgstr[0] "火球術劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" +msgstr[0] "寒冬之悟" -#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands -#. of fireball'} -#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser -#. wands of fireball'} -#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater -#. wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of +#. Winter's Eternal Grasp"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts fireball." -msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展火球術。" +"This slim book almost seems to be made from ice, it's cold to the touch." +msgstr "這本小冊子似乎是冰製的,摸起來很冰冷。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of fireball" -msgid_plural "lesser wands of fireball" -msgstr[0] "火球術次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Oncoming Storm" +msgid_plural "copies of The Tome of The Oncoming Storm" +msgstr[0] "风暴来临法典" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of fireball" -msgid_plural "greater wands of fireball" -msgstr[0] "火球術高級魔杖" +#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': +#. 'copies of The Tome of The Oncoming Storm'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." +msgstr "封面浮飾著交叉閃電與暴雨雲圖樣的大部頭書。觸摸著它會讓你感到微微的刺痛。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of mana beam" -msgid_plural "minor wands of mana beam" -msgstr[0] "魔力射線劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" +msgstr[0] "普通的魔法书" -#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands -#. of mana beam'} -#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser -#. wands of mana beam'} -#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater -#. wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of +#. Nondescript Spellbook'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts mana beam." -msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展魔力射線。" +"A small composition notebook, containing spells created by a novice " +"magician." +msgstr "一本小作文本,其中包含一名学徒魔法师创造的法术。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of mana beam" -msgid_plural "lesser wands of mana beam" -msgstr[0] "魔力射線次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" +msgstr[0] "光影和幻象" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of mana beam" -msgid_plural "greater wands of mana beam" -msgstr[0] "魔力射線高級魔杖" +#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of +#. Of Light and Falsehoods'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small white book, it subtly amplifies the ambient light around it." +msgstr "一本白色小册子,它淡淡地增强了四周的光。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of point flare" -msgid_plural "minor wands of point flare" -msgstr[0] "定點驟燃劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" +msgstr[0] "血肉之书" -#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor -#. wands of point flare'} -#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser -#. wands of point flare'} -#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater -#. wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts point flare." -msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展定點驟燃。" +#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The +#. Tome of Flesh'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A small tome, seemingly covered in tanned human skin." +msgstr "一本小專論,封面似乎是鞣製後的人皮。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of point flare" -msgid_plural "lesser wands of point flare" -msgstr[0] "定點驟燃次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" +msgstr[0] "树之书" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of point flare" -msgid_plural "greater wands of point flare" -msgstr[0] "定點驟燃高級魔杖" +#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The +#. Book of Trees'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "A bark covered book." +msgstr "有著樹皮封面的書。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of hoary blast" -msgid_plural "minor wands of hoary blast" -msgstr[0] "蒼白爆破劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Utility of Mana as an Energy Source" +msgid_plural "copies of The Utility of Mana as an Energy Source" +msgstr[0] "魔力能源的效用" -#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor -#. wands of hoary blast'} -#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser -#. wands of hoary blast'} -#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater -#. wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', +#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts hoary blast." -msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展蒼白爆破。" +"This book details spells that use your mana to recover various physiological" +" effects." +msgstr "本書詳細介紹了使用你的法力來恢復各種生理效果的法術。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of hoary blast" -msgid_plural "lesser wands of hoary blast" -msgstr[0] "蒼白爆破次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of The Battle Mage" +msgid_plural "copies of The Tome of The Battle Mage" +msgstr[0] "战斗法师宝典" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of hoary blast" -msgid_plural "greater wands of hoary blast" -msgstr[0] "蒼白爆破高級魔杖" +#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies +#. of The Tome of The Battle Mage'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" +msgstr "以你的法師標準來看此書,內容滿是祆教徒的戰鬥法術。你真幸運!" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "minor wand of cone of cold" -msgid_plural "minor wands of cone of cold" -msgstr[0] "冷錐術劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of the Hollow Earth" +msgid_plural "copies of The Tome of the Hollow Earth" +msgstr[0] "地心空洞论" -#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor -#. wands of cone of cold'} -#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser -#. wands of cone of cold'} -#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': -#. 'greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies +#. of The Tome of the Hollow Earth'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with a mana crystal socket at the base that casts a " -"spell when activated. This wand casts cone of cold." -msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展冷錐術。" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." +msgstr "這本佈滿沙塵的大部頭書似乎永遠都佈滿著灰塵。它記述著大地之力。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "lesser wand of cone of cold" -msgid_plural "lesser wands of cone of cold" -msgstr[0] "冷錐術次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Tome of Magical Movement" +msgid_plural "copies of The Tome of Magical Movement" +msgstr[0] "魔法移动宝典" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "greater wand of cone of cold" -msgid_plural "greater wands of cone of cold" -msgstr[0] "冷錐術高級魔杖" +#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies +#. of The Tome of Magical Movement'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." +msgstr "這本又小又輕的書感覺似乎不存在,可說97%是這樣。它包含了專門用於移動的祆教徒法術。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of magic missile" -msgid_plural "disposable minor wands of magic missile" -msgstr[0] "一次性的魔法飛彈劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" +msgstr[0] "污跡卷軸" -#. ~ Description for {'str': 'disposable minor wand of magic missile', -#. 'str_pl': 'disposable minor wands of magic missile'} -#. ~ Description for {'str': 'disposable lesser wand of magic missile', -#. 'str_pl': 'disposable lesser wands of magic missile'} -#. ~ Description for {'str': 'disposable greater wand of magic missile', -#. 'str_pl': 'disposable greater wands of magic missile'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Smudged Scroll'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts magic missile." -msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展魔法飛彈。" +"This looks like someone was designing a new spell, but spilled a mug of " +"coffee on it and crumpled it up in anger. You can tell that it will " +"definitely cast something, but you can't be sure that it will work very " +"well." +msgstr "這看起來像是有人正在設計一個新的法術,卻在上面灑了一大杯咖啡而且憤怒地揉皺它。你覺得它肯定能施展出什麼法術,但是你不確定是好是壞。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of magic missile" -msgid_plural "disposable lesser wands of magic missile" -msgstr[0] "一次性的魔法飛彈次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" +msgstr[0] "亡灵仆从召唤入门" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of magic missile" -msgid_plural "disposable greater wands of magic missile" -msgstr[0] "一次性的魔法飛彈高級魔杖" +#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': +#. 'copies of Necromantic Minions for Dummies'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book details various ways of summoning an undead minion to fight for " +"you. They all appear to disappear after a short time, crumbling to dust." +msgstr "這本書詳細介紹了召喚不死小兵為你作戰的各種方法。它們似乎都會在很短的時間消失,散成塵埃。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of fireball" -msgid_plural "disposable minor wands of fireball" -msgstr[0] "一次性的火球術劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" +msgstr[0] "科技魔法基本原理" -#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': -#. 'disposable minor wands of fireball'} -#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': -#. 'disposable lesser wands of fireball'} -#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': -#. 'disposable greater wands of fireball'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies +#. of Fundamentals of Technomancy'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts fireball." -msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展火球術。" +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." +msgstr "這本厚厚的說明書指導施法者如何操縱和賦予各種形式的物質與能量。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of fireball" -msgid_plural "disposable lesser wands of fireball" -msgstr[0] "一次性的火球術次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Complete Idiot's Guide to Technomancy" +msgid_plural "copies of Complete Idiot's Guide to Technomancy" +msgstr[0] "科技魔法新手入门指南" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of fireball" -msgid_plural "disposable greater wands of fireball" -msgstr[0] "一次性的火球術高級魔杖" +#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", +#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." +msgstr "這個色彩繽紛的指南,充滿了圖表和漫畫,教授給不那麼聰明的學生幾個非常基本的科技巫師法術。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of mana beam" -msgid_plural "disposable minor wands of mana beam" -msgstr[0] "一次性的魔力射線劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Technomancy and the Electromagnetic Spectrum" +msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgstr[0] "科技魔法与电磁光谱" -#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': -#. 'disposable minor wands of mana beam'} -#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': -#. 'disposable lesser wands of mana beam'} -#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': -#. 'disposable greater wands of mana beam'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', +#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts mana beam." -msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展魔力射線。" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." +msgstr "這本實驗室參考資料書很厚,內含關於魔法與電磁輻射相結合的大量資訊。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of mana beam" -msgid_plural "disposable lesser wands of mana beam" -msgstr[0] "一次性的魔力射線次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Geospatial Systems: The Lie Of Linearity" +msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +msgstr[0] "空间与地理:线性的谎言" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of mana beam" -msgid_plural "disposable greater wands of mana beam" -msgstr[0] "一次性的魔力射線高級魔杖" +#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', +#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"This book outlines in great detail how time and space are wibbly-wobbly and " +"non-Euclidean. It also appears to have a dozen different coordinate systems" +" that it uses nearly interchangeably, which makes it hard to follow. " +"There's lots of jargon, but with intense study you can probably learn a " +"thing or two about portals." +msgstr "" +"這本書非常詳細地記述了時間和空間如何的搖擺不定而且不是歐幾里德距離。它也有十幾種不同的坐標系,幾乎可以互換使用,這使得它很難遵循。雖然書內有大量的術語,但經過深入研究,你可能會學到一些關於傳送門的東西。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of point flare" -msgid_plural "disposable minor wands of point flare" -msgstr[0] "一次性的定點驟燃劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "Transcendence of the Human Condition" +msgid_plural "copies of Transcendence of the Human Condition" +msgstr[0] "超越人类的极限" -#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': -#. 'disposable minor wands of point flare'} -#. ~ Description for {'str': 'disposable lesser wand of point flare', -#. 'str_pl': 'disposable lesser wands of point flare'} -#. ~ Description for {'str': 'disposable greater wand of point flare', -#. 'str_pl': 'disposable greater wands of point flare'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': +#. 'copies of Transcendence of the Human Condition'} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts point flare." -msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展定點驟燃。" +"The Human is the only creature that seeks to improve himself. This study " +"examines different spells that can heighten various senses temporarily, in " +"hopes to discover a more permanent solution." +msgstr "人類是唯一尋求改善自己的生物。本研究考察了可以暫時提升各種感官的不同法術,希望能找到更持久的解決方案。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of point flare" -msgid_plural "disposable lesser wands of point flare" -msgstr[0] "一次性的定點驟燃次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Technomancer's Spellbook" +msgid_plural "copies of The Novice Technomancer's Spellbook" +msgstr[0] "科技法师学徒的魔法书" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of point flare" -msgid_plural "disposable greater wands of point flare" -msgstr[0] "一次性的定點驟燃高級魔杖" +#. ~ Description for {'str': "The Novice Technomancer's Spellbook", 'str_pl': +#. "copies of The Novice Technomancer's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking technomancer's spellbook containing just a " +"couple simple technomancy spells." +msgstr "一本相当简朴的科技法师魔法书,其中仅包含几种简单的科技魔法咒语。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of hoary blast" -msgid_plural "disposable minor wands of hoary blast" -msgstr[0] "一次性的蒼白爆破劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Stormshaper's Spellbook" +msgid_plural "copies of The Novice Stormshaper's Spellbook" +msgstr[0] "风暴塑造者学徒的魔法书" -#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': -#. 'disposable minor wands of hoary blast'} -#. ~ Description for {'str': 'disposable lesser wand of hoary blast', -#. 'str_pl': 'disposable lesser wands of hoary blast'} -#. ~ Description for {'str': 'disposable greater wand of hoary blast', -#. 'str_pl': 'disposable greater wands of hoary blast'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Stormshaper's Spellbook", 'str_pl': +#. "copies of The Novice Stormshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts hoary blast." -msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展蒼白爆破。" +"A fairly simplistic looking stormshaper's spellbook containing just a couple" +" simple stormshaping spells." +msgstr "一本相当简朴的风暴塑造者魔法书,其中仅包含几种简单的风暴塑造咒语。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of hoary blast" -msgid_plural "disposable lesser wands of hoary blast" -msgstr[0] "一次性的蒼白爆破次級魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Earthshaper's Spellbook" +msgid_plural "copies of The Novice Earthshaper's Spellbook" +msgstr[0] "塑地者学徒的魔法书" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of hoary blast" -msgid_plural "disposable greater wands of hoary blast" -msgstr[0] "一次性的蒼白爆破高級魔杖" +#. ~ Description for {'str': "The Novice Earthshaper's Spellbook", 'str_pl': +#. "copies of The Novice Earthshaper's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "" +"A fairly simplistic looking earthshaper's spellbook containing just a couple" +" simple earthshaping spells." +msgstr "一本相当简朴的塑地者魔法书,其中仅包含几种简单的塑地咒语。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable minor wand of cone of cold" -msgid_plural "disposable minor wands of cone of cold" -msgstr[0] "一次性的冷錐術劣質魔杖" +#: data/mods/Magical_Nights/items/spellbooks.json +msgid "The Novice Kelvinist's Spellbook" +msgid_plural "copies of The Novice Kelvinist's Spellbook" +msgstr[0] "炽霜法师学徒的魔法书" -#. ~ Description for {'str': 'disposable minor wand of cone of cold', -#. 'str_pl': 'disposable minor wands of cone of cold'} -#. ~ Description for {'str': 'disposable lesser wand of cone of cold', -#. 'str_pl': 'disposable lesser wands of cone of cold'} -#. ~ Description for {'str': 'disposable greater wand of cone of cold', -#. 'str_pl': 'disposable greater wands of cone of cold'} -#: data/mods/Magiclysm/items/enchanted_wands.json +#. ~ Description for {'str': "The Novice Kelvinist's Spellbook", 'str_pl': +#. "copies of The Novice Kelvinist's Spellbook"} +#: data/mods/Magical_Nights/items/spellbooks.json msgid "" -"A slender wooden wand with an embedded mana crystal at the base that casts a" -" spell when activated. This wand casts cone of cold." -msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展冷錐術。" - -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable lesser wand of cone of cold" -msgid_plural "disposable lesser wands of cone of cold" -msgstr[0] "一次性的冷錐術次級魔杖" +"A fairly simplistic looking kelvinist's spellbook containing just a couple " +"simple spells from both fire and ice." +msgstr "一本相当简朴的炽霜法师魔法书,其中仅包含几种简单的火焰和冰霜咒语。" -#: data/mods/Magiclysm/items/enchanted_wands.json -msgid "disposable greater wand of cone of cold" -msgid_plural "disposable greater wands of cone of cold" -msgstr[0] "一次性的冷錐術高級魔杖" +#: data/mods/Magical_Nights/items/tools.json +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" +msgstr[0] "净化大锅" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" -msgstr[0] "魔石护手" +#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons +#. of purification'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This cauldron made of demon spider chitin seems to absorb the light. It " +"will hold 16 liters of material and will absorb poisons from it. It may " +"have other properties that require discovery." +msgstr "这个由恶魔蜘蛛甲壳所制成的大锅似乎正在吸收四周的光线。 它能够容纳16升原料,并吸收其中的毒素。它可能还有其他需要你发现的隐藏属性。" -#. ~ Description for {'str': 'pair of magical armored stone gauntlets', -#. 'str_pl': 'pairs of magical armored stone gauntlets'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A magical flexible stonelike substance for protection and attack." -msgstr "一種神奇地物質,像石頭一樣卻擁有彈性。可用於保護與攻擊。" +#. ~ Description for {'str': 'demon forge'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This is a portable version of the charcoal forge that is magically enhanced " +"and fortified with demon spider chitin in order to be able to resmelt " +"magical metals into their workable ingot form." +msgstr "一个便携式版本的火炭锻造台,它使用了恶魔蜘蛛甲壳进行附魔和强化,以便能够将魔法金属熔化成能够制造物品的锭。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "finger firelighter" -msgid_plural "finger firelighters" -msgstr[0] "指尖引火" +#: data/mods/Magical_Nights/items/tools.json +msgid "fireproof mortar" +msgid_plural "fireproof mortar" +msgstr[0] "防火灰泥" -#. ~ Description for finger firelighter -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'fireproof mortar'} +#: data/mods/Magical_Nights/items/tools.json msgid "" -"This is a small flame you can hold in your hand. With a thought, you can " -"cause it to light something on fire." -msgstr "這是團能捧在手心的小火光。你想到可以將它用來點燃其他物品。" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "魔法燈" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "一堆炼金术制造的灰泥,已经准备好,随时可以用到需要抵抗龙炎般高温的工程建设项目中。" -#. ~ Description for magic lamp -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "a magical light source that will light up a small area." -msgstr "能照亮小區域的魔法燈。" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "銅灌注手鐲" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "魔法小燈" +#. ~ Description for {'str': 'copper infusion bracelet'} +#. ~ Description for {'str': 'silver infusion bracelet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"This bracelet has runes engraved on it. You sense a faint air of mysticism " +"when you look at it. It would be useful for imbuing mana into material." +msgstr "这个手镯上刻着符文。当你看着它的时候,你会感觉到一种神秘的微弱气息。它将有助于将魔力灌注到物质中。" -#. ~ Description for magic light -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A small magical light that you can read by." -msgstr "可用於閱讀的小魔法燈。" +#: data/mods/Magical_Nights/items/tools.json +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "符文银手镯" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" -msgstr[0] "魔法大冰盾" +#: data/mods/Magical_Nights/items/tools.json +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "銅飾環" -#. ~ Description for {'str': 'large shield of magical ice', 'str_pl': 'large -#. shields of magical ice'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "輕巧但堅韌的盾牌,完全由魔法冰製成。" +#. ~ Description for {'str': 'copper circlet'} +#: data/mods/Magical_Nights/items/tools.json +msgid "" +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." +msgstr "镶有铜边的木质头环。在戴上它时按摩太阳穴会使你感到非常平静。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "slick icy coatings" -msgid_plural "slick icy coatings" -msgstr[0] "光滑冰层" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" +msgstr[0] "下级法师法杖" -#. ~ Description for {'str_sp': 'slick icy coatings'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'minor staff of the magi', 'str_pl': 'minor +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A magical slick icy coating on your feet. While quite fast on flat floors, " -"they make it difficult to move on rough terrain." -msgstr "腳上有一層光滑的魔法冰塗層。雖然能讓你在平坦的地面上行動非常快,但卻很難在崎嶇的地形上移動。" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana capacity" +msgstr "一根简单雕刻的木制法杖。当你施放法术时会微微发光。手持它能略微增加你的魔力容量。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "The Stormhammer" -msgid_plural "The Stormhammers" -msgstr[0] "暴風之錘" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" +msgstr[0] "次等法师法杖" -#. ~ Description for {'str': 'The Stormhammer'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'lesser staff of the magi', 'str_pl': 'lesser +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "一把充滿閃電劈啪作響的魔法戰鎚,可以打擊你的敵人,當然還可以砸碎東西!" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +msgstr "一根精心制造的长杖,采用经过附魔的木头和秘银制成。当你使用它施放法术时它会在魔法的作用下微微发光,但它不是一个耐用的近战武器。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Stormfist" -msgid_plural "Stormfists" -msgstr[0] "暴風拳套" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" +msgstr[0] "高级法师法杖" -#. ~ Description for Stormfist -#. ~ Description for {'str': 'Stormfist'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'greater staff of the magi', 'str_pl': 'greater +#. staves of the magi'} +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"Encases your arm and hand in a sheath of crackling magical lightning, you " -"can punch and defend yourself with it in melee combat." -msgstr "將你的手臂和拳頭包裹在劈啪作響的魔法閃電護套中,你可以在近戰格鬥中用它來打擊對手並保護自己。" +"A beautifully carved staff, made of enchanted wood and mithril. It faintly " +"glows with magic when you cast spells, but it is not a sturdy melee weapon." +" Wielding it greatly increases your mana capacity." +msgstr "一根雕刻精美的法杖,采用附魔木和秘银制成。当你施放法术时会微微发光,但它不是一种耐用的近战武器。手持它能大大增加你的魔力容量。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" -msgstr[0] "邪惡觸手鞭" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "巫師帽" -#. ~ Description for vicious tentacle whip -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for wizard hat +#: data/mods/Magical_Nights/items/enchanted/enchanted.json msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "一條扭曲的長觸手,上面覆蓋著鋒利的骨狀刃片和突起的尖刺。" +"A blue pointed hat with stars stiched into it. Wearing it increases your " +"mana regeneration." +msgstr "縫有星星圖樣的藍色尖頂帽子。佩戴它會增加你的法力回復。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "flesh pouch" -msgid_plural "flesh pouches" -msgstr[0] "肉身成袋" +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "fireball hammer" +msgid_plural "fireball hammers" +msgstr[0] "火球錘" -#. ~ Description for {'str': 'flesh pouch', 'str_pl': 'flesh pouches'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A large pouch of tough flesh on your back, filled with tiny tentacles that " -"grasp and hold anything you place inside. It shifts and adjusts itself to " -"minimize encumbrance." -msgstr "一只大型的肉質袋子,能背在背上。裡面滿布著小觸手,能夠抓握住你放進袋中的東西,它會自動移動和調整,使你的累贅值降到最低。" +#. ~ Description for fireball hammer +#: data/mods/Magical_Nights/items/enchanted/enchanted.json +msgid "Use with caution! Flammable! Explosive!" +msgstr "請謹慎使用!易燃!爆炸!" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" -msgstr[0] "邪惡骨矛" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "magic leather belt" +msgid_plural "magic leather belts" +msgstr[0] "魔法皮帶" -#. ~ Description for {'str': 'Wicked Bonespear'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "這是一種完全由骨骼製成的邪惡的長矛/戟混合體。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Haste" +msgid_plural "Belts of Haste" +msgstr[0] "迅捷腰带" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Woodbow" -msgid_plural "Woodbows" -msgstr[0] "木弓" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Megingjörð" +msgid_plural "Megingjörð" +msgstr[0] "索尔的神奇腰带" -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'Megingjörð'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"A magically conjured ornate recurve bow of solid flexible wood. A matching " -"conjured wooden arrow appears when you draw the string back for firing." -msgstr "一把魔法生成的华丽反曲弓。由结实而有弹性的木料制成,拉开弓弦就会自动生成一只箭。" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "seed of purification" -msgid_plural "seeds of purification" -msgstr[0] "净化之种" +"The mythical belt of Thor, god of thunder. Or at least so it appears. It " +"doubles the wearer's base strength." +msgstr "传说中雷神索尔的神奇腰带,至少看起来是这样的。它能使佩戴者的基础力量加倍。" -#. ~ Use action menu_text for {'str': 'seed of purification', 'str_pl': 'seeds -#. of purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Squeeze seed" -msgstr "擠壓種子" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Lesser Girdle of Pockets" +msgid_plural "Lesser Girdles of Pockets" +msgstr[0] "次级口袋腰带" -#. ~ Use action msg for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'}. -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'Lesser Girdle of Pockets', 'str_pl': 'Lesser +#. Girdles of Pockets'} +#. ~ Description for {'str': 'Greater Girdle of Pockets', 'str_pl': 'Greater +#. Girdles of Pockets'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "你擠壓在你手掌中的種子,它開始變成細小的粉塵。" +"A wide girdle that fits around your waist, coverd in numerous small pouches " +"that hold a lot more than they should, and the weight of their contents is " +"greatly reduced." +msgstr "一条很适合你腰部的宽腰带,上面覆盖着许多小口袋,能装下超出它们体积的物品,而且口袋中的物品重量大大减少。" -#. ~ Description for {'str': 'seed of purification', 'str_pl': 'seeds of -#. purification'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A magical seed that can be squeezed to release purifying dust, which can " -"then be used to purify up to a gallon of water" -msgstr "一種魔法種子,在擠壓後釋放淨化粉塵,可用於淨化高達一加侖的水" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Greater Girdle of Pockets" +msgid_plural "Greater Girdles of Pockets" +msgstr[0] "高级口袋腰带" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "faintly glowing dust" -msgid_plural "faintly glowing dusts" -msgstr[0] "微弱的發光粉" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of Weaponry" +msgid_plural "Belts of Weaponry" +msgstr[0] "武器腰带" -#. ~ Description for faintly glowing dust -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "This fine dust glows with a growing intensity" -msgstr "這細粉微微發光,越來越亮" +#. ~ Description for {'str': 'Belt of Weaponry', 'str_pl': 'Belts of +#. Weaponry'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A wide girdle that fits around your waist, you can sheath or holster any " +"weapon into it in the blink of an eye, and it seemingly stores them " +"somewhere else." +msgstr "合身地環繞在你腰部的寬腰帶,你可以在眨眼間將任何武器放入其中,而它似乎將武器儲存在其他地方。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "obfuscating aura" -msgid_plural "obfuscating auras" -msgstr[0] "朦胧光环" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "Belt of The Iron Whip" +msgid_plural "Belts of the Iron Whip" +msgstr[0] "鐵鞭腰帶" -#. ~ Description for obfuscating aura -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Use action msg for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of +#. the Iron Whip'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." -msgstr "一个覆盖全身、看不见的魔法光环扭曲了你身体周围的光。让你在一个回合中获得两次额外闪避攻击的能力。" +"You grab the belt and it uncoils to become a flexible metal whip in your " +"hand!" +msgstr "你抓起腰带,它瞬间在你手中舒展开,变成一根灵活的铁鞭子!" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "acid resistance aura" -msgid_plural "acid resistance auras" -msgstr[0] "防酸光环" +#. ~ Description for {'str': 'Belt of The Iron Whip', 'str_pl': 'Belts of the +#. Iron Whip'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A braided but flexible belt seemingly made of metal. You can activate it to" +" transform it into a whip and flay your enemies." +msgstr "一根看上去似由金属编织而成但又十分灵活的皮带。你可以激活它,把它变成鞭子,然后切碎你的敌人。" -#. ~ Description for {'str': 'acid resistance aura'} -#. ~ Description for greater acid resistance aura -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "一个覆盖全身的肉眼无法看见的防酸光环。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "The Iron Whip" +msgid_plural "Iron Whips" +msgstr[0] "铁鞭" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" -msgstr[0] "高等防酸光环" +#. ~ Use action msg for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "你把鞭子在手中缠绕,使其在瞬间卷曲回皮带形状。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "frost armor" -msgid_plural "frost armor" -msgstr[0] "寒霜盔甲" +#. ~ Description for {'str': 'The Iron Whip', 'str_pl': 'Iron Whips'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "" +"A long braided flexible steel bullwhip that narrows into a sharp blade at " +"the end. Easily capable of slicing and dicing anything that comes at you. " +"It transforms back into a belt." +msgstr "一条编织而成、柔软灵活的钢铁长鞭,末端变成锋利的刀刃。能够轻易切割任何向你袭来的物品。使用它能够将其变回皮带。" -#. ~ Description for {'str_sp': 'frost armor'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "A thin layer of magical ice, covering the entire body." -msgstr "一层包覆全身的、薄薄的魔法冰层。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_belts.json +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "力量腰帶 +2" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "stoneskin coating" -msgid_plural "stoneskin coating" -msgstr[0] "石化皮肤" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "七里靴" -#. ~ Description for {'str_sp': 'stoneskin coating'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str': 'seven league boots', 'str_pl': 'pairs of seven +#. league boots'} +#. ~ Description for {'str': 'boots of haste', 'str_pl': 'pairs of boots of +#. haste'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." -msgstr "一层覆盖全身的薄薄的不断移动的岩石,仿佛是有生命的液体一般。" - -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "overcharge burn" -msgid_plural "overcharge burns" -msgstr[0] "过载烧伤" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, they look like they've seen a lot of use and will likely see a lot " +"more. They make your movement a lot less work." +msgstr "一双十分坚固却又非常舒适合身的旧钢头皮靴,看上去已经用了很久,而且能继续用上更久。穿上它让你移动变得轻松了不少。" -#. ~ Description for {'str': 'overcharge burn'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "哎哟,这可是太聪明了!也许它很快就会消退?" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "加速靴" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "aura of protection" -msgid_plural "auras of protection" -msgstr[0] "保护光环" +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "escape boots" +msgid_plural "escape boots" +msgstr[0] "遁逃靴" -#. ~ Description for {'str': 'aura of protection', 'str_pl': 'auras of -#. protection'} -#: data/mods/Magiclysm/items/ethereal_items.json +#. ~ Description for {'str_sp': 'escape boots'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." -msgstr "一个覆盖全身的肉眼无法看见的环境防护光环。" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, these boots can be activated once a day to escape from nasty " +"situations, teleporting you a good distance in a random direction." +msgstr "即使表面破舊,但是磨損的皮革跟鋼鐵卻非常舒適且合腳。這靴子每天能啟動一次來逃離惡劣的環境,能將你傳送到隨機方向的很長距離處。" -#. ~ Description for {'str': 'Flamesword'} -#: data/mods/Magiclysm/items/ethereal_items.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "立地靴" + +#. ~ Description for {'str': 'boots of grounding', 'str_pl': 'pairs of boots +#. of grounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_boots.json msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "这把木剑燃烧起来了!看起来握着它似乎还算安全,但它很快就会烧光。" +"Rugged yet extremely comfortable and well fitting boots of leather with " +"small engraved runes seemingly filled with rubber. When worn, you are " +"immune to damage from electricity." +msgstr "一双十分坚固却又非常舒适合身的旧皮靴,上面雕刻着些似乎充满了橡胶的小型符文。穿上它能让你免疫电击。" -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" -msgstr[0] "腐烂骨棒" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "pair of steel bracers" +msgid_plural "pairs of steel bracers" +msgstr[0] "一對鋼護腕" -#. ~ Description for {'str': 'decaying boneclub'} -#: data/mods/Magiclysm/items/ethereal_items.json -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "一根由骨头制成的会跳动的棍子,沾满了不断蠕动的血衣,渴望吸收活物。" +#. ~ Description for {'str': 'pair of steel bracers', 'str_pl': 'pairs of +#. steel bracers'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "A full assembly of medieval arm protection." +msgstr "一副完整的中世紀手臂保護裝置。" -#. ~ Description for {'str_sp': 'dragon blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood of a dragon, it radiates warmth and looking at it you see moving " -"patterns form and disappear in it as if looking at an actual fire." -msgstr "龍的鮮血,散發出溫暖的光芒,看著它,你會看到圖案在其中移動形成並消失,就好像看著真實的火焰一樣。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "steel bracer" +msgid_plural "steel bracers" +msgstr[0] "鋼護腕" -#. ~ Description for {'str_sp': 'tainted blood'} -#: data/mods/Magiclysm/items/fuel.json -msgid "" -"Blood from a blob corrupted creature. The surface of this black sludge " -"undulates slowly as if agitated by a soft breeze." -msgstr "被变形怪感染的生物的形似黑泥的血液。黑色淤泥状的表面如同被轻风吹动一般缓慢起伏。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of lesser defense" +msgid_plural "bracers of lesser defense" +msgstr[0] "次級防護護腕" -#. ~ Description for {'str': 'mana infused blood', 'str_pl': -#. 'mana_infused_blood'} -#: data/mods/Magiclysm/items/fuel.json +#. ~ Description for {'str': 'bracer of lesser defense', 'str_pl': 'bracers of +#. lesser defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." -msgstr "充满了魔法能量的血液。它发出微弱的蓝光。" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, silver accentuates the intricate design. It protects your body " +"with a light aura to reduce damage you take." +msgstr "輕巧但堅固的鋼製護腕,頂部刻有華麗的盾牌,銀色凸顯出精緻的設計。它具有輕微的靈氣保護你的身體,能減少受到的傷害。" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "crystallized mana" -msgid_plural "crystallized mana" -msgstr[0] "法力結晶" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "bracer of greater defense" +msgid_plural "bracers of greater defense" +msgstr[0] "高級防護護腕" -#. ~ Description for {'str_sp': 'crystallized mana'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'bracer of greater defense', 'str_pl': 'bracers +#. of greater defense'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"Some crystallized mana. This can be reloaded into rechargable mana " -"crystals, but can never be unloaded." -msgstr "一些結晶的法力。這可以重新裝填到可填充的法力水晶中,但永遠不能卸下。" +"A light but extremely sturdy steel bracer with an ornate shield engraved on " +"the top, gold accentuates the intricate design. It protects your body with " +"a strong aura to reduce damage you take." +msgstr "輕巧但堅固的鋼製護腕,頂部刻有華麗的盾牌,金色凸顯出精緻的設計。它具有強大的靈氣保護你的身體,能減少受到的傷害。" -#: data/mods/Magiclysm/items/mana_crystals.json -msgid "small mana crystal" -msgid_plural "small mana crystals" -msgstr[0] "小型法力水晶" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "lesser bracer of lightning" +msgid_plural "lesser bracers of lightning" +msgstr[0] "次級閃電護腕" -#. ~ Description for {'str': 'small mana crystal'} -#: data/mods/Magiclysm/items/mana_crystals.json +#. ~ Description for {'str': 'lesser bracer of lightning', 'str_pl': 'lesser +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"This is a small mana crystal specifically designed to be attached to wand " -"tips." -msgstr "這種小型法力水晶,專門設計用於連接魔杖的尖端。" +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, silver accentuates the intricate design. It " +"protects your body with a light aura to reduce electrical damage you take, " +"as well as being able to release a Jolt spell 3 times a day." +msgstr "" +"輕巧但堅固的鋼製護腕,頂部刻有華麗的閃電束,銀色凸顯出精緻的設計。它具有輕微的靈氣保護你的身體,能減少遭受的電擊傷害,並且每天可以施放 3 次猛擊術。" -#: data/mods/Magiclysm/items/materials.json -msgid "raw owlbear pelt" -msgid_plural "raw owlbear pelts" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json +msgid "greater bracer of lightning" +msgid_plural "greater bracers of lightning" +msgstr[0] "高級閃電護腕" -#. ~ Description for raw owlbear pelt -#: data/mods/Magiclysm/items/materials.json +#. ~ Description for {'str': 'greater bracer of lightning', 'str_pl': 'greater +#. bracers of lightning'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_bracers.json msgid "" -"A carefully folded raw skin harvested from an owlbear. It still has the fur" -" attached. You can cure it for storage and tanning, or eat it if you're " -"desperate enough." +"A light but extremely sturdy steel bracer with an ornate bundle of lightning" +" bolts engraved on the top, gold accentuates the intricate design. It " +"protects your body with a strong aura to reduce electrical damage you take, " +"as well as being able to release a Lightning Bolt spell 3 times a day." msgstr "" +"輕巧但堅固的鋼製護腕,頂部刻有華麗的閃電束,銀色凸顯出精緻的設計。它具有輕微的靈氣保護你的身體,能減少遭受的電擊傷害,並且每天可以施放 3 次閃電之箭。" -#: data/mods/Magiclysm/items/materials.json -msgid "cured owlbear pelt" -msgid_plural "cured owlbear pelts" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "'Silent Winds' suppressor" +msgid_plural "'Silent Winds' suppressors" +msgstr[0] "\"静风\"消音器" -#. ~ Description for {'str': 'cured owlbear pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A rolled up owlbear hide which has been scraped of extraneous hair and flesh" -" and treated to prevent decay. It could be tanned and transformed into " -"usable fur pelts." -msgstr "" +"Rather than using purely wipe media, an additional localized silence spell " +"in this tube quiets gunshots going through to hearing-safe levels." +msgstr "除了消音材料之外,这个消音器还含有一个小范围静音法术,能够把枪声降低到对听力安全的水平。" -#: data/mods/Magiclysm/items/materials.json -msgid "owlbear fur pelt" -msgid_plural "owlbear fur pelts" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (rail)" +msgid_plural "mana laser sights (rail)" +msgstr[0] "魔法激光瞄具(导轨)" -#. ~ Description for {'str': 'owlbear fur pelt'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A small bolt of fur from an owlbear. Can be used for VERY warm clothing." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit under the barrel." msgstr "" +"小型可见激光发射器,使用魔力水晶发射激光,可安装在枪械上,增加命中率与瞄准速度。完全没有缺点——除了增加一点点重量。你可以旋转导轨将其变成管下瞄具。" -#: data/mods/Magiclysm/items/materials.json -msgid "dragon bone" -msgid_plural "dragon bones" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana laser sight (underbarrel)" +msgid_plural "mana laser sights (underbarrel)" +msgstr[0] "魔法激光瞄具(管下)" -#. ~ Description for {'str': 'dragon bone'} -#: data/mods/Magiclysm/items/materials.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"A bone from a dragon! Even on its own, these bones make an excellent " -"material for weapons. However, something tells you that the bones hide more" -" secrets than just that." +"A small visible-light laser using light shown through a mana crystal that " +"mounts on a firearm's accessory rail to enhance ease and speed of target " +"acquisition. Aside from increased weight, there are no drawbacks. You can " +"rotate the attachment rail to fit on the rail." msgstr "" +"小型可见激光发射器,使用魔力水晶发射激光,可安装在枪械上,增加命中率与瞄准速度。完全没有缺点——除了增加一点点重量。你可以旋转导轨将其变成导轨瞄具。" -#: data/mods/Magiclysm/items/melee.json -msgid "Mjölnir" -msgid_plural "Mjölnirs" -msgstr[0] "雷神錘" +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json +msgid "mana dot sight" +msgid_plural "mana dot sights" +msgstr[0] "魔法蓝点瞄准镜" -#. ~ Description for {'str': 'Mjölnir'} -#: data/mods/Magiclysm/items/melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_gunmods.json msgid "" -"Mjölnir, the legendary hammer of Thor. It is rumored to be able to level " -"mountains with a single blow. You feel the power of Asgard coursing through" -" the hammer." -msgstr "妙尔尼尔,传说中雷神索尔使用的锤子。据传只要一击就能把整座大山夷为平地。你能通过锤子感受到来自仙宫阿斯加德的力量。" +"Adds a blue dot optic made from crystallized mana to the top of your gun, " +"replacing the iron sights. Increases accuracy and weight." +msgstr "在你的枪上安装一个使用魔力结晶发光的蓝点瞄具以取代机械瞄准具。提高命中率,增加重量。" -#: data/mods/Magiclysm/items/melee.json -msgid "Gungnir" -msgid_plural "Gungnirs" -msgstr[0] "永恆之槍" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "magic mask" +msgid_plural "magic masks" +msgstr[0] "魔法面具" -#. ~ Description for {'str': 'Gungnir'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"Gungnir, the spear of Odin. It is rumored to be the perfect spear, " -"perfectly hitting any target regardless of the wielder's strength or skill." -" If feels like Odin's protecting you." -msgstr "" -"冈格尼尔,传说中北欧众神之父奥丁使用的长矛。据传它是完美的长矛,无论持用者的力量或技能如何,它都能完美地击中任何目标。拿着它让你有种被奥丁守护的感觉。" +#. ~ Description for magic mask +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "A generic magic mask." +msgstr "一張普通的魔法面具。" -#: data/mods/Magiclysm/items/melee.json -msgid "Gram" -msgid_plural "Grams" -msgstr[0] "Gram,胜利之剑" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of disappearance" +msgid_plural "masks of disappearance" +msgstr[0] "消逝面具" -#. ~ Description for {'str': 'Gram'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of disappearance', 'str_pl': 'masks of +#. disappearance'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"Gram, the sword of Sigurd. It is rumored to be the sword that slayed the " -"legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " -"the edge is impeccable." -msgstr "古拉姆,传说中英雄齐格鲁德使用的魔剑。据传是斩杀传说中恶龙法夫尼尔的剑。据说曾将侏儒雷金的铁砧劈成两半,它的剑刃无懈可击。" +"A mask with no facial features at all, just eye and mouth holes, upon " +"activation it makes everything ignore your presence for a while." +msgstr "完全沒有面部特徵,只有眼孔和嘴孔的面具,當啟動時,它會使所有東西在一段時間內忽視你的存在。" -#: data/mods/Magiclysm/items/melee.json -msgid "Laevateinn" -msgid_plural "Laevateinns" -msgstr[0] "勝利之劍" +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json +msgid "mask of perfect vision" +msgid_plural "masks of perfect vision" +msgstr[0] "完美視覺面具" -#. ~ Description for {'str': 'Laevateinn'} -#: data/mods/Magiclysm/items/melee.json +#. ~ Description for {'str': 'mask of perfect vision', 'str_pl': 'masks of +#. perfect vision'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_masks.json msgid "" -"Laevateinn, the staff of Loki. Said to have been plucked from the gates of " -"Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" -" himself." -msgstr "" -"一柄北欧神话丰饶之神弗雷与巨人苏尔特所使用的魔剑,又名烈焰之剑、胜利之剑、炎之魔剑。传说中欺骗之神(亦是火神)洛基使用的魔杖,所以又名灾厄之杖,在《洛基的吵骂》中,洛基责骂弗雷因美色丢失了此武器,据说是由洛基从冥界海拉城门上拔出来的。传说中这把剑永远燃烧着火痛名它的光芒如同太阳程耀眼,于请神的黄昏战结束时苏尔特持此剑焚毁了整个世界,后下落不明。它充满了神秘的魔力,来自欺诈之神自己的魔力。" +"A decidedly steampunk-looking half mask that covers the eye area of the " +"face, it has large lenses that correct and greatly enhance the vision of the" +" wearer." +msgstr "這款看起來像蒸汽龐克的半面罩覆蓋了臉部的眼睛區域,它具有可矯正並大大增強佩戴者視力的大鏡片。" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum combat knife" -msgid_plural "orichalcum combat knives" -msgstr[0] "山铜战术匕首" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +1" +msgid_plural "cudgel +1s" +msgstr[0] "棒槌 +1" -#. ~ Description for {'str': 'orichalcum combat knife', 'str_pl': 'orichalcum -#. combat knives'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the combat knife that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this knife " -"also has a thinner blade, which shaves off some weight." -msgstr "一把由山铜而不是钢材制成的战术匕首。山铜制品比钢更锋利,更容易维护,虽然密度和钢一样,但它的刀刃更薄,减少了自身的重量。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cudgel +2" +msgid_plural "cudgel +2s" +msgstr[0] "棒槌 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum longsword" -msgid_plural "orichalcum longswords" -msgstr[0] "山铜长剑" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +1" +msgid_plural "quarterstaff +1s" +msgstr[0] "木杖 +1" -#. ~ Description for {'str': 'orichalcum longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of orichalcum instead of steel. " -"Sharper and easier to maintain than steel while just as dense, this " -"longsword also has a thinner blade, which shaves off some weight." -msgstr "一把由山铜而不是钢材制成的长剑。山铜制品比钢更锋利,更容易维护,虽然密度和钢一样,但它的剑刃更薄,减少了自身的重量。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "quarterstaff +2" +msgid_plural "quarterstaff +2s" +msgstr[0] "木杖 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "orichalcum fire axe" -msgid_plural "orichalcum fire axes" -msgstr[0] "山铜消防斧" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaff +1s" +msgstr[0] "鐵頭木杖 +1" -#. ~ Description for {'str': 'orichalcum fire axe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A fire axe made with orichalcum instead of steel. This makes it possible to" -" chop through harder materials, and in the very well-funded fire stations is" -" preferred." -msgstr "一把由山铜而不是钢材制成的消防斧。这让它能够砍开更坚硬的材质,成为资金非常充足的消防局的首选消防斧。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaff +2s" +msgstr[0] "鐵頭木杖 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone longsword" -msgid_plural "dragonbone longswords" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +1" +msgid_plural "longsword +1s" +msgstr[0] "長劍 +1" -#. ~ Description for {'str': 'dragonbone longsword'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the longsword that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "longsword +2" +msgid_plural "longsword +2s" +msgstr[0] "長劍 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone battleaxe" -msgid_plural "dragonbone battleaxes" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +1" +msgid_plural "sledge hammer +1s" +msgstr[0] "大鎚 +1" -#. ~ Description for {'str': 'dragonbone battleaxe'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the battleaxe that is made of dragonbone. This makes for a " -"very powerful blade without sacrificing durability. Even better than " -"orichalcum, and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "sledge hammer +2" +msgid_plural "sledge hammer +2s" +msgstr[0] "大鎚 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone qiang" -msgid_plural "dragonbone qiangs" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "重钢锤 +1" -#. ~ Description for {'str': 'dragonbone qiang'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the qiang that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" +msgstr[0] "重钢锤 +2" -#: data/mods/Magiclysm/items/melee.json -msgid "dragonbone tachi" -msgid_plural "dragonbone tachis" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +1" +msgid_plural "warhammer +1s" +msgstr[0] "戰槌 +1" -#. ~ Description for {'str': 'dragonbone tachi'} -#: data/mods/Magiclysm/items/melee.json -msgid "" -"A variant of the tachi that is made of dragonbone. This makes for a very " -"powerful blade without sacrificing durability. Even better than orichalcum," -" and you can sense that this isn't even its final form." -msgstr "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "warhammer +2" +msgid_plural "warhammer +2s" +msgstr[0] "戰槌 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "lump of orichalcum" -msgid_plural "lumps of orichalcum" -msgstr[0] "山铜块" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +1" +msgid_plural "bat +1s" +msgstr[0] "球棒 +1" -#. ~ Description for {'str': 'lump of orichalcum', 'str_pl': 'lumps of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A lump of raw orichalcum. Needs to be reformed into an ingot to be useful." -msgstr "一块未经过处理的山铜。需要先将其打造成锭才能进一步使用。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "bat +2" +msgid_plural "bat +2s" +msgstr[0] "球棒 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "sliver of orichalcum" -msgid_plural "slivers of orichalcum" -msgstr[0] "山铜片" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +1" +msgid_plural "aluminum bat +1s" +msgstr[0] "鋁製球棒 +1" -#. ~ Description for {'str': 'sliver of orichalcum', 'str_pl': 'slivers of -#. orichalcum'} -#: data/mods/Magiclysm/items/metals.json -msgid "" -"A sliver of orichalcum broken from a larger piece. Needs to be reformed " -"into an ingot to be useful." -msgstr "一块未经过处理的山铜碎片。需要先将其打造成锭才能进一步使用。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "aluminum bat +2" +msgid_plural "aluminum bat +2s" +msgstr[0] "鋁製球棒 +2" -#: data/mods/Magiclysm/items/metals.json -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" -msgstr[0] "山铜锭" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +1" +msgid_plural "steel spear +1s" +msgstr[0] "鋼矛+1" -#. ~ Description for orichalcum ingot -#: data/mods/Magiclysm/items/metals.json -msgid "" -"An ingot of orichalcum. About 3 cm by 7 cm by 12 cm in size, ready to be " -"used for various blacksmithing tasks." -msgstr "一块山铜锭。约有3x7x12厘米大小,能够被用来锻造成各种物品。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "steel spear +2" +msgid_plural "steel spear +2s" +msgstr[0] "鋼矛+2" -#: data/mods/Magiclysm/items/metals.json -msgid "liquid mercury" -msgid_plural "liquid mercury" -msgstr[0] "液态汞" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +1" +msgid_plural "qiang +1s" +msgstr[0] "中式槍 +1" -#. ~ Description for {'str_sp': 'liquid mercury'} -#: data/mods/Magiclysm/items/metals.json -msgid "Elemental liquid mercury. Known for its use in thermometers." -msgstr "液态的汞元素,以其在温度计中的使用而闻名。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "qiang +2" +msgid_plural "qiang +2s" +msgstr[0] "中式槍 +2" -#: data/mods/Magiclysm/items/mutagen.json -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" -msgstr[0] "浓缩魔力血清" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +1" +msgid_plural "halberd +1s" +msgstr[0] "長戟 +1" -#. ~ Description for concentrated mana serum -#: data/mods/Magiclysm/items/mutagen.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "halberd +2" +msgid_plural "halberd +2s" +msgstr[0] "長戟 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +1" +msgid_plural "glaive +1s" +msgstr[0] "長柄刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "glaive +2" +msgid_plural "glaive +2s" +msgstr[0] "長柄刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +1" +msgid_plural "naginata +1s" +msgstr[0] "薙刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "naginata +2" +msgid_plural "naginata +2s" +msgstr[0] "薙刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +1" +msgid_plural "mace +1s" +msgstr[0] "硬頭錘 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "mace +2" +msgid_plural "mace +2s" +msgstr[0] "硬頭錘 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +1" +msgid_plural "morningstar +1s" +msgstr[0] "流星錘 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "morningstar +2" +msgid_plural "morningstar +2s" +msgstr[0] "流星錘 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +1" +msgid_plural "jian +1s" +msgstr[0] "中式劍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "jian +2" +msgid_plural "jian +2s" +msgstr[0] "中式劍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +1" +msgid_plural "scimitar +1s" +msgstr[0] "彎刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "scimitar +2" +msgid_plural "scimitar +2s" +msgstr[0] "彎刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +1" +msgid_plural "estoc +1s" +msgstr[0] "穿甲劍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "estoc +2" +msgid_plural "estoc +2s" +msgstr[0] "穿甲劍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +1" +msgid_plural "arming sword +1s" +msgstr[0] "騎士劍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "arming sword +2" +msgid_plural "arming sword +2s" +msgstr[0] "騎士劍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +1" +msgid_plural "broadsword +1s" +msgstr[0] "闊劍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "broadsword +2" +msgid_plural "broadsword +2s" +msgstr[0] "闊劍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +1" +msgid_plural "battle axe +1s" +msgstr[0] "戰斧 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "battle axe +2" +msgid_plural "battle axe +2s" +msgstr[0] "戰斧 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +1" +msgid_plural "cavalry sabre +1s" +msgstr[0] "騎兵軍刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cavalry sabre +2" +msgid_plural "cavalry sabre +2s" +msgstr[0] "騎兵軍刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +1" +msgid_plural "crowbar +1s" +msgstr[0] "撬棍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "crowbar +2" +msgid_plural "crowbar +2s" +msgstr[0] "撬棍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +1" +msgid_plural "cutlass +1s" +msgstr[0] "海盜彎刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "cutlass +2" +msgid_plural "cutlass +2s" +msgstr[0] "海盜彎刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +1" +msgid_plural "fire axe +1s" +msgstr[0] "消防斧 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "fire axe +2" +msgid_plural "fire axe +2s" +msgstr[0] "消防斧 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +1" +msgid_plural "katana +1s" +msgstr[0] "武士刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "katana +2" +msgid_plural "katana +2s" +msgstr[0] "武士刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +1" +msgid_plural "combat knife +1s" +msgstr[0] "戰鬥刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "combat knife +2" +msgid_plural "combat knife +2s" +msgstr[0] "戰鬥刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +1" +msgid_plural "hunting knife +1s" +msgstr[0] "獵刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "hunting knife +2" +msgid_plural "hunting knife +2s" +msgstr[0] "獵刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +1" +msgid_plural "survival knife +1s" +msgstr[0] "生存者戰鬥刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "survival knife +2" +msgid_plural "survival knife +2s" +msgstr[0] "生存者戰鬥刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +1" +msgid_plural "trench knife +1s" +msgstr[0] "雙刃短刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "trench knife +2" +msgid_plural "trench knife +2s" +msgstr[0] "雙刃短刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +1" +msgid_plural "kris +1s" +msgstr[0] "馬來短劍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kris +2" +msgid_plural "kris +2s" +msgstr[0] "馬來短劍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +1" +msgid_plural "kukri +1s" +msgstr[0] "反曲刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "kukri +2" +msgid_plural "kukri +2s" +msgstr[0] "反曲刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +1" +msgid_plural "nodachi +1s" +msgstr[0] "野太刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "nodachi +2" +msgid_plural "nodachi +2s" +msgstr[0] "野太刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +1" +msgid_plural "pickaxe +1s" +msgstr[0] "十字鎬 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pickaxe +2" +msgid_plural "pickaxe +2s" +msgstr[0] "十字鎬 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +1" +msgid_plural "pike +1s" +msgstr[0] "長柄槍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "pike +2" +msgid_plural "pike +2s" +msgstr[0] "長柄槍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +1" +msgid_plural "rapier +1s" +msgstr[0] "護手刺劍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "rapier +2" +msgid_plural "rapier +2s" +msgstr[0] "護手刺劍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +1" +msgid_plural "tanto +1s" +msgstr[0] "短刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "tanto +2" +msgid_plural "tanto +2s" +msgstr[0] "短刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +1" +msgid_plural "wakizashi +1s" +msgstr[0] "脇差 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "wakizashi +2" +msgid_plural "wakizashi +2s" +msgstr[0] "脇差 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +1" +msgid_plural "zweihänder +1s" +msgstr[0] "德國雙手劍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "zweihänder +2" +msgid_plural "zweihänder +2s" +msgstr[0] "德國雙手劍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +1" +msgid_plural "khopesh +1s" +msgstr[0] "霍佩什彎刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "khopesh +2" +msgid_plural "khopesh +2s" +msgstr[0] "霍佩什彎刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +1" +msgid_plural "xiphos +1s" +msgstr[0] "希臘劍 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "xiphos +2" +msgid_plural "xiphos +2s" +msgstr[0] "希臘劍 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +1" +msgid_plural "dao +1s" +msgstr[0] "中式刀 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "dao +2" +msgid_plural "dao +2s" +msgstr[0] "中式刀 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "琉森锤 +1" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "琉森锤 +2" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "弹簧长杖(甩棍)" + +#. ~ Use action menu_text for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Extend to staff" +msgstr "展开" + +#. ~ Use action msg for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You snap open your springstaff into staff mode." +msgstr "你将弹簧长杖展开成长杖模式。" + +#. ~ Description for {'str': 'springstaff(baton)', 'str_pl': +#. 'springstaves(baton)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" -msgstr "一种高度浓缩的魔法药剂。你不太确定它的效果都有什么……" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "这种多用途武器使用科技魔法增强过的弹簧以保持长杖两端在甩棍模式时收回。激活以展开。" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of fireballs" -msgid_plural "wands of fireballs" -msgstr[0] "火球法杖" +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" +msgstr[0] "弹簧长杖(长杖)" -#. ~ Description for {'str': 'wand of fireballs', 'str_pl': 'wands of -#. fireballs'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action menu_text for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "Retract to baton" +msgstr "折叠" + +#. ~ Use action msg for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json +msgid "You collapse your springstaff into baton mode." +msgstr "你将弹簧长杖折叠成甩棍模式。" + +#. ~ Description for {'str': 'springstaff(staff)', 'str_pl': +#. 'springstaves(staff)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_melee.json msgid "" -"A classic, this wand shoots fireballs without fail. A more skilled " -"Kelvinist could cast them more efficiently, though." -msgstr "這是一款經典的魔杖,可以不失誤地施展火球術。技藝熟練的熱力學者可以更有效地使用它。" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "这种多用途武器使用科技魔法增强过的弹簧以保持长杖两端在甩棍模式时收回。激活以折叠。" -#: data/mods/Magiclysm/items/obsolete.json -msgid "wand of magic missiles" -msgid_plural "wands of magic missiles" -msgstr[0] "魔法飞弹法杖" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube" +msgid_plural "heat cubes" +msgstr[0] "热立方" -#. ~ Description for {'str': 'wand of magic missiles', 'str_pl': 'wands of -#. magic missiles'} -#: data/mods/Magiclysm/items/obsolete.json +#. ~ Use action menu_text for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "Activate torch mode" +msgstr "启动火炬模式" + +#. ~ Use action msg for heat cube. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A classic, this wand shoots magic missiles without fail. A more skilled " -"Magus could cast them more efficiently, though." -msgstr "這是一款經典的魔杖,可以不失誤地發射魔法飛彈。技藝熟練的祆教徒可以更有效地使用它。" +"You push the torch button and the cube emits a large flame from the top, one" +" that does radiate heat, but won't burn anything." +msgstr "你按下火炬按钮,热立方上方随即喷出了一道巨大的火焰。这道火焰会散发热量,但是不会引燃其它物品。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" -msgstr[0] "《黑龍:沼澤廢墟》的副本" +#. ~ Description for heat cube +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A smooth steel cube the size of your fist. Several buttons on the sides " +"activate the powers of the cube." +msgstr "一个有你拳头大的光滑钢制立方体,上面有数个按钮,能够启动热立方的不同功能。" -#. ~ Description for {'str': 'Black Dragons: Swamp Ruins', 'str_pl': 'copies -#. of Black Dragons: Swamp Ruins'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "heat cube (torch on)" +msgid_plural "heat cubes (torch on)" +msgstr[0] "热立方(点亮)" + +#. ~ Use action msg for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The torch flame is extinguished." +msgstr "热立方的火焰熄灭了。" + +#. ~ Description for {'str': 'heat cube (torch on)', 'str_pl': 'heat cubes +#. (torch on)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"This book details black dragons: The most evil of dragons, who live in ruins" -" generally in swamps. Immune to acid and breathe acid. The book also " -"details how to prepare its hide and craft various armors that make use of " -"some of its acid resistance." -msgstr "" -"這本書詳細介紹了黑龍:最邪惡的龍,通常生活在沼澤中的廢墟中。對酸免疫並且會酸性吐息。這本書還詳細介紹如何處理它的皮革,並利用它的耐酸性來製作各種護甲。" +"The heat cube in the torch configuration, where it emits warmth and a bright" +" flame that does not burn." +msgstr "热立方目前处于火炬模式,正发出一道温暖的闪耀火焰,却不会引燃其它物品。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" -msgstr[0] "《煉金術初學指南》的副本" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "skeleton key of opening" +msgid_plural "skeleton keys of opening" +msgstr[0] "魔法万能钥匙" -#. ~ Description for {'str': "A Beginner's Guide to Alchemy", 'str_pl': -#. "copies of A Beginner's Guide to Alchemy"} -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A paperback tome for the art of liquid magic, alcohol not included." -msgstr "一本關於液態魔法技藝的平裝魔典,但不包括酒類。" +#. ~ Description for {'str': 'skeleton key of opening', 'str_pl': 'skeleton +#. keys of opening'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "" +"A small gold skeleton key. You can activate it to unlock locked things." +msgstr "一把金制万能钥匙。你可以用它来开锁。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" -msgstr[0] "《死靈法術的靈魂束縛者指南》的副本" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "everburning torch" +msgid_plural "everburning torches" +msgstr[0] "不灭火炬" -#. ~ Description for {'str': "A Soulbinder's Guide to Necromancy", 'str_pl': -#. "copies of A Soulbinder's Guide to Necromancy"} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'everburning torch', 'str_pl': 'everburning +#. torches'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." -msgstr "一本平裝魔典,記述將不死生物靈魂綁定到玩偶的技藝,以及模仿它們的治療因子。" +"This is a high quality engraved wooden torch. On command, the tip bursts " +"into flame and produces a fair amount of light. It will burn forever." +msgstr "这是一把优质的木制雕花火炬。你可以随意令其燃烧,用它照亮四周,而它永远不会烧尽。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" -msgstr[0] "魔法科技图解" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "endless flask" +msgid_plural "endless flasks" +msgstr[0] "無盡瓶" -#. ~ Description for {'str': 'Magitek Illustrated', 'str_pl': 'copies of -#. Magitek Illustrated'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Use action msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgstr "你打開瓶子,發現裡面充滿了甜美的、甜美的,威士忌!" + +#. ~ Use action not_ready_msg for {'str': 'endless flask'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "The flask isn't done refilling yet." +msgstr "這瓶子還沒完成續滿。" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "enchanted tailor's kit" +msgid_plural "enchanted tailor's kits" +msgstr[0] "附魔裁縫工具" + +#. ~ Description for enchanted tailor's kit +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A paperback tome for the art of combining modern technology with magic. " -"There is a disclaimer on the back: `Cannith Industries bears no " -"responsibility for malfunctions or accidents for any products mentioned " -"herein`." +"This is a high quality, engraved steel kit with a variety of needles, some " +"plastic spools for thread, some small scissors, even a small heating element" +" for melting and joining plastic. Use a tailor's kit to customize your " +"clothing and armor. This uses your tailoring skill. It also contains one " +"of those magic spiders that constantly, if slowly, makes new thread." msgstr "" -"一本平装本书籍,主题是将现代科技和魔法结合的技术。书背上有一段免责声明:“坎尼斯工业对使用本书所涉及的任何产品所引发的故障或事故不负任何责任”。" +"這是一個高品質的雕刻綱製工具盒,裝著各種針頭與一些纏繞縫線的塑膠線軸,一些小剪刀,甚至有小型的加熱元件,能夠融化與加工塑膠。使用裁縫工具能夠修改你的衣物與護甲。取決於你的裁縫技能。它也包含一隻魔法蜘蛛,會持續而緩慢地產出新的縫線。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" -msgstr[0] "阿斯加德之武" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "spider box" +msgid_plural "spider boxes" +msgstr[0] "蜘蛛盒" -#. ~ Description for {'str': 'The Weapons of Asgard and Beyond', 'str_pl': -#. 'copies of The Weapons of Asgard and Beyond'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'spider box', 'str_pl': 'spider boxes'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"An ornate book which appears to be written in Norse runes. Based on the " -"detailed illustrations, it appears to contain information about crafting " -"numerous weapons used by various Gods." -msgstr "一本精美华丽的古书,似乎是用北欧符文写的。从书中详细的插图来看,它似乎包含了关于制造北欧众神所使用的各种武器的信息。" +"This is a small glass box that contains a spider that diligently works day " +"and night to produce silk thread that it stores in a reservoir you can open " +"and retrieve it from." +msgstr "这是一个装着一只蜘蛛的小玻璃盒。这只蜘蛛日以继夜地产出丝线并储存起来,你打开盒子便可以收集。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" -msgstr[0] "与毒共煮" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" +msgstr[0] "魔法閱讀燈(蓋上)" -#. ~ Description for {'str': 'Cooking with Poison', 'str_pl': 'copies of -#. Cooking with Poison'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for {'str': 'magical reading light (covered)', 'str_pl': +#. 'magical reading lights (covered)'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." -msgstr "一本皮面精装书,封面上有个凸印的大锅图案。书中详细地描述了各种使用魔法净化食物的方法。" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. The cover is closed. Use it to open the cover and show the" +" light." +msgstr "這種極其昂貴的小光源用發光粉和次級法力藥水提供動力,提供閱讀時足夠的光源長達至少十年。蓋子已經蓋上。使用它來打開蓋子並顯示燈光。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" -msgstr[0] "传奇炼金者手册" +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json +msgid "magical reading light" +msgid_plural "magical reading lights" +msgstr[0] "魔法閱讀燈" -#. ~ Description for {'str': 'Metals of Legend', 'str_pl': 'copies of Metals -#. of Legend'} -#: data/mods/Magiclysm/items/recipe_books.json +#. ~ Description for magical reading light +#: data/mods/Magical_Nights/items/enchanted/enchanted_misc.json msgid "" -"A book with a brass coverplate. It professes to teach one how to make " -"magical metals such as Orichalcum. It is dry reading even for an alchemical" -" tome." -msgstr "一本有着黄铜板封面的书。它号称能够教人如何制造山铜等魔法金属。即使按照炼金术手册的标准来说,它也要更枯燥乏味。" +"Powered by the magic of glow powder and lesser mana potions, this extremely " +"expensive little light will provide just enough light to read by for at " +"least a decade. Use it to close the cover and hide the light." +msgstr "這種極其昂貴的小光源用發光粉和次級法力藥水提供動力,提供閱讀時足夠的光源長達至少十年。使用它來蓋上蓋子並隱藏燈光。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" -msgstr[0] "魔法生物防护手册" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "M47A1 Techno-Medusa" +msgid_plural "M47A1 Techno-Medusae" +msgstr[0] "M47A1 科技魔法\"美杜莎\"左轮手枪" -#. ~ Description for {'str': 'Protection from Magical Beasts', 'str_pl': -#. 'copies of Protection from Magical Beasts'} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A leatherbound book with a picture of a shield holding back dragonfire on " -"the cover. There are many ways to turn monster skins and hides into " -"protective equipment inside." -msgstr "一本皮革装订的书,封面上画着一个盾牌挡住了龙炎。里面描述了把各种怪物毛皮制成防护装备的方法。" +"A magically-enhanced update to the Phillips & Rodgers' M47 Medusa, a multi-" +"caliber revolver aimed at survivalists. While Technomancy improves the " +"reliability with smaller cartridges, it is not as accurate as dedicated " +"caliber revolvers due to freebore." +msgstr "" +"一把经过魔法增强的菲利普斯和罗杰斯公司出品的 M47 " +"\"美杜莎\"左轮手枪,这把手枪是一把多口径左轮手枪,专为生存主义者定制。虽然科技魔法提高了手枪发射小口径子弹时的可靠性,但由于是滑膛发射,和对应口径的左轮手枪相比命中率还是略低。" -#: data/mods/Magiclysm/items/recipe_books.json -msgid "Enchanter's Guidebook" -msgid_plural "copies of Enchanter's Guidebooks" -msgstr[0] "" +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json +msgid "gunblade" +msgid_plural "gunblades" +msgstr[0] "枪刃" -#. ~ Description for {'str': "Enchanter's Guidebook", 'str_pl': "copies of -#. Enchanter's Guidebooks"} -#: data/mods/Magiclysm/items/recipe_books.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_ranged.json msgid "" -"A hefty textbook on the theory and practice of magically strengthening " -"weapons and tools." -msgstr "一本厚重的关于武器和工具附魔理论与实践的教科书。" +"Constructed similarly to a falcata, this forward-sloping blade has a short-" +"barrel pump shotgun attached to the blade's spine for finishing blows or a " +"first strike." +msgstr "它的结构类似于一把伊比利亚短剑,这把向前倾斜的短刀上有一把短筒泵动式霰弹枪,连接在刀背上,以终结对手或先发打击。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" -msgstr[0] "法術卷軸" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "copper magic ring" +msgid_plural "copper magic rings" +msgstr[0] "魔法銅戒指" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" -msgstr[0] "魔力结晶卷轴" +#. ~ Description for copper magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic copper magic ring." +msgstr "一枚普通的魔法銅戒指。" -#. ~ Description for {'str': 'Scroll of Crystallize Mana', 'str_pl': 'Scrolls -#. of Crystallize Mana'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" -msgstr "一名合格的巫师永远准备周全,把你的魔力结晶化以留待未来!" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "magic ring" +msgid_plural "magic rings" +msgstr[0] "魔法戒指" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" -msgstr[0] "黑暗视觉卷轴" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic silver magic ring." +msgstr "一枚普通的魔法銀戒指。" -#. ~ Description for {'str': 'Scroll of Dark Sight', 'str_pl': 'Scrolls of -#. Dark Sight'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" -msgstr "在此奧術之前黑暗無所遁藏。調整你的視覺成完美夜視。" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic gold magic ring." +msgstr "一枚普通的魔法金戒指。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" -msgstr[0] "隐身术卷轴" +#. ~ Description for magic ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A generic platinum magic ring." +msgstr "一枚普通的魔法鉑戒指。" -#. ~ Description for {'str': 'Scroll of Invisibility', 'str_pl': 'Scrolls of -#. Invisibility'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of blades" +msgid_plural "rings of blades" +msgstr[0] "刀刃戒指" + +#. ~ Description for {'str': 'ring of blades', 'str_pl': 'rings of blades'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" -msgstr "没有你的允许,光将不会与你发生作用。隐身!" +"An ornate silver ring engraved with daggers that conjures a near perfect " +"throwing knife into your hand on activation." +msgstr "一枚雕有匕首的華麗銀戒指,使用後會幻化成一把在你手中近乎完美的飛刀。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" -msgstr[0] "朦胧术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "eel ring" +msgid_plural "eel rings" +msgstr[0] "鳗鱼戒指" -#. ~ Description for {'str': 'Scroll of Obfuscated Body', 'str_pl': 'Scrolls -#. of Obfuscated Body'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for eel ring +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." -msgstr "一个魔法光环扭曲了你身体周围的光线,使你更容易闪避敌人的攻击。" +"A thin silver band ring, depicting an eel coiled on itself. Allows you to " +"dodge an extra attack per turn." +msgstr "一个轻薄的银戒指,上面画着一条鳗鱼。让你每回合额外闪避一次攻击。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" -msgstr[0] "全息换位术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "bicephalous eel ring" +msgid_plural "bicephalous eel rings" +msgstr[0] "双头鳗鱼戒指" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" -msgstr[0] "神圣惩击卷轴" +#. ~ Description for {'str': 'bicephalous eel ring'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" +" you to dodge two extra attacks per turn." +msgstr "一个轻薄的金戒指,上面画着一条盘绕在自己身上的双头鳗鱼。让你每回合额外闪避两次攻击。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" -msgstr[0] "生命分流卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +1" +msgid_plural "rings of strength +1" +msgstr[0] "力量戒指 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" -msgstr[0] "心胜于痛卷轴" +#. ~ Description for {'str': 'ring of strength +1', 'str_pl': 'rings of +#. strength +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little stronger when you wear it." +msgstr "一枚銅戒指,戴上它會使你稍微強壯一點。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" -msgstr[0] "召唤丧尸卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +2" +msgid_plural "rings of strength +2" +msgstr[0] "力量戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" -msgstr[0] "召唤骷髅卷轴" +#. ~ Description for {'str': 'ring of strength +2', 'str_pl': 'rings of +#. strength +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit stronger when you wear it." +msgstr "一枚銀戒指,戴上它會使你變得強壯。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" -msgstr[0] "召唤飘浮碟卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +3" +msgid_plural "rings of strength +3" +msgstr[0] "力量戒指 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" -msgstr[0] "召唤腐朽突袭兽卷轴" +#. ~ Description for {'str': 'ring of strength +3', 'str_pl': 'rings of +#. strength +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly stronger when you wear it." +msgstr "一枚金戒指,戴上它會使你變得非常強壯。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" -msgstr[0] "治疗轻伤卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of strength +4" +msgid_plural "rings of strength +4" +msgstr[0] "力量戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" -msgstr[0] "伤痛分流卷轴" +#. ~ Description for {'str': 'ring of strength +4', 'str_pl': 'rings of +#. strength +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much stronger when you wear it." +msgstr "一枚鉑戒指,戴上它會使你強壯許多。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" -msgstr[0] "残暴之鞭卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +1" +msgid_plural "rings of dexterity +1" +msgstr[0] "敏捷戒指 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" -msgstr[0] "扭曲强化卷轴" +#. ~ Description for {'str': 'ring of dexterity +1', 'str_pl': 'rings of +#. dexterity +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little more agile when you wear it." +msgstr "一枚銅戒指,戴上它會使你稍微敏捷一點。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" -msgstr[0] "酸液喷射卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +2" +msgid_plural "rings of dexterity +2" +msgstr[0] "敏捷戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" -msgstr[0] "肉身成袋卷轴" +#. ~ Description for {'str': 'ring of dexterity +2', 'str_pl': 'rings of +#. dexterity +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit more agile when you wear it." +msgstr "一枚銀戒指,戴上它會使你變得敏捷。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "白骨之矛卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +3" +msgid_plural "rings of dexterity +3" +msgstr[0] "敏捷戒指 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" -msgstr[0] "炽能冲击卷轴" +#. ~ Description for {'str': 'ring of dexterity +3', 'str_pl': 'rings of +#. dexterity +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you surprisingly more agile when you wear it." +msgstr "一枚金戒指,戴上它會使你變得非常敏捷。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "魔法阅读灯卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of dexterity +4" +msgid_plural "rings of dexterity +4" +msgstr[0] "敏捷戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" -msgstr[0] "致盲闪光卷轴" +#. ~ Description for {'str': 'ring of dexterity +4', 'str_pl': 'rings of +#. dexterity +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more agile when you wear it." +msgstr "一枚鉑戒指,戴上它會使你敏捷許多。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "幽影攫抓卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +1" +msgid_plural "rings of intelligence +1" +msgstr[0] "智力戒指 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" -msgstr[0] "保护光环卷轴" +#. ~ Description for {'str': 'ring of intelligence +1', 'str_pl': 'rings of +#. intelligence +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more intelligent when you wear it." +msgstr "一枚銅戒指,戴上它會使你稍微聰明一點。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "藤蔓缠绕卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +2" +msgid_plural "rings of intelligence +2" +msgstr[0] "智力戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" -msgstr[0] "树根穿刺卷轴" +#. ~ Description for {'str': 'ring of intelligence +2', 'str_pl': 'rings of +#. intelligence +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more intelligent when you wear it." +msgstr "一枚銀戒指,戴上它會使你變得聰明。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "硬木投掷卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +3" +msgid_plural "rings of intelligence +3" +msgstr[0] "智力戒指 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" -msgstr[0] "自然之弓卷轴" +#. ~ Description for {'str': 'ring of intelligence +3', 'str_pl': 'rings of +#. intelligence +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you surprisingly more intelligent when you wear it." +msgstr "一枚金戒指,戴上它會使你變得非常聰明。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "自然冥想卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of intelligence +4" +msgid_plural "rings of intelligence +4" +msgstr[0] "智力戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" -msgstr[0] "袋装猫咪卷轴" +#. ~ Description for {'str': 'ring of intelligence +4', 'str_pl': 'rings of +#. intelligence +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more intelligent when you wear it." +msgstr "一枚鉑戒指,戴上它會使你聰明許多。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "大地之拳卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +1" +msgid_plural "rings of perception +1" +msgstr[0] "感知戒指 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" -msgstr[0] "战争践踏卷轴" +#. ~ Description for {'str': 'ring of perception +1', 'str_pl': 'rings of +#. perception +1'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that makes you a little more perceptive when you wear it." +msgstr "一枚銅戒指,戴上它會使你稍微感覺靈敏一點。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "坚如磐石卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +2" +msgid_plural "rings of perception +2" +msgstr[0] "感知戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" -msgstr[0] "碎片喷射卷轴" +#. ~ Description for {'str': 'ring of perception +2', 'str_pl': 'rings of +#. perception +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that makes you a good bit more perceptive when you wear it." +msgstr "一枚銀戒指,戴上它會使你變得感覺靈敏。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "穿刺箭卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +3" +msgid_plural "rings of perception +3" +msgstr[0] "感知戒指 +3" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" -msgstr[0] "碎片风暴卷轴" +#. ~ Description for {'str': 'ring of perception +3', 'str_pl': 'rings of +#. perception +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that makes you eye-openingly more perceptive when you wear it." +msgstr "一枚金戒指,戴上它會使你的感覺變得非常靈敏。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" -msgstr[0] "石之箭卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of perception +4" +msgid_plural "rings of perception +4" +msgstr[0] "感知戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" -msgstr[0] "定点炎爆卷轴" +#. ~ Description for {'str': 'ring of perception +4', 'str_pl': 'rings of +#. perception +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much more perceptive when you wear it." +msgstr "一枚鉑戒指,戴上它會使你感覺靈敏許多。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" -msgstr[0] "火焰之指卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +3" +msgid_plural "rings of speed +3" +msgstr[0] "速度戒指 +3" + +#. ~ Description for {'str': 'ring of speed +3', 'str_pl': 'rings of speed +#. +3'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A copper ring that makes you a little faster when you wear it." +msgstr "一枚銅戒指,戴上它會使你稍微快速一點。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" -msgstr[0] "冰刺卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +5" +msgid_plural "rings of speed +5" +msgstr[0] "速度戒指 +5" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" -msgstr[0] "火球术卷轴" +#. ~ Description for {'str': 'ring of speed +5', 'str_pl': 'rings of speed +#. +5'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A silver ring that makes you a good bit faster when you wear it." +msgstr "一枚銀戒指,戴上它會使你變得快速。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" -msgstr[0] "极寒喷射卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +7" +msgid_plural "rings of speed +7" +msgstr[0] "速度戒指 +7" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" -msgstr[0] "燃烧之手卷轴" +#. ~ Description for {'str': 'ring of speed +7', 'str_pl': 'rings of speed +#. +7'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A golden ring that makes you quite hasty when you wear it." +msgstr "一枚金戒指,戴上它會使你變得非常快速。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" -msgstr[0] "寒霜喷射卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of speed +10" +msgid_plural "rings of speed +10" +msgstr[0] "速度戒指 +10" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" -msgstr[0] "寒冷之触卷轴" +#. ~ Description for {'str': 'ring of speed +10', 'str_pl': 'rings of speed +#. +10'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "A platinum ring that makes you much faster when you wear it." +msgstr "一枚鉑戒指,戴上它會使你快速許多。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" -msgstr[0] "冰上滑行卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +2" +msgid_plural "rings of protection +2" +msgstr[0] "防護戒指 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" -msgstr[0] "白霜冲击卷轴" +#. ~ Description for {'str': 'ring of protection +2', 'str_pl': 'rings of +#. protection +2'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A copper ring that reduces some of the force of damage you take when you " +"wear it." +msgstr "一枚銅戒指,戴上它會使你受到的傷害力道降低一些。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" -msgstr[0] "冰盾卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +4" +msgid_plural "rings of protection +4" +msgstr[0] "防護戒指 +4" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" -msgstr[0] "霜甲卷轴" +#. ~ Description for {'str': 'ring of protection +4', 'str_pl': 'rings of +#. protection +4'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A silver ring that appreciably reduces some of the force of damage you take " +"when you wear it." +msgstr "一枚銀戒指,戴上它會使你受到的傷害力道降低相當程度。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" -msgstr[0] "魔法飞弹卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +6" +msgid_plural "rings of protection +6" +msgstr[0] "防護戒指 +6" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" -msgstr[0] "相位门卷轴" +#. ~ Description for {'str': 'ring of protection +6', 'str_pl': 'rings of +#. protection +6'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A golden ring that greatly reduces some of the force of damage you take when" +" you wear it." +msgstr "一枚金戒指,戴上它會使你受到的傷害力道大幅降低。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" -msgstr[0] "重力井卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "ring of protection +8" +msgid_plural "rings of protection +8" +msgstr[0] "防護戒指 +8" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" -msgstr[0] "奥术冲击卷轴" +#. ~ Description for {'str': 'ring of protection +8', 'str_pl': 'rings of +#. protection +8'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_rings.json +msgid "" +"A platinum ring that vastly reduces some of the force of damage you take " +"when you wear it." +msgstr "一枚鉑戒指,戴上它會使你受到的傷害力道極大地降低。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" -msgstr[0] "奥术闪电卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "magic token" +msgid_plural "magic tokens" +msgstr[0] "魔法代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" -msgstr[0] "加速术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "longsword token" +msgid_plural "longsword tokens" +msgstr[0] "長劍代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" -msgstr[0] "奥术光束卷轴" +#. ~ Use action msg for longsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的長劍!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" -msgstr[0] "逃脱术卷轴" +#. ~ Description for longsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a longsword." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為長劍。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" -msgstr[0] "猫之优雅卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "arming sword token" +msgid_plural "arming sword tokens" +msgstr[0] "騎士劍代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" -msgstr[0] "鹰眼卷轴" +#. ~ Use action msg for {'str': 'arming sword token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine arming sword!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的騎士劍!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" -msgstr[0] "巨魔之力卷轴" +#. ~ Description for {'str': 'arming sword token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case an arming sword." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為騎士劍。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" -msgstr[0] "狐之狡黠卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "broadsword token" +msgid_plural "broadsword tokens" +msgstr[0] "闊劍代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" -msgstr[0] "震颤电击卷轴" +#. ~ Use action msg for broadsword token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine broadsword!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的闊劍!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" -msgstr[0] "闪电束卷轴" +#. ~ Description for broadsword token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a broadsword." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為闊劍。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" -msgstr[0] "风击术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "battleaxe token" +msgid_plural "battleaxe tokens" +msgstr[0] "戰斧代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" -msgstr[0] "风行术卷轴" +#. ~ Use action msg for {'str': 'battleaxe token'}. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine battle axe!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的戰斧!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" -msgstr[0] "风暴之锤卷轴" +#. ~ Description for {'str': 'battleaxe token'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a battle axe." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為戰斧。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" -msgstr[0] "祝福卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "pike token" +msgid_plural "pike tokens" +msgstr[0] "長柄槍代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" -msgstr[0] "光明之刃卷轴" +#. ~ Use action msg for pike token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine pike!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的長柄槍!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" -msgstr[0] "心灵装甲卷轴" +#. ~ Description for pike token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a pike." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為長柄槍。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" -msgstr[0] "魔法灯卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "mace token" +msgid_plural "mace tokens" +msgstr[0] "硬頭錘代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" -msgstr[0] "魔能转换术卷轴" +#. ~ Use action msg for mace token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine mace!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的硬頭錘!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" -msgstr[0] "电击术卷轴" +#. ~ Description for mace token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a mace." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為硬頭錘。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" -msgstr[0] "次级隧穿术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" +msgstr[0] "木杖代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" -msgstr[0] "突触刺激卷轴" +#. ~ Use action msg for quarterstaff token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a pristine quarterstaff!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新的木杖!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" -msgstr[0] "激光术卷轴" +#. ~ Description for quarterstaff token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a quarterstaff." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為木杖。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" -msgstr[0] "魔剑苏生卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "hammer token" +msgid_plural "hammer tokens" +msgstr[0] "鐵鎚代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" -msgstr[0] "召唤镜像卷轴" +#. ~ Use action msg for hammer token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine hammer!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的鐵鎚!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" -msgstr[0] "闪电冲击卷轴" +#. ~ Description for hammer token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a hammer." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為鐵鎚。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" -msgstr[0] "死灵凝视卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" +msgstr[0] "螺絲起子套組代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" -msgstr[0] "净化之种卷轴" +#. ~ Use action msg for screwdriver set token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine screwdriver set!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的螺絲起子套組!" -#. ~ Description for {'str': 'Scroll of Purification Seed', 'str_pl': 'Scrolls -#. of Purification Seed'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for screwdriver set token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." -msgstr "你召喚大地的贈禮,它將淨化水質。越高的等級能產生越多的種子。" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a screwdriver." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為螺絲起子。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" -msgstr[0] "喷嚏激光术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "toolbox token" +msgid_plural "toolbox tokens" +msgstr[0] "工具箱代幣" -#. ~ Description for {'str': 'Scroll of Optical Sneeze Beam', 'str_pl': -#. 'Scrolls of Optical Sneeze Beam'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Use action msg for toolbox token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." -msgstr "你将体内的生化电池过载,从你的脸上射出半定向的激光光束。" - -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lava Bomb" -msgid_plural "Scrolls of Lava Bomb" -msgstr[0] "熔岩炸弹卷轴" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine toolbox!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的工具箱!" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" -msgstr[0] "防酸术卷轴" +#. ~ Description for toolbox token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a toolbox." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為工具箱。" -#. ~ Description for {'str': 'Scroll of Acid Resistance', 'str_pl': 'Scrolls -#. of Acid Resistance'} -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "This spell creates an invisible aura to protect you from acid." -msgstr "这法术能产生一个肉眼无法看见的防酸光环保护你。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "crowbar token" +msgid_plural "crowbar tokens" +msgstr[0] "撬棍代幣" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" -msgstr[0] "闪电雷暴卷轴" +#. ~ Use action msg for crowbar token. +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine crowbar!" +msgstr "你說出刻在代幣上的命令字詞後,它迅速增長並變形成嶄新而閃亮的撬棍!" -#. ~ Description for {'str': 'Scroll of Lightning Storm', 'str_pl': 'Scrolls -#. of Lightning Storm'} -#: data/mods/Magiclysm/items/spell_scrolls.json +#. ~ Description for crowbar token +#: data/mods/Magical_Nights/items/enchanted/enchanted_tokens.json msgid "" -"This scroll details how a spell called 'Lightning Blast' which is commonly " -"used among Stormshapers can be altered to become much more powerful, at a " -"much higher mana cost." -msgstr "這卷軸詳細描述了如何耗用更多的法力來改變塑風者常用的「閃電爆破」法術,讓它變成更強大破壞力的法術。" +"A large silver coin that, when activated by uttering the word on the back, " +"turns into the item pictured on the front, in this case a crowbar." +msgstr "一枚大銀幣,當說出其背面刻印的字詞時,代幣會被觸發變成正面刻印圖示的物品,此代幣圖示為撬棍。" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" -msgstr[0] "沃血重萌卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" +msgstr[0] "瓶式千斤顶 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" -msgstr[0] "舍己济人卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" +msgstr[0] "瓶式千斤顶 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" -msgstr[0] "石肤术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +1" +msgid_plural "scalpels +1" +msgstr[0] "手术刀 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" -msgstr[0] "石柱术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "scalpel +2" +msgid_plural "scalpels +2" +msgstr[0] "手术刀 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" -msgstr[0] "麻痹毒刺卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +1" +msgid_plural "butcher knives +1" +msgstr[0] "屠宰刀 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" -msgstr[0] "脏腑四射卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butcher knife +2" +msgid_plural "butcher knives +2" +msgstr[0] "屠宰刀 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" -msgstr[0] "凝结组织卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" +msgstr[0] "剁肉刀 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" -msgstr[0] "电离术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" +msgstr[0] "剁肉刀 +2" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" -msgstr[0] "召唤鬼火卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +1" +msgid_plural "carving knives +1" +msgstr[0] "切肉刀 +1" -#: data/mods/Magiclysm/items/spell_scrolls.json -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" -msgstr[0] "雾墙术卷轴" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "carving knife +2" +msgid_plural "carving knives +2" +msgstr[0] "切肉刀 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" -msgstr[0] "科技法师的CDDA调试指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +1" +msgid_plural "butchering kits +1" +msgstr[0] "屠宰工具箱 +1" -#. ~ Description for {'str': "A Technomancer's Guide to Debugging C:DDA", -#. 'str_pl': "copies of A Technomancer's Guide to Debugging C:DDA"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "static std::string description( spell sp ) const;" -msgstr "static std::string 描述(法術 sp)const;" +#: data/mods/Magical_Nights/items/enchanted/enchanted_tools.json +msgid "butchering kit +2" +msgid_plural "butchering kits +2" +msgstr[0] "屠宰工具箱 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" -msgstr[0] "魔法入门指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +1" +msgid_plural "cestus +1s" +msgstr[0] "金屬拳套 +1" -#. ~ Description for {'str': "A Beginner's Guide to Magic", 'str_pl': "copies -#. of A Beginner's Guide to Magic"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"You would describe this as more like a pamphlet than a spellbook, but it " -"seems to have at least one interesting spell you can use." -msgstr "比起法術書,你覺得它被稱為一本小冊子會更適當。但它似乎至少有一個你可以使用的有趣法術。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "cestus +2" +msgid_plural "cestus +2s" +msgstr[0] "金屬拳套 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" -msgstr[0] "魔法师背包指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist" +msgid_plural "flaming fists" +msgstr[0] "燃焰拳套" -#. ~ Description for {'str': 'Wizarding Guide to Backpacking', 'str_pl': -#. 'copies of Wizarding Guide to Backpacking'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'flaming fist'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to be the spell version of a guide for what things to take with" -" you when backpacking. It's a little bulky, but will certainly prove " -"useful." -msgstr "這似乎是背包旅行指南的法術版本,教導你該打包何物以進行背包旅行。它雖然笨重了點,但是卻提供很多有用的資訊。" +"A heavy metal guard that covers the fist and increases striking power, with " +"stout padding underneath to protect the wearers hand. It has been enchanted" +" to emit dark magical flames that only harm enemies." +msgstr "沉重金屬拳套,包覆雙拳並加強攻擊力道,內有厚實的襯墊保護穿戴者的手。它有著只傷害敵人的魔法闇焰附魔。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" -msgstr[0] "异教徒的火焰魔法" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +1" +msgid_plural "flaming fist +1s" +msgstr[0] "燃焰拳套 +1" -#. ~ Description for {'str': 'Pyromancy for Heretics', 'str_pl': 'copies of -#. Pyromancy for Heretics'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This charred husk of a book still contains many ways to light things aflame." -msgstr "這本書雖然有著燒焦的書皮,卻仍然記述著許多點燃物品的方法。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "flaming fist +2" +msgid_plural "flaming fist +2s" +msgstr[0] "燃焰拳套 +2" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" -msgstr[0] "魔法元素论" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" +msgstr[0] "重擊護手" -#. ~ Description for {'str': 'A Treatise on Magical Elements', 'str_pl': -#. 'copies of A Treatise on Magical Elements'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'gauntlet of pounding', 'str_pl': 'gauntlets of +#. pounding'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." -msgstr "這本書以詳細而複雜圖表、儀式和動作順序來介紹各種法術。" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." +msgstr "一雙巨大的發光金屬重型長手套,表面鑲滿著魔法符號,讓你可以揮出驚人的強大打擊。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" -msgstr[0] "神祇简介" +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json +msgid "shotcestus" +msgid_plural "shotcesti" +msgstr[0] "霰弹拳套" -#. ~ Description for {'str': 'Introduction to the Divine', 'str_pl': 'copies -#. of Introduction to the Divine'} -#: data/mods/Magiclysm/items/spellbooks.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_unarmed.json msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." -msgstr "這似乎主要是宗教文本,但它確實有一些關於治療的記述。" +"A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a " +"stock to absorb recoil means some strength is required to fire." +msgstr "一把安装在金属拳套上的锯短双管霰弹枪。由于没有吸收后坐力的枪托,这意味着需要一些力量才能开火。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" -msgstr[0] "圣骑士的现代施法指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Magic Wand" +msgid_plural "Magic Wands" +msgstr[0] "魔杖" -#. ~ Description for {'str': "The Paladin's Guide to Modern Spellcasting", -#. 'str_pl': "copies of The Paladin's Guide to Modern Spellcasting"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Despite the title, this seems to be written in Middle English. A little " -"obtuse, but you can make out most of the words well enough." -msgstr "雖說書名這麼寫,但是內容卻是用中古世紀的英文寫成的。雖然有點難讀懂,但你還是能搞懂大部分的字詞。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "Disposable Wand" +msgid_plural "Disposable Wands" +msgstr[0] "一次性魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" -msgstr[0] "寒冬之悟" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of magic missile" +msgid_plural "minor wands of magic missile" +msgstr[0] "魔法飛彈劣質魔杖" -#. ~ Description for {'str': "Winter's Eternal Grasp", 'str_pl': "copies of -#. Winter's Eternal Grasp"} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of magic missile', 'str_pl': 'minor +#. wands of magic missile'} +#. ~ Description for {'str': 'lesser wand of magic missile', 'str_pl': 'lesser +#. wands of magic missile'} +#. ~ Description for {'str': 'greater wand of magic missile', 'str_pl': +#. 'greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." -msgstr "這本小冊子似乎是冰製的,摸起來很冰冷。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts magic missile." +msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展魔法飛彈。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" -msgstr[0] "风暴来临法典" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of magic missile" +msgid_plural "lesser wands of magic missile" +msgstr[0] "魔法飛彈次級魔杖" -#. ~ Description for {'str': 'The Tome of The Oncoming Storm', 'str_pl': -#. 'copies of The Tome of The Oncoming Storm'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." -msgstr "封面浮飾著交叉閃電與暴雨雲圖樣的大部頭書。觸摸著它會讓你感到微微的刺痛。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of magic missile" +msgid_plural "greater wands of magic missile" +msgstr[0] "魔法飛彈高級魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" -msgstr[0] "普通的魔法书" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of fireball" +msgid_plural "minor wands of fireball" +msgstr[0] "火球術劣質魔杖" -#. ~ Description for {'str': 'Nondescript Spellbook', 'str_pl': 'copies of -#. Nondescript Spellbook'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small book, containing spells created by a novice magician." -msgstr "一本小書,記述著由新手魔法師創造的法術。" +#. ~ Description for {'str': 'minor wand of fireball', 'str_pl': 'minor wands +#. of fireball'} +#. ~ Description for {'str': 'lesser wand of fireball', 'str_pl': 'lesser +#. wands of fireball'} +#. ~ Description for {'str': 'greater wand of fireball', 'str_pl': 'greater +#. wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts fireball." +msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展火球術。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" -msgstr[0] "光影和幻象" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of fireball" +msgid_plural "lesser wands of fireball" +msgstr[0] "火球術次級魔杖" -#. ~ Description for {'str': 'Of Light and Falsehoods', 'str_pl': 'copies of -#. Of Light and Falsehoods'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small white book, it subtly amplifies the ambient light around it." -msgstr "一本白色小册子,它淡淡地增强了四周的光。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of fireball" +msgid_plural "greater wands of fireball" +msgstr[0] "火球術高級魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" -msgstr[0] "血肉之书" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of mana beam" +msgid_plural "minor wands of mana beam" +msgstr[0] "魔力射線劣質魔杖" -#. ~ Description for {'str': 'The Tome of Flesh', 'str_pl': 'copies of The -#. Tome of Flesh'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A small tome, seemingly covered in tanned human skin." -msgstr "一本小專論,封面似乎是鞣製後的人皮。" +#. ~ Description for {'str': 'minor wand of mana beam', 'str_pl': 'minor wands +#. of mana beam'} +#. ~ Description for {'str': 'lesser wand of mana beam', 'str_pl': 'lesser +#. wands of mana beam'} +#. ~ Description for {'str': 'greater wand of mana beam', 'str_pl': 'greater +#. wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts mana beam." +msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展魔力射線。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" -msgstr[0] "树之书" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of mana beam" +msgid_plural "lesser wands of mana beam" +msgstr[0] "魔力射線次級魔杖" -#. ~ Description for {'str': 'The Book of Trees', 'str_pl': 'copies of The -#. Book of Trees'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "A bark covered book." -msgstr "有著樹皮封面的書。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of mana beam" +msgid_plural "greater wands of mana beam" +msgstr[0] "魔力射線高級魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" -msgstr[0] "魔力能源的效用" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of point flare" +msgid_plural "minor wands of point flare" +msgstr[0] "定點驟燃劣質魔杖" -#. ~ Description for {'str': 'The Utility of Mana as an Energy Source', -#. 'str_pl': 'copies of The Utility of Mana as an Energy Source'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of point flare', 'str_pl': 'minor +#. wands of point flare'} +#. ~ Description for {'str': 'lesser wand of point flare', 'str_pl': 'lesser +#. wands of point flare'} +#. ~ Description for {'str': 'greater wand of point flare', 'str_pl': 'greater +#. wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." -msgstr "本書詳細介紹了使用你的法力來恢復各種生理效果的法術。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts point flare." +msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展定點驟燃。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" -msgstr[0] "战斗法师宝典" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of point flare" +msgid_plural "lesser wands of point flare" +msgstr[0] "定點驟燃次級魔杖" -#. ~ Description for {'str': 'The Tome of The Battle Mage', 'str_pl': 'copies -#. of The Tome of The Battle Mage'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" -msgstr "以你的法師標準來看此書,內容滿是祆教徒的戰鬥法術。你真幸運!" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of point flare" +msgid_plural "greater wands of point flare" +msgstr[0] "定點驟燃高級魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" -msgstr[0] "地心空洞论" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of hoary blast" +msgid_plural "minor wands of hoary blast" +msgstr[0] "蒼白爆破劣質魔杖" -#. ~ Description for {'str': 'The Tome of the Hollow Earth', 'str_pl': 'copies -#. of The Tome of the Hollow Earth'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of hoary blast', 'str_pl': 'minor +#. wands of hoary blast'} +#. ~ Description for {'str': 'lesser wand of hoary blast', 'str_pl': 'lesser +#. wands of hoary blast'} +#. ~ Description for {'str': 'greater wand of hoary blast', 'str_pl': 'greater +#. wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." -msgstr "這本佈滿沙塵的大部頭書似乎永遠都佈滿著灰塵。它記述著大地之力。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts hoary blast." +msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展蒼白爆破。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" -msgstr[0] "魔法移动宝典" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of hoary blast" +msgid_plural "lesser wands of hoary blast" +msgstr[0] "蒼白爆破次級魔杖" -#. ~ Description for {'str': 'The Tome of Magical Movement', 'str_pl': 'copies -#. of The Tome of Magical Movement'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." -msgstr "這本又小又輕的書感覺似乎不存在,可說97%是這樣。它包含了專門用於移動的祆教徒法術。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of hoary blast" +msgid_plural "greater wands of hoary blast" +msgstr[0] "蒼白爆破高級魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" -msgstr[0] "污跡卷軸" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "minor wand of cone of cold" +msgid_plural "minor wands of cone of cold" +msgstr[0] "冷錐術劣質魔杖" -#. ~ Description for {'str': 'Smudged Scroll'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'minor wand of cone of cold', 'str_pl': 'minor +#. wands of cone of cold'} +#. ~ Description for {'str': 'lesser wand of cone of cold', 'str_pl': 'lesser +#. wands of cone of cold'} +#. ~ Description for {'str': 'greater wand of cone of cold', 'str_pl': +#. 'greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This looks like someone was designing a new spell, but spilled a mug of " -"coffee on it and crumpled it up in anger. You can tell that it will " -"definitely cast something, but you can't be sure that it will work very " -"well." -msgstr "這看起來像是有人正在設計一個新的法術,卻在上面灑了一大杯咖啡而且憤怒地揉皺它。你覺得它肯定能施展出什麼法術,但是你不確定是好是壞。" +"A slender wooden wand with a mana crystal socket at the base that casts a " +"spell when activated. This wand casts cone of cold." +msgstr "一根細長的木製魔杖,底部有一個法力水晶插孔,可以在啟動時施放法術。這根魔杖能施展冷錐術。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" -msgstr[0] "亡灵仆从召唤入门" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "lesser wand of cone of cold" +msgid_plural "lesser wands of cone of cold" +msgstr[0] "冷錐術次級魔杖" -#. ~ Description for {'str': 'Necromantic Minions for Dummies', 'str_pl': -#. 'copies of Necromantic Minions for Dummies'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book details various ways of summoning an undead minion to fight for " -"you. They all appear to disappear after a short time, crumbling to dust." -msgstr "這本書詳細介紹了召喚不死小兵為你作戰的各種方法。它們似乎都會在很短的時間消失,散成塵埃。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "greater wand of cone of cold" +msgid_plural "greater wands of cone of cold" +msgstr[0] "冷錐術高級魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" -msgstr[0] "科技魔法基本原理" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of magic missile" +msgid_plural "disposable minor wands of magic missile" +msgstr[0] "一次性的魔法飛彈劣質魔杖" -#. ~ Description for {'str': 'Fundamentals of Technomancy', 'str_pl': 'copies -#. of Fundamentals of Technomancy'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of magic missile', +#. 'str_pl': 'disposable minor wands of magic missile'} +#. ~ Description for {'str': 'disposable lesser wand of magic missile', +#. 'str_pl': 'disposable lesser wands of magic missile'} +#. ~ Description for {'str': 'disposable greater wand of magic missile', +#. 'str_pl': 'disposable greater wands of magic missile'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." -msgstr "這本厚厚的說明書指導施法者如何操縱和賦予各種形式的物質與能量。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts magic missile." +msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展魔法飛彈。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" -msgstr[0] "科技魔法新手入门指南" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of magic missile" +msgid_plural "disposable lesser wands of magic missile" +msgstr[0] "一次性的魔法飛彈次級魔杖" -#. ~ Description for {'str': "Complete Idiot's Guide to Technomancy", -#. 'str_pl': "copies of Complete Idiot's Guide to Technomancy"} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." -msgstr "這個色彩繽紛的指南,充滿了圖表和漫畫,教授給不那麼聰明的學生幾個非常基本的科技巫師法術。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of magic missile" +msgid_plural "disposable greater wands of magic missile" +msgstr[0] "一次性的魔法飛彈高級魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" -msgstr[0] "科技魔法与电磁光谱" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of fireball" +msgid_plural "disposable minor wands of fireball" +msgstr[0] "一次性的火球術劣質魔杖" -#. ~ Description for {'str': 'Technomancy and the Electromagnetic Spectrum', -#. 'str_pl': 'copies of Technomancy and the Electromagnetic Spectrum'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of fireball', 'str_pl': +#. 'disposable minor wands of fireball'} +#. ~ Description for {'str': 'disposable lesser wand of fireball', 'str_pl': +#. 'disposable lesser wands of fireball'} +#. ~ Description for {'str': 'disposable greater wand of fireball', 'str_pl': +#. 'disposable greater wands of fireball'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." -msgstr "這本實驗室參考資料書很厚,內含關於魔法與電磁輻射相結合的大量資訊。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts fireball." +msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展火球術。" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" -msgstr[0] "空间与地理:线性的谎言" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of fireball" +msgid_plural "disposable lesser wands of fireball" +msgstr[0] "一次性的火球術次級魔杖" -#. ~ Description for {'str': 'Geospatial Systems: The Lie Of Linearity', -#. 'str_pl': 'copies of Geospatial Systems: The Lie Of Linearity'} -#: data/mods/Magiclysm/items/spellbooks.json -msgid "" -"This book outlines in great detail how time and space are wibbly-wobbly and " -"non-Euclidean. It also appears to have a dozen different coordinate systems" -" that it uses nearly interchangeably, which makes it hard to follow. " -"There's lots of jargon, but with intense study you can probably learn a " -"thing or two about portals." -msgstr "" -"這本書非常詳細地記述了時間和空間如何的搖擺不定而且不是歐幾里德距離。它也有十幾種不同的坐標系,幾乎可以互換使用,這使得它很難遵循。雖然書內有大量的術語,但經過深入研究,你可能會學到一些關於傳送門的東西。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of fireball" +msgid_plural "disposable greater wands of fireball" +msgstr[0] "一次性的火球術高級魔杖" -#: data/mods/Magiclysm/items/spellbooks.json -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" -msgstr[0] "超越人类的极限" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of mana beam" +msgid_plural "disposable minor wands of mana beam" +msgstr[0] "一次性的魔力射線劣質魔杖" -#. ~ Description for {'str': 'Transcendence of the Human Condition', 'str_pl': -#. 'copies of Transcendence of the Human Condition'} -#: data/mods/Magiclysm/items/spellbooks.json +#. ~ Description for {'str': 'disposable minor wand of mana beam', 'str_pl': +#. 'disposable minor wands of mana beam'} +#. ~ Description for {'str': 'disposable lesser wand of mana beam', 'str_pl': +#. 'disposable lesser wands of mana beam'} +#. ~ Description for {'str': 'disposable greater wand of mana beam', 'str_pl': +#. 'disposable greater wands of mana beam'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"The Human is the only creature that seeks to improve himself. This study " -"examines different spells that can heighten various senses temporarily, in " -"hopes to discover a more permanent solution." -msgstr "人類是唯一尋求改善自己的生物。本研究考察了可以暫時提升各種感官的不同法術,希望能找到更持久的解決方案。" - -#: data/mods/Magiclysm/items/tools.json -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" -msgstr[0] "净化大锅" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts mana beam." +msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展魔力射線。" -#. ~ Description for {'str': 'cauldron of purification', 'str_pl': 'cauldrons -#. of purification'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This cauldron made of demon spider chitin seems to absorb the light. It " -"will hold 16 liters of material and will absorb poisons from it. It may " -"have other properties that require discovery." -msgstr "这个由恶魔蜘蛛甲壳所制成的大锅似乎正在吸收四周的光线。 它能够容纳16升原料,并吸收其中的毒素。它可能还有其他需要你发现的隐藏属性。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of mana beam" +msgid_plural "disposable lesser wands of mana beam" +msgstr[0] "一次性的魔力射線次級魔杖" -#. ~ Description for {'str': 'demon forge'} -#: data/mods/Magiclysm/items/tools.json -msgid "" -"This is a portable version of the charcoal forge that is magically enhanced " -"and fortified with demon spider chitin in order to be able to resmelt " -"magical metals into their workable ingot form." -msgstr "一个便携式版本的火炭锻造台,它使用了恶魔蜘蛛甲壳进行附魔和强化,以便能够将魔法金属熔化成能够制造物品的锭。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of mana beam" +msgid_plural "disposable greater wands of mana beam" +msgstr[0] "一次性的魔力射線高級魔杖" -#: data/mods/Magiclysm/items/tools.json -msgid "fireproof mortar" -msgid_plural "fireproof mortar" -msgstr[0] "防火灰泥" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of point flare" +msgid_plural "disposable minor wands of point flare" +msgstr[0] "一次性的定點驟燃劣質魔杖" -#. ~ Description for {'str_sp': 'fireproof mortar'} -#: data/mods/Magiclysm/items/tools.json +#. ~ Description for {'str': 'disposable minor wand of point flare', 'str_pl': +#. 'disposable minor wands of point flare'} +#. ~ Description for {'str': 'disposable lesser wand of point flare', +#. 'str_pl': 'disposable lesser wands of point flare'} +#. ~ Description for {'str': 'disposable greater wand of point flare', +#. 'str_pl': 'disposable greater wands of point flare'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "一堆炼金术制造的灰泥,已经准备好,随时可以用到需要抵抗龙炎般高温的工程建设项目中。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts point flare." +msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展定點驟燃。" -#: data/mods/Magiclysm/items/vehicle_parts.json -msgid "bulette plating" -msgstr "鯊蜥獸甲裝甲板" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of point flare" +msgid_plural "disposable lesser wands of point flare" +msgstr[0] "一次性的定點驟燃次級魔杖" -#: data/mods/Magiclysm/items/weapons.json -msgid "greatclub" -msgid_plural "greatclubs" -msgstr[0] "巨木棒" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of point flare" +msgid_plural "disposable greater wands of point flare" +msgstr[0] "一次性的定點驟燃高級魔杖" -#. ~ Description for greatclub -#: data/mods/Magiclysm/items/weapons.json +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of hoary blast" +msgid_plural "disposable minor wands of hoary blast" +msgstr[0] "一次性的蒼白爆破劣質魔杖" + +#. ~ Description for {'str': 'disposable minor wand of hoary blast', 'str_pl': +#. 'disposable minor wands of hoary blast'} +#. ~ Description for {'str': 'disposable lesser wand of hoary blast', +#. 'str_pl': 'disposable lesser wands of hoary blast'} +#. ~ Description for {'str': 'disposable greater wand of hoary blast', +#. 'str_pl': 'disposable greater wands of hoary blast'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"A stout knotty club with a large knob at the top. While it's very heavy, " -"it's a very effective weapon in the hands of a strong opponent." -msgstr "一根顶端有个十分粗壮疙瘩的坚固木棍。虽然它很重,但在力量强大的人手中,它是非常有效的武器。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts hoary blast." +msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展蒼白爆破。" -#: data/mods/Magiclysm/items/weapons.json -msgid "wood trident" -msgid_plural "wood tridents" -msgstr[0] "木制三叉戟" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of hoary blast" +msgid_plural "disposable lesser wands of hoary blast" +msgstr[0] "一次性的蒼白爆破次級魔杖" -#. ~ Description for wood trident -#: data/mods/Magiclysm/items/weapons.json -msgid "" -"A wooden melee weapon with a hand-forged steel forked spearhead attached to " -"the end. It can be used for stabbing opponents either in close-range or as " -"a thrown weapon, and in the right hands can also readily disarm opponents." -msgstr "" -"这根木制近战武器的顶端安装了一个手工锻造的三叉钢叉。它可以用来近距离穿刺敌人,也可以作为投掷武器使用,在知道如何正确使用的人手中可以很容易地解除对手的武装。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of hoary blast" +msgid_plural "disposable greater wands of hoary blast" +msgstr[0] "一次性的蒼白爆破高級魔杖" -#: data/mods/Magiclysm/items/weapons.json -msgid "barbed javelin" -msgid_plural "barbed javelins" -msgstr[0] "带刺标枪" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable minor wand of cone of cold" +msgid_plural "disposable minor wands of cone of cold" +msgstr[0] "一次性的冷錐術劣質魔杖" -#. ~ Description for {'str': 'barbed javelin'} -#: data/mods/Magiclysm/items/weapons.json +#. ~ Description for {'str': 'disposable minor wand of cone of cold', +#. 'str_pl': 'disposable minor wands of cone of cold'} +#. ~ Description for {'str': 'disposable lesser wand of cone of cold', +#. 'str_pl': 'disposable lesser wands of cone of cold'} +#. ~ Description for {'str': 'disposable greater wand of cone of cold', +#. 'str_pl': 'disposable greater wands of cone of cold'} +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json msgid "" -"This weapon measures about 3 feet in length and is fletched like an arrow " -"for better accuracy. The business end of the javelin has wicked-looking " -"barbs which could cause significant bleeding." -msgstr "这根大约有3英尺长的标枪上像箭一样安装了尾翼,提高了命中率。它的尖端有个看上去很邪恶的倒钩,能够导致大量出血。" +"A slender wooden wand with an embedded mana crystal at the base that casts a" +" spell when activated. This wand casts cone of cold." +msgstr "一根細長的木製魔杖,底部嵌有的法力水晶,可以在啟動時施放法術。這根魔杖能施展冷錐術。" -#: data/mods/Magiclysm/items/weapons.json -msgid "Fake gun that fires barbed javelins." -msgstr "射出带刺标枪的假枪。" +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable lesser wand of cone of cold" +msgid_plural "disposable lesser wands of cone of cold" +msgstr[0] "一次性的冷錐術次級魔杖" + +#: data/mods/Magical_Nights/items/enchanted/enchanted_wands.json +msgid "disposable greater wand of cone of cold" +msgid_plural "disposable greater wands of cone of cold" +msgstr[0] "一次性的冷錐術高級魔杖" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "foldable orichalcum frame" msgid_plural "foldable orichalcum frames" msgstr[0] "折叠山铜车架" #. ~ Description for foldable orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "一种由山铜管制成的折叠框架。不像铝那么轻,但非常坚固。" -#: data/mods/Magiclysm/items/vehicle/frames.json -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "orichalcum frame" msgid_plural "orichalcum frames" msgstr[0] "山铜车架" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/items/vehicle/frames.json +#: data/mods/Magical_Nights/items/vehicle/frames.json msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "一个由山铜制成的车架。比钢制车架要坚固得多,但同时也比它昂贵得多。" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/items/vehicle/vehicle_parts.json +msgid "bulette plating" +msgstr "鯊蜥獸甲裝甲板" + +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider" msgid_plural "demon spiders" msgstr[0] "惡魔蜘蛛" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spiderling" msgid_plural "demon spiderlings" msgstr[0] "幼年惡魔蜘蛛" #. ~ Description for demon spiderling -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "Despite it being the size of a small dog, you can tell this is a very young " "spider. Its red color is why you gave it this name; you have never seen " @@ -208431,7 +208640,7 @@ msgstr "" "雖然牠已經有小狗大小的體型,但你仍然知道這只是非常幼小的惡魔蜘蛛。牠的血腥的紅色就是你稱牠惡魔的原因。在大災變之前你根本沒見過這種生物。牠行動快速,而且有正滴著毒液的大毒牙。" #. ~ Description for demon spider -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This spider is the size of a car. Its huge compound eyes seem to be " "infinite pools of blackness that seem to suck the light out of the air. Its" @@ -208440,13 +208649,13 @@ msgid "" msgstr "" "這是隻汽車大小的蜘蛛。它巨大的複眼就像是無止盡的黑暗深淵,把空氣中的光線都吸光了。它的栗色甲殼上鑲嵌著看起來很邪惡的尖刺,當它接觸地面時,會滴落一些黑色的液體。" -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "demon spider queen" msgid_plural "demon spider queens" msgstr[0] "惡魔蜘蛛女王" #. ~ Description for demon spider queen -#: data/mods/Magiclysm/monsters/demon_spider.json +#: data/mods/Magical_Nights/monsters/demon_spider.json msgid "" "This gigantic spider is the size of a moving van: you have no idea how it " "manages to stay together, much less move with that bulk. Its abdomen is " @@ -208455,25 +208664,25 @@ msgid "" msgstr "" "這巨大的蜘蛛像卡車那樣大,你不知道這巨大軀體如何組成也不知它怎能移動。它的腹部巨大腫脹,眼神中閃爍著邪惡的心智,甲殼倒鉤周圍有魔力的劈啪聲響。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "dreadful presense" msgstr "可怕的存在" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "frightful presense" msgstr "驚懼的存在" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "terrifying presense" msgstr "恐怖的存在" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "black dragon wyrmling" msgid_plural "black dragon wyrmlings" msgstr[0] "黑龍幼龍" #. ~ Description for black dragon wyrmling -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This is a small black dragon, less than five years old. Its scales are " "glossy, and its horns barely peek out of its head. Even from one so young, " @@ -208481,13 +208690,13 @@ msgid "" msgstr "" "這是一條小黑龍,還不足五歲。它的有光澤的鱗片,它頭上的角只有微微突出。即使是一個如此年輕的人,你也會看到眼中的悲傷主義。即使這麼幼小的眼神中,你也看出它的虐待狂傾向。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "young black dragon" msgid_plural "young black dragons" msgstr[0] "幼年黑龍" #. ~ Description for young black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "This black dragon appears to still be in the early stages of life. Its eyes" " have just started to sink in its sockets, and its curved, segmented horns " @@ -208497,77 +208706,78 @@ msgid "" msgstr "" "這條黑龍似乎還處於生命的早期階段。它的眼睛剛開始沉入眼座中,彎曲的節角剛開始變黑。你可以通過觀察來判斷,這個生物的本質是邪惡的。雖然這條龍還沒有完全成長,但它的大小卻如同一頭成熟的公牛。" -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "adult black dragon" msgid_plural "adult black dragons" msgstr[0] "成年黑龍" #. ~ Description for adult black dragon -#: data/mods/Magiclysm/monsters/dragon.json +#: data/mods/Magical_Nights/monsters/dragon.json msgid "" "A black-scaled monstrosity with deep-set eye sockets glowing green with " "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "身披黑色鱗片的怪獸,在那深深的眼窩中有著泛邪惡的亮綠。它的臉和頭骨呈骨骼狀,酸液從匕首狀的下顎滴落。" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin" msgid_plural "Goblins" -msgstr[0] "" +msgstr[0] "哥布林" #. ~ Description for Goblin -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short, mischievous green humanoid covered in dirty, slightly-worn " "clothing. Brandishing a cudgel and with a certain grin on its face, you can" " tell that it loves causing trouble and likely won't back down from a fight." msgstr "" +"一个矮小、顽皮的绿色类人生物,穿着脏兮兮且略显破旧的衣服。手持一根木棒,脸上带着某种狡黠的笑容。你可以看出,它喜欢制造麻烦,且可能不会轻易退缩。" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Slinger" msgid_plural "Goblin Slingers" -msgstr[0] "" +msgstr[0] "哥布林投石手" #. ~ Description for {'str': 'Goblin Slinger'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "A short green humanoid who slings rocks just about as well as it slings " "insults. They have quite a penchant for taunting, and they're dodgier in " "more ways than one." -msgstr "" +msgstr "一个矮小的绿色类人生物,投掷石块的本事和嘴上骂人的功夫一样出色。它们非常擅长嘲讽,同时在各方面都更加难以对付。" -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "Goblin Chieftain" msgid_plural "Goblin Chieftains" -msgstr[0] "" +msgstr[0] "哥布林首领" #. ~ Description for {'str': 'Goblin Chieftain'} -#: data/mods/Magiclysm/monsters/goblins.json +#: data/mods/Magical_Nights/monsters/goblins.json msgid "" "An ugly bastard of a goblin who asserted his rule over the rest through " "liberal application of violence and a little extra cunning. He's much " "tougher, and he brandishes a weapon that has faint tinges of magic." -msgstr "" +msgstr "一个丑陋的哥布林,通过频繁施以暴力和稍微多一点的狡诈统治着其他同类。它更加强壮,手中的武器散发着微弱的魔法气息。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "clay golem" msgid_plural "clay golems" msgstr[0] "粘土傀儡" #. ~ Description for clay golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "一个用粘土制成的巨大人型傀儡,它的比例不协调,看上去很脆弱。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "plastic golem" msgid_plural "plastic golems" msgstr[0] "塑料傀儡" #. ~ Description for {'str': 'plastic golem'} -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "Traditionally, making a golem is a months-long process involving hand tools " "and precision craftsmanship. A stone golem is as much a work of art as it " @@ -208576,36 +208786,110 @@ msgid "" msgstr "" "传统上,制造傀儡是一个需要各类手工工具和精细工艺的长达数月的过程。一个石头傀儡是一个魔法装置,更是一件艺术作品。3D打印技术的出现使得制造傀儡成为容易入门的爱好,而塑料傀儡也迅速流行起来。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "stone golem" msgid_plural "stone golems" msgstr[0] "石傀儡" #. ~ Description for stone golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "一个用石头制成的巨大人型傀儡,它的拳头看起来像火箭。" -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "iron golem" msgid_plural "iron golems" msgstr[0] "铁傀儡" #. ~ Description for iron golem -#: data/mods/Magiclysm/monsters/golems.json +#: data/mods/Magical_Nights/monsters/golems.json msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "一个用铁制成的巨大人型傀儡,某种有毒气体从嘴里渗出。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/golems.json +msgid "fresh resin golem" +msgid_plural "fresh resin golems" +msgstr[0] "生树脂魔像" + +#. ~ Description for {'str': 'fresh resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to somehow still be very fresh, almost as if it had only " +"been very recently poured, and it can likely recover from wounds rather " +"quickly" +msgstr "" +"传统上,制造魔像是一项漫长而艰难的过程,如此巨大的魔像通常需要数月时间才能完成。然而,现代材料的出现使得魔像的制造变得更简单、更快捷。这个魔像似乎仍然非常新穎,几乎就像是刚刚被浇注而成的一样,它可能能够非常迅速地从伤口中恢复。" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "somewhat-cured resin golem" +msgid_plural "somewhat-cured resin golems" +msgstr[0] "半固化树脂魔像" + +#. ~ Description for {'str': 'somewhat-cured resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be partially, but not fully, cured. As such, it can " +"likely recover from small injuries given some time." +msgstr "" +"传统上,制造魔像是一项漫长而艰难的过程,如此巨大的魔像通常需要数月时间才能完成。然而,现代材料的出现使得魔像的制造变得更简单、更快捷。这个魔像似乎已经部分固化,但还未完全硬化。因此,它可能可以在一定时间内从小伤中恢复。" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "hardened resin golem" +msgid_plural "hardened resin golems" +msgstr[0] "硬化树脂魔像" + +#. ~ Description for {'str': 'hardened resin golem'} +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"Traditionally, creating a golem is a long and arduous process, taking " +"several months for a golem so large as this one. However, the advent of " +"modern materials has allowed for much simpler and quicker to make golems. " +"This golem appears to be fully cured, meaning it'll be almost like stone. " +"You can't quite tell whether that's just a pattern on it, or if it's " +"something more sinister…" +msgstr "" +"传统上,制造魔像是一项漫长而艰难的过程,如此巨大的魔像通常需要数月时间才能完成。然而,现代材料的出现使得魔像的制造变得更简单、更快捷。这个魔像似乎已经完全固化,几乎像石头一样坚硬。你无法确定那只是它的纹理,还是隐藏着某种更可怕的东西……" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "orichalcum golem" +msgid_plural "orichalcum golems" +msgstr[0] "山铜傀儡" + +#. ~ Description for orichalcum golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from orichalcum. It's arms are fashioned into " +"sharp blades." +msgstr "一个巨大的,由山铜制成的傀儡,其手臂被锻造成锋利的刀刃。" + +#: data/mods/Magical_Nights/monsters/golems.json +msgid "mithril golem" +msgid_plural "mithril golems" +msgstr[0] "秘银傀儡" + +#. ~ Description for mithril golem +#: data/mods/Magical_Nights/monsters/golems.json +msgid "" +"A large, humanoid golem made from mithril. This golem is practically " +"invulnerable. Luckily, it is less aggressive" +msgstr "一个巨大的,由秘银制成的人形傀儡,几乎刀枪不入,幸运的是,它的攻击性较弱" + +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk warrior" msgid_plural "lizardfolk warriors" msgstr[0] "蜥蜴人战士" #. ~ Description for lizardfolk warrior -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A tall, powerful, reptilian humanoid with a muscular tail whose skin is " "covered in dark gray-green scales. They are tribal and tend to be found in " @@ -208617,29 +208901,29 @@ msgid "" msgstr "" "一种高大而强壮的人形爬行动物,它的尾巴肌肉发达,皮肤表面覆盖着深灰绿色的鳞片。它们是部落群居的生物,通常活动在洞穴和其附近的水域中,特别是在有龙族和古龙居住的地区。它们通常不会有敌意,虽然它们不关心外人,但是一旦被激怒了也会非常危险。虽然它们通常喜欢用巨木棒战斗,但当它们使用锋利的牙齿和爪子时也同样凶猛。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk hunter" msgid_plural "lizardfolk hunters" msgstr[0] "蜥蜴人猎手" #. ~ Description for lizardfolk hunter -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "蜥蜴人猎手的体型比普通战士要小,但依靠轻巧的身材和精确的标枪投掷,它们依然同样致命。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "The hunter hurls a barbed javelin at you!" msgstr "蜥蜴人猎手向你掷出一根带刺标枪!" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk shaman" msgid_plural "lizardfolk shamans" msgstr[0] "蜥蜴人萨满" #. ~ Description for lizardfolk shaman -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Lizardfolk are very intelligent and cunning, but magical ability is a rare " "quality. Shamans are chosen from the tribe during childhood, when magical " @@ -208650,13 +208934,13 @@ msgid "" msgstr "" "蜥蜴人非常地聪明和狡猾,但使用魔法的能力却相当罕见。蜥蜴人萨满在幼年时期就从部落中挑选出来,那时它们所展现出的魔法能力就已经标志了年轻部落战士的命运。外界对于它们所必须经历的启蒙仪式知之甚少,但很少有人能在其中幸存下来。蜥蜴人萨满是德鲁伊魔法师,可以使用大自然的力量与敌人战斗,并在需要时召唤援军。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "lizardfolk chieftan" msgid_plural "lizardfolk chieftans" msgstr[0] "蜥蜴人酋长" #. ~ Description for lizardfolk chieftan -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "Among the lizardfolk, ambition is a rare quality. Chieftans earn their " "place by exhibiting unusually high levels of ambition, often mistaken by " @@ -208666,59 +208950,60 @@ msgid "" msgstr "" "在蜥蜴人之中,野心是一种罕见特性。蜥蜴人酋长通过表现出异乎寻常的强大野心赢得了自己的地位,而外界往往将其误认为是过度残酷的暴力行为。这位蜥蜴人酋长是部落中最大、最强壮的一员,它所携带的造型凶猛的三叉戟是作为对它的锋利牙齿和爪子的赞美。" -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "crocodile" msgid_plural "crocodiles" msgstr[0] "鳄鱼" #. ~ Description for crocodile -#: data/mods/Magiclysm/monsters/lizardfolk.json +#: data/mods/Magical_Nights/monsters/lizardfolk.json msgid "" "A once-and-future lizardfolk shaman, this large crocodile no longer has any " "hint of any humanoid characteristics and looks very, very dangerous." msgstr "作为一名曾经和未来的蜥蜴人萨满,这只大鳄鱼不再有任何人形特征,而且看起来非常非常危险。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear" msgid_plural "owlbears" msgstr[0] "鴞熊" #. ~ Description for owlbear -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The horrible owlbear is probably the result of genetic experimentation by " "some insane wizard. These creatures inhabit the tangled forest regions of " -"every temperate clime, as well as subterranean labyrinths. They are " -"ravenous eaters, aggressive hunters, and evil tempered at all times. They " -"attack prey on sight and will fight to the death." +"every temperate climate, as well as subterranean labyrinths. They are even " +"more easily angered than normal bears, so it's best to keep a distance. " +"Something tells you this isn't exactly a very old species, based on only " +"recently seeing them." msgstr "" -"這隻可怕的貓頭鷹與熊的混合體可能是瘋狂巫師進行基因實驗的產物。這些生物棲息在每個溫帶氣候的森林深處以及地下迷宮中。牠們是貪婪的獵食者,高侵襲性的獵人,而且在任何時候都是邪惡的。牠們會攻擊視野中的獵物並將戰鬥至死。" +"可怕的枭熊很可能是某个疯狂法师进行基因实验的产物。这些生物栖息在每个温带气候的错综复杂的森林区域,以及地下迷宫中。它们比普通的熊更容易生气,所以最好保持距离。从最近才开始看到它们的情况来看,你有种预感,它们并不是一个非常古老的物种。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "black pudding" msgid_plural "black puddings" msgstr[0] "黑色布丁怪" #. ~ Description for black pudding -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Writhing, sticky, black sludge undulates across the ground. A faint " "sizzling sound comes from the ground beneath it as it lurches toward you." msgstr "这团蠕动的粘稠黑泥在地面起伏着。当它朝你蹒跚移动时,微弱的嘶嘶声从它下方的地面中传来。" #. ~ Attack message of monster "black pudding"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The black pudding burns %3$s with acid!" msgstr "黑布丁怪喷出酸液灼烧 %3$s !" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "krabgek" msgid_plural "krabgeks" msgstr[0] "魔眼怪" #. ~ Description for krabgek -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A large baleful eye peers out from the darkness, its gleam hinting at a " "weird intelligence and unnerving malevolence. The eye oozes some pinkish " @@ -208728,23 +209013,23 @@ msgstr "" "一只邪恶的巨眼在黑暗中向外窥探,眼睛的闪光显示出它怪异的智慧和令人不安的恶意。巨眼中渗出某种粉色的液体,其人形的身体覆盖着诡异的蓝黑色尖锐三角甲板。" #. ~ Attack message of monster "krabgek"'s spell "None" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json #, c-format msgid "The krabgek gazes at %3$s!" msgstr "魔眼怪朝%3$s凝视!" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "owlbear cub" msgid_plural "owlbear cubs" msgstr[0] "鴞熊幼崽" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "bulette" msgid_plural "bulettes" msgstr[0] "鯊蜥獸" #. ~ Description for bulette -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "The bulette (or landshark) was the result of a mad wizard's experimental " "cross breeding of a snapping turtle and armadillo with infusions of demons' " @@ -208754,199 +209039,243 @@ msgid "" msgstr "" "鲨蜥兽是一个某个疯狂的魔法师的实验结果,他将啮龟和犰狳进行杂交并注入了恶魔的灵液。它们生活在温带地区,以马、人和大多数其他动物为食。愚蠢的鲨蜥兽脾气暴躁,总是饥肠辘辘,它们什么也不怕。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "will-o-wisp" msgid_plural "will-o-wisps" msgstr[0] "鬼火" #. ~ Description for will-o-wisp -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Will-o’-wisps can be yellow, white, green, or blue. They are easily " "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "鬼火可以是黄色、白色、绿色或蓝色。它们很容易被误认为是灯笼,尤其是在它们居住的多雾的沼泽中。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "troll" msgid_plural "trolls" msgstr[0] "巨魔" #. ~ Description for troll -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "一只体型庞大的绿色皮肤的类人生物。巨魔以其厚皮和自然再生能力而闻名。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "stirge" msgid_plural "stirges" msgstr[0] "蚊蝠" #. ~ Description for stirge -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "这只可怕的飞行生物看起来就像一只大蝙蝠和一只超大蚊子的杂交。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "shrieker" msgid_plural "shriekers" msgstr[0] "尖叫蘑菇怪" #. ~ Description for shrieker -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "尖叫蘑菇怪是一种和人一样大的蘑菇,通过发出刺耳的尖叫声来驱赶打扰它的生物。" -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "lemure" msgid_plural "lemures" msgstr[0] "劣魔" #. ~ Description for lemure -#: data/mods/Magiclysm/monsters/monsters.json +#: data/mods/Magical_Nights/monsters/monsters.json msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "劣魔就像一团融化的血肉,勉强能看出它有着人形的头部和躯干。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Warrior" +msgid_plural "Orc Warriors" +msgstr[0] "兽人战士" + +#. ~ Description for Orc Warrior +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big, badly behaved brutish humanoid. Armed with a sword and possessing " +"more than enough strength to use it to deadly effect, you don't want to be " +"in the way of one when its angry. It's also well armored, alongside a hide " +"one might slightly exaggerate as being ironlike. Generally less intelligent" +" than goblins, but it's ill advised to mention that." +msgstr "" +"一种体型硕大、行为粗暴的人形生物。他手持利剑,力气大得足以致命,当它发怒时,你可别挡它的道。它还穿着厚重的盔甲,皮肤强韧得可以夸张地说像铁一样。一般来说,它的智力比哥布林低,但最好不要提起这点。" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc 'Arrer" +msgid_plural "Orc 'Arrers" +msgstr[0] "兽人弓箭手" + +#. ~ Description for {'str': "Orc 'Arrer"} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"A big brute who wields a powerful bow. Not as respected among orc society, " +"but still very effective. It won't hesitate to slam you with the bow if " +"necessary, though." +msgstr "一个手持强弓的大块头。弓箭手在兽人社会中没有那么受重視,但仍然非常有效。若有需要,它会毫不犹豫用弓狠狠地砸向你。" + +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "Orc Blood Warrior" +msgid_plural "Orc Blood Warriors" +msgstr[0] "兽人血战士" + +#. ~ Description for {'str': 'Orc Blood Warrior'} +#: data/mods/Magical_Nights/monsters/orcs.json +msgid "" +"As a deviation from the normal verdant skin of the orcs, the blood warriors " +"are believed to be blessed by the gods of the orcs. They certainly look the" +" part, and from what you can tell their strength matches up with it. You " +"best be ready for a fight, because they'll certainly give you one." +msgstr "" +"与常见的绿色皮肤兽人不同,血战士被认为是受到兽人神灵的祝福。它们看起来确实像是神选之人,而且从你能察觉到的情况来看,它们的力量也与此相符。你最好做好准备迎战,因为它们一定会让你尝尝苦头。" + +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Blessed be." msgstr "祝福你。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "" "I must purge this land of its curse. Will you help or hinder our mission?" msgstr "我将清除这片土地的诅咒。你会帮助我们还是阻碍我们?" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Hello ." msgstr "你好,。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "Blessed be. May you purge that which opposes the calm." msgstr "祝福你。愿你清除那些不平静之物。" -#: data/mods/Magiclysm/npc/TALK_HEALER_GREY.json +#: data/mods/Magical_Nights/npc/TALK_HEALER_GREY.json msgid "I must purge this place before I can move on." msgstr "我必须先清理此处之后方能继续前进。" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Oh, you again." msgstr "哦,又是你。" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "Huh? *mumble mumble* … Who are you?" msgstr "哼?*喃喃自语*……你是谁?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "I'm busy, what is it?" msgstr "我很忙,怎么了?" -#: data/mods/Magiclysm/npc/TALK_OLD_MAGUS.json +#: data/mods/Magical_Nights/npc/TALK_OLD_MAGUS.json msgid "And leave my tower and all my research? I think not." msgstr "然后丢下我这座塔和我所有的研究?我还是不要了。" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Ah, hello again." msgstr "啊,又见面了。" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Do you seek power as well?" msgstr "你也在追寻能量吗?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "Yes, yes… *electrical crackling* Isn't it beautiful?" msgstr "是的,是的,……*电气爆裂*是不是很漂亮?" -#: data/mods/Magiclysm/npc/TALK_TECHNO_KID.json +#: data/mods/Magical_Nights/npc/TALK_TECHNO_KID.json msgid "I must find more power before I can leave." msgstr "我必须找到更多能量之后方能继续前进。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Mage Test" msgstr "魔法测试员" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm a wandering debug tester for the arcane arts." msgstr "我是个流浪的魔法测试员。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Master Magus" msgstr "大魔术师" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm an old Magus. Get off my lawn!" msgstr "我是个老魔术师。离开我的草坪!" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Techno-student" msgstr "科技魔法学徒" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I'm searching for more power." msgstr "我在寻找更多能量。" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "Healer" msgstr "治疗者" -#: data/mods/Magiclysm/npc/classes.json +#: data/mods/Magical_Nights/npc/classes.json msgid "I will purge this land of its curse." msgstr "我要清除这片土地的诅咒。" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Ancient Ones" msgstr "上古遗存" #. ~ Description for The Ancient Ones -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "The spellcrafters of old. Hidden from the world until the cataclysm, they " "have their own agenda and care little for you or yours." msgstr "古老的魔法创造者。他们在大灾变到来之后才被人知晓,他们有着自己的目的而且毫不关心像你这样的凡人。" -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "The Grey Flame" msgstr "灰白之火" #. ~ Description for The Grey Flame -#: data/mods/Magiclysm/npc/factions.json +#: data/mods/Magical_Nights/npc/factions.json msgid "" "A collection of those cursed by the cataclysm. They have sworn to rid this " "world of its curse and will stop at nothing to accomplish their task." msgstr "一个视大灾变为诅咒的组织。他们发誓要让这个世界摆脱诅咒,并会不惜一切代价完成这份事业。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Retrieve Magic Book" msgstr "取回魔法书" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where did I put that blasted…" msgstr "我把那本书放到哪个该死的地方了……" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I seem to have misplaced my book, The Tome of The Battle Mage. That " "worthless apprentice probably stole it. Bring it to me." msgstr "我好像把我那本《战斗法师宝典》弄丢了。也许是那个没用的徒弟偷的。去把它拿来给我。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "…What? Oh you're still here. Go find my book." msgstr "……什么?哦,你还在这里。快去把我的书找来。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Just as useless as that apprentice…" msgstr "真是和我那徒弟一样没用……" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You want me to do your job for you? Bah. That apprentice said something " "about wanting to look around town, you might start there. Oh, and it's " @@ -208955,222 +209284,222 @@ msgid "" msgstr "" "你想让我替你做你该做的工作吗?呃。那个徒弟说过想去城里四处逛逛,也许你可以从那里开始。哦,那本书叫《战斗法师宝典》,你起码能读懂书名,不是吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Where's my book?" msgstr "我的书呢?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Finally. Took you long enough." msgstr "终于来了。花了你这么久。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Nonsense! Useless! Waste of my time!" msgstr "胡说!没用!浪费我的时间!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Ugh, why am I cursed with useless people?" msgstr "呃,我这是被什么东西诅咒了?都是些没用的废物。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find Power Storage CBM" msgstr "收集储能模块CBM" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "More power… moar power… MOAR POWAA!" msgstr "更多能量……更多能量……更多能量!" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "I need more power. Find me more power storage and I'll give you this book." msgstr "我需要更多能量。帮我收集更多的储能模块,我就把这本书给你。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I don't care where it comes from so long as it's clean." msgstr "我不管它从哪里来,只要它是干净的就行。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You want more power too, don't you?" msgstr "你也想要更多能量,难道不是吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Electronic Stores might have what I need. Or you could just cut it out of " "something." msgstr "电器店里可能会有我需要的东西。或者你可以把它从其他人体内挖出来。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Find anything?" msgstr "找到了吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Perfect. More power… power…" msgstr "完美。更多能量……能量……" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I must find more power, this setback is inconvenient." msgstr "我必须找到更多能量,这次挫折可真不凑巧。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 50 Zombies" msgstr "杀死50只丧尸" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Will you answer the call?" msgstr "你会响应号召吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "This world has fallen to chaos and death. Remove 50 of the cursed from this" " world; assist me in purging this curse and you shall be rewarded." msgstr "这个世界已经陷入混乱和死亡。从这世上除掉那受诅咒的五十人,助我清除这诅咒,你就必得赏赐。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. I shall observe your efforts and judge you as one of the many " "or one of the few." msgstr "祝福你。我将视你努力来判断你是多数人之一或少数人之一。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You will not help purge this curse? Perhaps you are a part of the curse…" msgstr "你不想帮我清除这个诅咒?也许你也是诅咒的一部分……" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened congregate in towns and cities, the closer to the center the " "more you will find." msgstr "复苏觉醒之人聚集在城镇里,离中心越近,你就会发现越多。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are one of the few. We shall do great works together." msgstr "祝福你。你是少数人之一。我们能一起完成伟大事业。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Deception is the realm of the cursed. You disappoint me." msgstr "欺骗是被诅咒者的领域。你让我失望了。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Was the curse too strong for you?" msgstr "诅咒对你来说太强了吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "Kill 150 Zombies" msgstr "杀死150只丧尸" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "You have proven you are one of the few, will you stand with the few again?" msgstr "你已经证明了你是少数人之一,你会再和少数人站在一起吗?" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "We must continue the purge. Remove 150 more of the cursed from this land " "and you shall be blessed with greatness." msgstr "我们必须继续净化。从此处再除掉一百五十被诅咒的人,你就必得大的福。" -#: data/mods/Magiclysm/npc/missiondef.json -msgid "Blessed be. You are a true testament to the few." +#: data/mods/Magical_Nights/npc/missiondef.json +msgid "Blessed be. You are a true testament to the few." msgstr "祝福你。你是少数人的真正见证。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "I see. Perhaps you will find your way back to us one day." msgstr "我明白了。也许有一天你会找到回到我们身边的路。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "The awakened stir in even the darkest of corners. Seek them out and destroy" " them." msgstr "即使是最黑暗的角落亦有复苏觉醒之人骚动。找到它们,消灭它们。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "" "Blessed be. You are a valuable asset to our cause. Perhaps you may even be" " our salvation." msgstr "祝福你。你是我们事业的宝贵财富。也许你甚至可能是我们的救赎之人。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "You have come so far. Only to fall." msgstr "你已经走了这么远。只会堕落。" -#: data/mods/Magiclysm/npc/missiondef.json +#: data/mods/Magical_Nights/npc/missiondef.json msgid "The curse of this land infects that which does not seek to purge." msgstr "这片土地的诅咒感染了那些不寻求净化之人。" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "magus" msgstr "魔术师" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "technologist" msgstr "科技法师" -#: data/mods/Magiclysm/npc/npc.json +#: data/mods/Magical_Nights/npc/npc.json msgid "healer" msgstr "治疗者" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth here does not listen to your command to move." msgstr "大地纹丝不动,拒绝服从你的命令。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The pit has deepened further." msgstr "深坑进一步加深了。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "More debris shifts out of the pit." msgstr "更多的沙土从坑中移出。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The earth moves out of the way for you." msgstr "土壤为你移开了。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rocks here are ground into sand." msgstr "这里的岩石被磨成沙子。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The rock crumbles to dust." msgstr "这块岩石化作了尘埃。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "All the dust in the air here falls to the ground." msgstr "空气中的灰尘都落到地上了。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The fungus here dies back." msgstr "这里的真菌萎缩死亡了。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "地面震荡,一截非自然的光滑石墙升起。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "The dead tree regrows." msgstr "枯木重生。" -#: data/mods/Magiclysm/ter_fur_transform/ter_fur_transform.json +#: data/mods/Magical_Nights/ter_fur_transform/ter_fur_transform.json msgid "Life springs anew from the dead grass." msgstr "生命从枯死的草丛中重新涌发。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Magus" msgstr "祆教徒" #. ~ Description for Magus -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "A tradition as old as magic, the Magus focuses on binding and shaping the " "energy of the universe to their will." msgstr "祆教是種跟魔法一樣古老的教派,專注於根據自己的意願約束和形塑宇宙的能量。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Animist" msgstr "泛靈論者" #. ~ Description for {'str': 'Animist'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The animist tradition is a relatively new school of magical thought, formed " "through combination of many older ways that focus on harmony and connection " @@ -209179,48 +209508,48 @@ msgid "" msgstr "" "萬物有靈論的教派是一個相對較新的魔法思想學派,它透過結合許多注重與自然世界和諧及聯繫的傳統方式而形成。這並不意味著泛靈論者是被動的:自然界是一個殘酷的地方。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Kelvinist" msgstr "熱力學者" #. ~ Description for Kelvinist -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Disciples of the great Archwizard Lord Kelvin. Kelvinists focus their magic" " on manipulation and control of the temperature of their environment, " "leading to spectacularly powerful explosions or bone-chilling cold." msgstr "偉大的克耳文勳爵大法師的門徒。熱力學者將他們的魔力集中在操縱和控制環境溫度上,導致極其強大的爆炸或冰凍徹骨的寒冷。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Stormshaper" msgstr "塑風者" #. ~ Description for Stormshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Stormshapers follow ancient arcane disciplines of meditation and harmony " "with the winds and tides that shape the planet. Through their deep " "connection to these forces, they can request powerful changes." msgstr "風暴塑形者遵循古老神秘的教條:冥想、與塑造星球的風和潮汐互相協調。通過與這些力量的深層聯繫,他們可以請求進行強而有力的改變。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Technomancer" msgstr "科技巫師" #. ~ Description for Technomancer -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Technomancers are the new breed of modern magician, blending their arcane " "might with their advanced knowledge of the fundamental nature of the " "universe. They use technology to enhance their magic and vice versa." msgstr "科技巫師是現代魔法師的新學派,他們把神秘的力量與他們所掌握的宇宙本質的先進知識進行混合。他們使用科技來增強他們的魔力,反之亦然。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Earthshaper" msgstr "塑地者" #. ~ Description for Earthshaper -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Earthshapers have allowed their minds to sink deep within the stones and " "metals of the planet, and become one with its secrets. To a master " @@ -209229,12 +209558,12 @@ msgid "" msgstr "" "大地塑形者將他們的心神沉入星球深處的岩石與金屬之中,因而成為掌握其秘密的人。對一個塑形者大師而言,法術能夠像創造出他們的石頭一樣持久,而時間的計量是以地質年代來計算的。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Biomancer" msgstr "生機術士" #. ~ Description for {'str': 'Biomancer'} -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "The Biomancer focuses on manipulating and even absorbing flesh; their own, " "and that of other living or dead things. Most other wizards find their " @@ -209243,12 +209572,12 @@ msgid "" msgstr "" "生機術士專注於操縱甚至吸收肉體:包含他們自己,以及其他活著或死亡的血肉。大多數其他派別的法師發現生機術士的魔力是粗暴而令人不安的,但沒有人能夠質疑他們的魔法的效力,特別是他們對任何情況的適應性。" -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "Druid" msgstr "德魯伊" #. ~ Description for Druid -#: data/mods/Magiclysm/traits/classes.json +#: data/mods/Magical_Nights/traits/classes.json msgid "" "Druids follow a wild tradition of allegiance and rebirth within the world of" " nature, especially the cycle of death and rebirth that is the plant world." @@ -209256,103 +209585,103 @@ msgid "" msgstr "德魯伊遵循自然世界中忠誠和重生的野性傳統,尤其是植物世界中死亡與重生的循環。強大的德魯伊與人類一樣,都是這個世界的一部分。" #. ~ Mutation class name -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Manatouched" msgstr "魔触之魂" #. ~ Mutation class: Manatouched mutagen_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your ley lines surge with mana." msgstr "你的灵脉和魔法一同搏动。" #. ~ Mutation class: Manatouched iv_message -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "A crackle of power comes from within." msgstr "一股魔法力量从体内涌动而出。" #. ~ Mutation class: Manatouched Male memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_male" msgid "Ascended to the metaphysical." msgstr "飞升至超自然。" #. ~ Mutation class: Manatouched Female memorial messsage -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgctxt "memorial_female" msgid "Ascended to the metaphysical." msgstr "飞升至超自然。" #. ~ Description for {'str': 'Manatouched'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Magic is in you. Magic is you." msgstr "魔法在你体内。你就是魔法。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Solidification" msgstr "魔力固化" #. ~ Description for {'str': 'Mana Solidification'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your internal ley lines have become much easier for you to control, " "resulting in you being able to naturally create crystallized mana." msgstr "你体内的灵脉变得更容易受你控制了,这让你能够很自然地制造出魔力结晶。" #. ~ Description for {'str': 'Seeker Bolts'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your hands glow with mana energy. You can fire seeker bolts from your " "fingertips." msgstr "你的双手闪耀着魔法能量。你可以用指尖发射能够追踪敌人的火焰箭。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Subtle Spell" msgstr "精妙法术" #. ~ Description for {'str': 'Subtle Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to move your arms to cast spells, due to your ley lines " "becoming untethered from your arms. Arm encumbrance no longer applies to " "spell failure chance." msgstr "由于你的灵脉已经从你的手臂上脱离,你在施法时不再需要移动你的手臂。手臂累赘不再增加法术失败几率。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Silent Spell" msgstr "默发法术" #. ~ Description for {'str': 'Silent Spell'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "You no longer need to use your voice to enforce your will upon the world. " "Mouth encumbrance no longer applies to spell failure chance." msgstr "你不再需要发出声音便可将自身意志强加于这个世界之上。嘴部累赘不再增加法术失败几率。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Weak" msgstr "虚弱" #. ~ Description for {'str': 'Weak'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Your body is unnaturally weak. -2 Strength." msgstr "你的身体异常虚弱。力量 -2。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Luminance" msgstr "魔力发光" #. ~ Description for {'str': 'Mana Luminance'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Your body discards unusable mana as light and heat, making you glow softly." msgstr "你的身体将无法使用的魔力以光和热的形式释放出来,让你发出柔和的光芒。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Siphon" msgstr "法力虹吸" #. ~ Description for Mana Siphon -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." @@ -209361,273 +209690,293 @@ msgstr "这是法力虹吸系列突变的法术部分。如果你学会了这个 #. ~ Description for {'str': 'Mana Siphon'} #. ~ Description for {'str': 'Mana Drain'} #. ~ Description for {'str': 'Mana Vortex'} -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "" "Violence excites your ley lines. Whenever you hit an enemy in melee, you " "have a chance of regaining some mana." msgstr "暴力能够唤醒你体内的灵脉。当你在近战中攻击命中敌人时,你就有几率获得一些魔力。" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Drain" msgstr "魔力汲取" -#: data/mods/Magiclysm/traits/manatouched.json +#: data/mods/Magical_Nights/traits/manatouched.json msgid "Mana Vortex" msgstr "魔力漩涡" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Efficiency" msgstr "次級法力效率" #. ~ Description for Lesser Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little more mana in your body than usual." msgstr "你的身體能儲存的法力值比平常人略多一點。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Efficiency" msgstr "法力效率" #. ~ Description for Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store more mana in your body than usual." msgstr "你的身體能儲存的法力值比平常人多一些。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Efficiency" msgstr "高級法力效率" #. ~ Description for Greater Mana Efficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot more mana in your body than usual." msgstr "你的身體能儲存的法力值比平常人多很多。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Inefficiency" msgstr "次級法力低效率" #. ~ Description for Lesser Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a little less mana in your body than usual." msgstr "你的身體能儲存的法力值比平常人略少一點點。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Inefficiency" msgstr "法力低效率" #. ~ Description for Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store less mana in your body than usual." msgstr "你的身體能儲存的法力值比平常人少一些。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Inefficiency" msgstr "高級法力低效率" #. ~ Description for Greater Mana Inefficiency -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "You are able to store a lot less mana in your body than usual." msgstr "你的身體能儲存的法力值比平常人少很多。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Regeneration" msgstr "次級法力再生率" #. ~ Description for Lesser Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly faster than normal." msgstr "你的法力自然再生率比平常人稍為快一點。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Regeneration" msgstr "法力再生率" #. ~ Description for Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is faster than normal." msgstr "你的法力自然再生率比平常人快一些。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Regeneration" msgstr "高級法力再生率" #. ~ Description for Greater Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much faster than normal." msgstr "你的法力自然再生率比平常人快很多。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Regeneration" msgstr "低法力再生率" #. ~ Description for Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slightly slower than normal." msgstr "你的法力自然再生率比平常人稍為慢一點。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Regeneration" msgstr "微弱法力再生率" #. ~ Description for Very Poor Mana Regeneration -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is slower than normal." msgstr "你的法力自然再生率比平常人慢一些。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Regeneration" msgstr "低劣法力再生率" #. ~ Description for {'str': 'Abysmal Mana Regeneration'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Your natural mana regeneration is much slower than normal." msgstr "你的法力自然再生率比平常人慢很多。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Lesser Mana Sensitivity" msgstr "次級法力靈敏度" #. ~ Description for Lesser Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body slightly better than normal, allowing " "you to tap into more of your reserves." msgstr "你對體內的法力感應能力比一般人稍微好一點,這讓你能運用更多體內的法力。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Mana Sensitivity" msgstr "法力靈敏度" #. ~ Description for Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body better than normal, allowing you to tap " "into more of your reserves." msgstr "你對體內的法力感應能力比一般人好一些,這讓你能運用更多體內的法力。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Greater Mana Sensitivity" msgstr "高級法力靈敏度" #. ~ Description for Greater Mana Sensitivity -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You can sense the mana in your body much better than normal, allowing you to" " tap into more of your reserves." msgstr "你對體內的法力感應能力比一般人好很多,這讓你能運用更多體內的法力。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Poor Mana Sensitivity" msgstr "低法力靈敏度" #. ~ Description for Poor Mana Sensitivity #. ~ Description for Very Poor Mana Sensitivity #. ~ Description for {'str': 'Abysmal Mana Sensitivity'} -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "" "You have a hard time sensing the mana in your body, making less of your " "reserves available for use." msgstr "你很難感知身體儲備的法力值,因此減少所能使用的數量。" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Very Poor Mana Sensitivity" msgstr "微弱法力靈敏度" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Abysmal Mana Sensitivity" msgstr "低劣法力靈敏度" -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Debug Spell Mutation" msgstr "除錯法術突變" #. ~ Description for Debug Spell Mutation -#: data/mods/Magiclysm/traits/mutation.json +#: data/mods/Magical_Nights/traits/mutation.json msgid "Gives all of the debug spells at max level." msgstr "給予最高等級的所有除錯法術。" #. ~ Description for orichalcum frame -#: data/mods/Magiclysm/vehicleparts/frames.json +#: data/mods/Magical_Nights/vehicleparts/frames.json msgid "" "An expensive magical metal framework. Other vehicle components can be " "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "一个昂贵的魔法金属车辆框架。其他载具部件能够安装在它上面,在它四周增加新的车辆框架,就可以增加载具大小。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Floating disk" msgstr "飘浮碟" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana wheel" msgid_plural "mana wheels" msgstr[0] "魔法车轮" #. ~ Description for mana wheel -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A column of mana energy that enables a floating disk to move." msgstr "一系列魔法能量,使飘浮碟能够移动。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana frame" msgstr "魔法车架" #. ~ Description for mana frame -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "A shape of pure mana that can float and carry items." msgstr "一个由纯粹魔力构成的飘浮碟,可以用来搬运物品。" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana energy" msgstr "魔力" -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "mana core power" msgid_plural "mana core powers" msgstr[0] "魔力动力" #. ~ Description for mana core power -#: data/mods/Magiclysm/vehicles/summoned_vehicles.json +#: data/mods/Magical_Nights/vehicles/summoned_vehicles.json msgid "Seeing this is a bug." msgstr "看到這訊息是程式錯誤導致的。" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "magic door" msgstr "魔法门" -#: data/mods/Magiclysm/worldgen/magic_basement.json +#: data/mods/Magical_Nights/worldgen/magic_basement.json msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "一圈晦涩难懂的符号刻在金属墙上,它们那犹如异界的形状不断吸引着你的眼球。" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop" msgstr "魔術店" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic shop roof" msgstr "魔術店屋頂" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Demon Spider Nest" +msgstr "恶魔蜘蛛巢" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "used bookstore" msgstr "二手書店" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json -msgid "Swamp" -msgstr "沼澤" +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Black Dragon Lair" +msgstr "黑龙巢穴" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat" +msgstr "湖畔度假村" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Lake Retreat Boathouse" +msgstr "湖畔度假村船屋" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "wizard tower" msgstr "法师塔" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Forest Tomb" +msgstr "森林墓地" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "magic academy" msgstr "魔法学院" -#: data/mods/Magiclysm/worldgen/overmap_terrain.json +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json msgid "Goblin Camp" -msgstr "" +msgstr "哥布林营地" + +#: data/mods/Magical_Nights/worldgen/overmap_terrain.json +msgid "Orc Camp" +msgstr "兽人营地" #: data/mods/ManualBionicInstall/modinfo.json msgid "Manual Bionic Installation" @@ -210853,39 +211202,39 @@ msgstr "与树木交談。" #: data/mods/Monster_Girls/categories.json #: data/mods/Monster_Girls/thresh_mutation.json msgid "Kitsune" -msgstr "" +msgstr "狐妖" #. ~ Mutation class: Kitsune mutagen_message #: data/mods/Monster_Girls/categories.json msgid "You suddenly have an indescribable craving for chicken..." -msgstr "" +msgstr "你突然对鸡肉产生了难以形容的渴望……" #. ~ Mutation class: Kitsune iv_message #: data/mods/Monster_Girls/categories.json msgid "" "Your blood runs wild with mischief and merriment as the mutagen flows " "through it." -msgstr "" +msgstr "你的血液因恶作剧和欢乐而沸腾,变异因子在其中流动。" #. ~ Mutation class: Kitsune Male memorial messsage #: data/mods/Monster_Girls/categories.json msgctxt "memorial_male" msgid "Learned what the fox says." -msgstr "" +msgstr "学会了狐狸怎么叫。" #. ~ Mutation class: Kitsune Female memorial messsage #: data/mods/Monster_Girls/categories.json msgctxt "memorial_female" msgid "Learned what the fox says." -msgstr "" +msgstr "学会了狐狸怎么叫。" #: data/mods/Monster_Girls/dreams.json msgid "You have a strange dream about foxes." -msgstr "" +msgstr "你做了一个关于狐狸的怪梦。" #: data/mods/Monster_Girls/dreams.json msgid "Your dreams give you a mischievous furry feeling." -msgstr "" +msgstr "你的梦境让你感到一种淘气又毛茸茸的感觉。" #: data/mods/Monster_Girls/dreams.json msgid "In a dream, you see a curiously harpy-like reflection of yourself." @@ -210911,12 +211260,12 @@ msgstr "在梦里,你瞥见自己身上竟然长出了一条奇怪的牛尾巴 #: data/mods/Monster_Girls/dreams.json msgid "You have a vivid dream of sneaking up to a chicken coop." -msgstr "" +msgstr "你清晰地梦到自己悄悄靠近鸡舍。" #: data/mods/Monster_Girls/dreams.json msgid "" "Whilst dreaming, you see yourself… but with a pair of fox ears on your head?" -msgstr "" +msgstr "在梦中,你看到了自己……但是你的头上多了一对狐狸耳朵?" #: data/mods/Monster_Girls/dreams.json msgid "" @@ -210946,11 +211295,11 @@ msgstr "你梦见自己变成了半人半蜘蛛的模样,这让你感到害怕 msgid "" "You vividly dream of running away from a chicken coop, your prey held by the" " neck between your teeth." -msgstr "" +msgstr "你清晰地梦到自己叼着猎物的脖子,从鸡舍里跑出来。" #: data/mods/Monster_Girls/dreams.json msgid "You vividly dream of… a wedding altar?!?" -msgstr "" +msgstr "你清晰地梦到……一个婚礼祭坛?!" #: data/mods/Monster_Girls/dreams.json msgid "" @@ -210960,17 +211309,17 @@ msgstr "一个富有魅力的三尖树送了你一束由丧尸头组成的花束 #: data/mods/Monster_Girls/dreams.json msgid "You vividly dream of committing tax fraud: the ultimate trick!" -msgstr "" +msgstr "你清晰地梦到自己犯下了偷税漏税的\"终极恶作剧\"!" #: data/mods/Monster_Girls/dreams.json msgid "" "You find yourself subconsciously moving your head from your normal pillow to" " your tail as you sleep." -msgstr "" +msgstr "你发现自己在睡觉时,不自觉地把头从普通的枕头移到了自己的尾巴上。" #: data/mods/Monster_Girls/dreams.json msgid "You dream of sharing your love of mischief with a partner." -msgstr "" +msgstr "你梦到与一个伴侣分享你对恶作剧的热爱。" #: data/mods/Monster_Girls/modinfo.json msgid "Monster Girls Mutations" @@ -211090,19 +211439,19 @@ msgstr[0] "精灵诱变血清" #: data/mods/Monster_Girls/mutagens.json msgid "Kitsune mutagen" msgid_plural "Kitsune mutagens" -msgstr[0] "" +msgstr[0] "狐妖诱变剂" #: data/mods/Monster_Girls/mutagens.json msgid "Kitsune serum" msgid_plural "Kitsune serums" -msgstr[0] "" +msgstr[0] "狐妖诱变血清" #. ~ Description for Kitsune serum #: data/mods/Monster_Girls/mutagens.json msgid "" "A super-concentrated mutagen the color of amber. You need a syringe to " "inject it… if you really want to?" -msgstr "" +msgstr "超浓缩的诱变剂,有着琥珀色。你需要一个针管来注射……如果你真的想用的话。" #. ~ Description for {'str': 'Nekomimi'} #: data/mods/Monster_Girls/thresh_mutation.json @@ -211194,7 +211543,7 @@ msgid "" "spirits, you embody their mischievous nature perfectly. Perhaps one day, " "you'll find that special partner-in-crime to live up to the other reputation" " Kitsunes have." -msgstr "" +msgstr "虽然你可能没有获得日本狐妖的神秘力量,但你完美地体现了它们淘气的本性。也许有一天,你会找到那个特别的\"共犯\",来实现狐妖的另一种名声。" #: data/mods/Mundane_Zombies/modinfo.json msgid "Mundane Zombies" @@ -212111,7 +212460,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW gyroscopic stabilizer" msgid_plural "LW gyroscopic stabilizers" -msgstr[0] "" +msgstr[0] "LW型陀螺稳定仪" #: data/mods/No_Hope/Items/gunmods.json msgid "An advanced Leadworks built-in gyroscopic stabilizer." @@ -212120,7 +212469,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW red dot sight" msgid_plural "LW red dot sights" -msgstr[0] "" +msgstr[0] "LW型红点瞄准镜" #: data/mods/No_Hope/Items/gunmods.json msgid "Built in red-dot sight for the Leadworks weapon." @@ -212129,7 +212478,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW rifle scope" msgid_plural "LW rifle scopes" -msgstr[0] "" +msgstr[0] "LW型步枪瞄准镜" #: data/mods/No_Hope/Items/gunmods.json msgid "Built in rifle scope for the Leadworks weapon." @@ -212138,7 +212487,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW ACOG scope" msgid_plural "LW ACOG scopes" -msgstr[0] "" +msgstr[0] "LW型 ACOG 瞄准镜" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -212149,7 +212498,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW holographic sight" msgid_plural "LW holographic sights" -msgstr[0] "" +msgstr[0] "LW型全息瞄准镜" #: data/mods/No_Hope/Items/gunmods.json msgid "Leadworks built-in holographic sight." @@ -212158,7 +212507,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW underbarrel laser sight" msgid_plural "LW underbarrel laser sights" -msgstr[0] "" +msgstr[0] "LW 管下激光瞄具" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -212169,7 +212518,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW forward grip" msgid_plural "LW forward grips" -msgstr[0] "" +msgstr[0] "LW型前置握把" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -212180,7 +212529,7 @@ msgstr "枪管前方的 Leadworks 内置握把可实现更强的后坐力控制 #: data/mods/No_Hope/Items/gunmods.json msgid "LW bipod" msgid_plural "LW bipods" -msgstr[0] "" +msgstr[0] "LW型双脚架" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -212192,7 +212541,7 @@ msgstr "" #: data/mods/No_Hope/Items/gunmods.json msgid "LW underslung shotgun" msgid_plural "LW underslung shotguns" -msgstr[0] "" +msgstr[0] "LW型下挂式霰弹枪" #: data/mods/No_Hope/Items/gunmods.json msgid "" @@ -215825,6 +216174,10 @@ msgstr "切換啟動/檢視" msgid "Toggle safe fuel mod" msgstr "开关节能模式" +#: data/raw/keybindings/keybindings.json +msgid "Toggle sprite" +msgstr "切换贴图" + #: data/raw/keybindings/keybindings.json msgid "Toggle auto start mod" msgstr "开关自启模式" @@ -216017,10 +216370,6 @@ msgstr "丟棄物品到鄰近格子" msgid "View/Activate Bionics" msgstr "檢視/啟動 生化插件" -#: data/raw/keybindings/keybindings.json -msgid "Toggle sprite" -msgstr "切换贴图" - #: data/raw/keybindings/keybindings.json msgid "View/Activate Mutations" msgstr "檢視/啟動 突變" @@ -222059,9 +222408,10 @@ msgstr " 生化插件 " msgid "" "[%s] Reassign, [%s] Switch tabs," " [%s] Toggle fuel saving mode, " +"[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." msgstr "" -"[%s]重新分配,[%s]切换标签页,[%s]开关节能模式,[%s]开关自启模式。" +"[%s]重新分配,[%s]切换标签页,[%s]开关节能模式,[%s]开关贴图可见,[%s]开关自启模式。" #: src/bionics_ui.cpp #, c-format @@ -222128,6 +222478,10 @@ msgstr "(啟動)" msgid "(incapacitated)" msgstr "(嚴重傷殘)" +#: src/bionics_ui.cpp +msgid "(hidden)" +msgstr "(隐藏)" + #: src/bionics_ui.cpp msgid "(fuel saving ON)" msgstr "(节能模式)" @@ -222961,6 +223315,10 @@ msgstr "%s 你的手沒空來穿它。" msgid "Can't wear more than one %s!" msgstr "不能穿戴多於一件的 %s!" +#: src/character.cpp +msgid "Can't wear more than one exosuit!" +msgstr "" + #: src/character.cpp #, c-format msgid "Can't wear %i or more %s at once." @@ -223959,7 +224317,7 @@ msgstr "開始冬眠。" #: src/character.cpp msgid "You enter hibernation." -msgstr "" +msgstr "你进入了冬眠状态。" #: src/character.cpp msgid "You need to be nearly full of food and water to enter hibernation." @@ -237225,7 +237583,7 @@ msgstr "此彈藥 會點燃火焰。" #: src/item.cpp msgid "Weapon can't be loaded in its current state." -msgstr "" +msgstr "该武器无法在当前状态下填充弹药。" #: src/item.cpp msgid "" @@ -238670,8 +239028,13 @@ msgid "Test which group?" msgstr "測試哪一組?" #: src/item_factory.cpp -msgid "Result of 1000 spawns:" -msgstr "1000次生成结果:" +msgid "How many iterations to test?" +msgstr "测试需要多少次迭代?" + +#: src/item_factory.cpp +#, c-format +msgid "Results of %zu spawns:" +msgstr "%zu次生成结果:" #: src/item_factory.cpp src/trait_group.cpp #, c-format @@ -244646,8 +245009,14 @@ msgid "ERROR: Invalid energy string. Defaulting to NONE" msgstr "錯誤:無效的能量字串。預設成 NONE" #: src/magic.cpp -msgid "ERROR: Invalid damage type string. Defaulting to none" -msgstr "錯誤:無效的傷害類別字串。預設成 none" +msgid "" +"ERROR: 'None' damage is not not valid and obsoleted for spells! Please " +"switch to 'True' instead" +msgstr "错误:'None' 伤害无效,并已废弃用于法术!请切换为 'True' (开启)" + +#: src/magic.cpp +msgid "ERROR: Invalid damage type string. Defaulting to bash" +msgstr "错误:伤害类型字符串无效。已默认设置为物理打击" #: src/magic.cpp #, c-format @@ -245778,6 +246147,8 @@ msgid "" "Errors for \"bash\" field in \"%s\": \"%s\":\n" "%s" msgstr "" +"错误:在\"%s\"的\"bash\"字段中发现错误:\"%s\":\n" +"%s" #: src/mapgen.cpp msgid "Wreckage" @@ -249807,11 +250178,12 @@ msgstr "%1$s 的機械裝置抓住了 %2$s!" msgid "%1$s slams %2$s to the ground!" msgstr "%1$s 把 %2$s 摔在地上!" -#. ~ 1$s is bodypart name in accusative, 2$d is damage value. +#. ~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage +#. value. #: src/monattack.cpp #, c-format -msgid "The zombie kicks your %1$s for %2$d damage…" -msgstr "殭屍踢中你的 %1$s 造成 %2$d 傷害…" +msgid "The %1$s kicks your %2$s for %3$d damage…" +msgstr "%1$s 踢中了你的 %2$s 并且造成了 %3$d 点伤害……" #: src/monattack.cpp #, c-format @@ -254059,7 +254431,7 @@ msgstr "預設世界" msgid "Android" msgstr "Android" -#: src/options.cpp src/overmap_ui.cpp +#: src/options.cpp src/overmap_ui.cpp src/vehicle_use.cpp #, c-format msgid "%s" msgstr "%s" @@ -261696,6 +262068,11 @@ msgstr "%s 的播種機由於低溫關閉了。" msgid "Your %s winks out of existence." msgstr " %s 一眨眼就消失不见了。" +#: src/vehicle.cpp +#, c-format +msgid "%1s took %.1f damage from shock." +msgstr "%1s 受到 %.1f 点冲击伤害。" + #: src/vehicle.cpp #, c-format msgid "The %s's %s breaks into pieces!" @@ -261837,6 +262214,16 @@ msgstr "%s 的引擎發出了嘶嘶聲。" msgid "Your %s is not fast enough to keep up with the %s" msgstr "%s 速度不夠,無法跟上 %s" +#: src/vehicle_move.cpp +#, c-format +msgid "%1s collided with %2s!" +msgstr "%1s 撞上了 %2s!" + +#: src/vehicle_move.cpp +#, c-format +msgid "%1s smashed %2s!" +msgstr "%1s 撞毁了 %2s!" + #. ~ 1$s - vehicle name, 2$s - part name, 3$s - NPC or monster #: src/vehicle_move.cpp #, c-format @@ -262429,11 +262816,6 @@ msgstr "你巧妙的將 %s 折疊好。" msgid "You let go of %s as you fold it." msgstr "你放開了 %s 當你折疊它時。" -#: src/vehicle_use.cpp -#, c-format -msgid "folded %s" -msgstr "%s (折疊)" - #: src/vehicle_use.cpp #, c-format msgid "A folded %s." diff --git a/msvc-full-features/vcpkg.json b/msvc-full-features/vcpkg.json index da73cbcffe94..2b638f03cbf2 100644 --- a/msvc-full-features/vcpkg.json +++ b/msvc-full-features/vcpkg.json @@ -1,22 +1,18 @@ { - "name": "bn-vcpkg-dependencies", - "version-string": "experimental", - "dependencies": [ - "sdl2", - { - "name": "sdl2-image", - "features": [ "libjpeg-turbo" ] - }, - { - "name": "sdl2-mixer", - "features": [ "libflac", "mpg123", "libmodplug" ] - }, - "sdl2-ttf" - ], - "builtin-baseline": "c9aba300923c8ec0ab190e2bff23085209925c97", - "vcpkg-configuration": { - "overlay-ports": [ - "../.github/vcpkg_ports" - ] - } + "name": "bn-vcpkg-dependencies", + "version-string": "experimental", + "dependencies": [ + "sdl2", + { "name": "sdl2-image", "features": [ "libjpeg-turbo" ] }, + { "name": "sdl2-mixer", "features": [ "libflac", "mpg123", "libmodplug" ] }, + "sdl2-ttf", + "sqlite3", "zlib" + ], + "builtin-baseline": "b322364f06308bdd24823f9d8f03fe0cc86fd46f", + "overrides": [ + { "name": "sdl2-mixer", "version": "2.6.3#1" } + ], + "vcpkg-configuration": { + "overlay-ports": [ "../.github/vcpkg_ports" ] + } } diff --git a/scripts/affected_files.ts b/scripts/affected_files.ts index 7567148b03e3..5639867e77ab 100644 --- a/scripts/affected_files.ts +++ b/scripts/affected_files.ts @@ -25,7 +25,7 @@ const getDiffs = async (pr: number) => { octokit.rest.pulls.listFiles, { owner: "cataclysmbnteam", repo: "Cataclysm-BN", pull_number: pr }, ) - const pathsFilter = new RegExp(`(^${paths.join("|")})/`) + const pathsFilter = new RegExp(`(^${paths.join("|")})/.*\\.(cpp|h|hpp)`) return res .filter((x) => ACMRT.has(x.status)) @@ -79,7 +79,7 @@ const main = new Command() getDiffs(pr).then((xs) => partition(xs, (x) => x.endsWith(".h"))), ]) // console.log(deps) - // console.log({ src, headers }) + console.log({ src, headers }) const affected = new Set(src.concat(headers.flatMap((x) => Array.from(deps.get(x) ?? [])))) console.log(affected) diff --git a/scripts/item_category_mod_test.ts b/scripts/item_category_mod_test.ts deleted file mode 100644 index 0b14a5ca845a..000000000000 --- a/scripts/item_category_mod_test.ts +++ /dev/null @@ -1,55 +0,0 @@ -import * as v from "jsr:@valibot/valibot" - -import { assertEquals } from "jsr:@std/assert/equals" -import { parseMany, recursivelyReadJSON } from "./utils.ts" -import { assertExists } from "jsr:@std/assert" - -type Item = v.InferOutput -const Item = v.looseObject({ - id: v.string(), - name: v.optional(v.any()), - type: v.optional(v.string()), - category: v.optional(v.string()), -}) - -type RenamedItem = v.InferOutput -const RenamedItem = v.looseObject({ - id: v.string(), - name: v.optional(v.any()), - type: v.optional(v.string()), - "copy-from": v.optional(v.string()), - category: v.string(), -}) - -const parseItems = parseMany(Item) -const parseRenamedItems = parseMany(RenamedItem) - -const showId = (item: Item) => `${item.id} (${item.type})` - -const jsons = await recursivelyReadJSON("data/json/items") - .then(parseItems).then((xs) => Map.groupBy(xs, (x) => x.id)) - -const overWritten = await recursivelyReadJSON( - "data/mods/Item_Category_Overhaul", -).then(parseRenamedItems) - -overWritten.forEach((item) => - Deno.test({ - name: showId(item), - sanitizeOps: false, - sanitizeResources: false, - sanitizeExit: false, - fn: () => { - const showName = showId(item) - const originals = jsons.get(item.id) - assertExists(originals, `${showName} exists in original items`) - const original = originals.find((x) => x.type === item.type) - assertExists( - original, - `${showName} has matching 'type' as original, found: ${originals.map(showId)}`, - ) - assertEquals(item.id, item["copy-from"], `${showName}'s 'id' and 'copy-from' are different`) - assertEquals(original?.name, item.name, `${showName}'s 'name' is different from original`) - }, - }) -) diff --git a/src/Android.mk b/src/Android.mk index 94ea8eb2a1cc..428e8134e647 100644 --- a/src/Android.mk +++ b/src/Android.mk @@ -17,9 +17,9 @@ LOCAL_SRC_FILES := $(FILE_LIST:$(LOCAL_PATH)/%=%) FILE_LIST_LUA := $(wildcard $(LOCAL_PATH)/lua/*.c) LOCAL_SRC_FILES += $(FILE_LIST_LUA:$(LOCAL_PATH)/%=%) -LOCAL_SHARED_LIBRARIES := libhidapi SDL2 SDL2_mixer SDL2_image SDL2_ttf mpg123 +LOCAL_SHARED_LIBRARIES := libhidapi SDL2 SDL2_mixer SDL2_image SDL2_ttf mpg123 libsqlite3 -LOCAL_LDLIBS := -lGLESv1_CM -lGLESv2 -llog +LOCAL_LDLIBS := -lGLESv1_CM -lGLESv2 -ldl -llog -lz LOCAL_CFLAGS += -DTILES=1 -DSDL_SOUND=1 -DLUA=1 -DBACKTRACE=1 -Wextra -Wall -fsigned-char -ffast-math diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 474a0f9a10c6..a54ff26fe2da 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -61,6 +61,8 @@ if (TILES) add_dependencies(cataclysm-bn-tiles-common get_version) + target_link_libraries(cataclysm-bn-tiles-common PUBLIC ZLIB::ZLIB) + target_link_libraries(cataclysm-bn-tiles-common PUBLIC SQLite::SQLite3) target_link_libraries(cataclysm-bn-tiles PRIVATE cataclysm-bn-tiles-common) target_compile_definitions(cataclysm-bn-tiles-common PUBLIC TILES ) @@ -176,9 +178,12 @@ if (CURSES) endif () add_dependencies(cataclysm-bn-common get_version) + target_link_libraries(cataclysm-bn PRIVATE cataclysm-bn-common) target_include_directories(cataclysm-bn-common PUBLIC ${CURSES_INCLUDE_DIR}) + target_link_libraries(cataclysm-bn-common PUBLIC ZLIB::ZLIB) + target_link_libraries(cataclysm-bn-common PUBLIC SQLite::SQLite3) target_link_libraries(cataclysm-bn-common PUBLIC ${CURSES_LIBRARIES}) if (CMAKE_USE_PTHREADS_INIT) diff --git a/src/bionics.cpp b/src/bionics.cpp index e03a3763b7a7..2859e0f4bbba 100644 --- a/src/bionics.cpp +++ b/src/bionics.cpp @@ -2931,6 +2931,7 @@ void bionic::serialize( JsonOut &json ) const if( energy_stored > 0_kJ ) { json.member( "energy_stored", energy_stored ); } + json.member( "show_sprite", show_sprite ); json.end_object(); } @@ -2955,6 +2956,9 @@ void bionic::deserialize( JsonIn &jsin ) if( jo.has_float( "auto_start_threshold" ) ) { auto_start_threshold = jo.get_float( "auto_start_threshold" ); } + if( jo.has_bool( "show_sprite" ) ) { + show_sprite = jo.get_bool( "show_sprite" ); + } if( jo.has_array( "bionic_tags" ) ) { for( const std::string line : jo.get_array( "bionic_tags" ) ) { bionic_tags.insert( line ); diff --git a/src/bionics.h b/src/bionics.h index 6418f4d475cc..0c716841dcf4 100644 --- a/src/bionics.h +++ b/src/bionics.h @@ -165,6 +165,7 @@ struct bionic { int charge_timer = 0; char invlet = 'a'; bool powered = false; + bool show_sprite = true; /* Ammunition actually loaded in this bionic gun in deactivated state */ itype_id ammo_loaded = itype_id::NULL_ID(); /* Ammount of ammo actually held inside by this bionic gun in deactivated state */ diff --git a/src/bionics_ui.cpp b/src/bionics_ui.cpp index c4e8ef20e9ae..9b5f6c5889a8 100644 --- a/src/bionics_ui.cpp +++ b/src/bionics_ui.cpp @@ -258,8 +258,10 @@ static void draw_bionics_titlebar( const catacurses::window &window, Character * std::string desc_append = string_format( _( "[%s] Reassign, [%s] Switch tabs, " "[%s] Toggle fuel saving mode, " + "[%s] Toggle sprite visibility, " "[%s] Toggle auto start mode." ), ctxt.get_desc( "REASSIGN" ), ctxt.get_desc( "NEXT_TAB" ), ctxt.get_desc( "TOGGLE_SAFE_FUEL" ), + ctxt.get_desc( "TOGGLE_SPRITE" ), ctxt.get_desc( "TOGGLE_AUTO_START" ) ); desc_append += string_format( _( " [%s] Sort: %s" ), ctxt.get_desc( "SORT" ), sort_mode_str( uistate.bionic_sort_mode ) ); @@ -317,6 +319,9 @@ static std::string build_bionic_poweronly_string( const bionic &bio ) if( bio.incapacitated_time > 0_turns ) { properties.emplace_back( _( "(incapacitated)" ) ); } + if( !bio.show_sprite ) { + properties.emplace_back( _( "(hidden)" ) ); + } if( !bio.has_flag( flag_SAFE_FUEL_OFF ) && ( !bio.info().fuel_opts.empty() || bio.info().is_remote_fueled ) ) { properties.emplace_back( _( "(fuel saving ON)" ) ); @@ -630,6 +635,7 @@ void show_bionics_ui( Character &who ) ctxt.register_action( "QUIT" ); ctxt.register_action( "HELP_KEYBINDINGS" ); ctxt.register_action( "TOGGLE_SAFE_FUEL" ); + ctxt.register_action( "TOGGLE_SPRITE" ); ctxt.register_action( "TOGGLE_AUTO_START" ); ctxt.register_action( "SORT" ); @@ -840,6 +846,13 @@ void show_bionics_ui( Character &who ) popup( _( "You can't toggle auto start mode on a non-fueled CBM." ) ); } } + + } else if( action == "TOGGLE_SPRITE" ) { + auto &bio_list = tab_mode == TAB_ACTIVE ? active : passive; + if( !current_bionic_list->empty() ) { + tmp = bio_list[cursor]; + tmp->show_sprite = !tmp->show_sprite; + } } else if( action == "SORT" ) { uistate.bionic_sort_mode = pick_sort_mode(); // FIXME: is there a better way to resort? diff --git a/src/character.cpp b/src/character.cpp index 631bc060878f..8169c5f52aa8 100644 --- a/src/character.cpp +++ b/src/character.cpp @@ -3260,6 +3260,12 @@ ret_val Character::can_wear( const item &it, bool with_equip_change ) cons } } + for( auto &i : worn ) { + if( i->has_flag( flag_EXOSUIT ) && it.has_flag( flag_EXOSUIT ) ) { + return ret_val::make_failure( _( "Can't wear more than one exosuit!" ) ); + } + } + if( amount_worn( it.typeId() ) >= MAX_WORN_PER_TYPE ) { return ret_val::make_failure( _( "Can't wear %i or more %s at once." ), MAX_WORN_PER_TYPE + 1, it.tname( MAX_WORN_PER_TYPE + 1 ) ); @@ -3664,6 +3670,9 @@ std::vector Character::get_overlay_ids() const // then get bionics for( const bionic &bio : *my_bionics ) { + if( !bio.show_sprite ) { + continue; + } overlay_id = ( bio.powered ? "active_" : "" ) + bio.id.str(); order = get_overlay_order_of_mutation( overlay_id ); mutation_sorting.insert( std::pair( order, overlay_id ) ); @@ -8748,26 +8757,46 @@ void Character::on_hit( Creature *source, bodypart_id bp_hit, source->add_effect( effect_blind, 2_turns ); } } - if( worn_with_flag( flag_REQUIRES_BALANCE ) && !has_effect( effect_downed ) ) { + + map &here = get_map(); + const optional_vpart_position veh_part = here.veh_at( pos() ); + bool in_skater_vehicle = in_vehicle && veh_part.part_with_feature( "SEAT_REQUIRES_BALANCE", false ); + + if( ( worn_with_flag( flag_REQUIRES_BALANCE ) || in_skater_vehicle ) && !is_on_ground() ) { int rolls = 4; - if( worn_with_flag( flag_ROLLER_ONE ) ) { - rolls += 2; - } - if( has_trait( trait_PROF_SKATER ) ) { - rolls--; - } - if( has_trait( trait_DEFT ) ) { - rolls--; - } + if( worn_with_flag( flag_ROLLER_ONE ) && !in_skater_vehicle ) { + if( worn_with_flag( flag_REQUIRES_BALANCE ) && !has_effect( effect_downed ) ) { + int rolls = 4; + if( worn_with_flag( flag_ROLLER_ONE ) ) { + rolls += 2; + } + if( has_trait( trait_PROF_SKATER ) ) { + rolls--; + } + if( has_trait( trait_DEFT ) ) { + rolls--; + } - if( stability_roll() < dice( rolls, 10 ) ) { - if( !is_player() ) { - if( u_see ) { - add_msg( _( "%1$s loses their balance while being hit!" ), name ); + if( stability_roll() < dice( rolls, 10 ) ) { + if( !is_player() ) { + if( u_see ) { + add_msg( _( "%1$s loses their balance while being hit!" ), name ); + } + } else { + add_msg( m_bad, _( "You lose your balance while being hit!" ) ); + } + if( in_skater_vehicle ) { + g->fling_creature( this, rng_float( 0_degrees, 360_degrees ), 10 ); + } + // This kind of downing is not subject to immunity. + add_effect( effect_downed, 2_turns, bodypart_str_id::NULL_ID(), 0, true ); } } else { add_msg( m_bad, _( "You lose your balance while being hit!" ) ); } + if( in_skater_vehicle ) { + g->fling_creature( this, rng_float( 0_degrees, 360_degrees ), 10 ); + } // This kind of downing is not subject to immunity. add_effect( effect_downed, 2_turns, bodypart_str_id::NULL_ID(), 0, true ); } diff --git a/src/compress.cpp b/src/compress.cpp new file mode 100644 index 000000000000..f9156a2ab42f --- /dev/null +++ b/src/compress.cpp @@ -0,0 +1,53 @@ +#include "compress.h" + +#include +#include +#include +#include +#include + +void zlib_compress( const std::string &input, std::vector &output ) +{ + uLongf compressedSize = compressBound( input.size() ); + output.resize( compressedSize ); + + int result = compress2( + reinterpret_cast( output.data() ), + &compressedSize, + reinterpret_cast( input.data() ), + input.size(), + Z_BEST_SPEED + ); + + if( result != Z_OK ) { + throw std::runtime_error( "Zlib compression error" ); + } + + output.resize( compressedSize ); +} + +void zlib_decompress( const void *compressed_data, int compressed_size, std::string &output ) +{ + // We need to guess at the decompressed size - we expect things to compress fairly well. + uLongf decompressedSize = static_cast( compressed_size ) * 8; + output.resize( decompressedSize ); + + int result; + do { + result = uncompress( + reinterpret_cast( output.data() ), + &decompressedSize, + reinterpret_cast( compressed_data ), + compressed_size + ); + + if( result == Z_BUF_ERROR ) { + decompressedSize *= 2; // Double the buffer size and retry + output.resize( decompressedSize ); + } else if( result != Z_OK ) { + throw std::runtime_error( "Zlib decompression failed" ); + } + } while( result == Z_BUF_ERROR ); + + output.resize( decompressedSize ); +} \ No newline at end of file diff --git a/src/compress.h b/src/compress.h new file mode 100644 index 000000000000..ef4392c2a965 --- /dev/null +++ b/src/compress.h @@ -0,0 +1,12 @@ +#pragma once +#ifndef CATA_SRC_COMPRESS_H +#define CATA_SRC_COMPRESS_H + +#include + +#include "fstream_utils.h" + +void zlib_compress( const std::string &input, std::vector &output ); +void zlib_decompress( const void *compressed_data, int compressed_size, std::string &output ); + +#endif // CATA_SRC_COMPRESS_H diff --git a/src/construction.cpp b/src/construction.cpp index e0a52c5ec599..d0a21f6bd49e 100644 --- a/src/construction.cpp +++ b/src/construction.cpp @@ -983,6 +983,13 @@ bool can_construct( const construction &con, const tripoint &p ) bool place_okay = con.pre_special( p ); // see if the terrain type checks out place_okay &= has_pre_terrain( con, p ); + // see if the (deny) flags check out + place_okay &= std::none_of( con.deny_flags.begin(), con.deny_flags.end(), + [&p, &here]( const std::string & flag ) -> bool { + const furn_id &furn = here.furn( p ); + const ter_id &ter = here.ter( p ); + return furn == f_null ? ter->has_flag( flag ) : furn->has_flag( flag ); + } ); // see if the flags check out place_okay &= std::all_of( con.pre_flags.begin(), con.pre_flags.end(), [&p, &here]( const std::string & flag ) -> bool { @@ -1658,6 +1665,7 @@ void construction::load( const JsonObject &jo, const std::string &/*src*/ ) optional( jo, was_loaded, "post_terrain", post_terrain ); optional( jo, was_loaded, "post_furniture", post_furniture ); assign( jo, "pre_flags", pre_flags ); + optional( jo, was_loaded, "deny_flags", deny_flags ); optional( jo, was_loaded, "post_flags", post_flags ); if( jo.has_member( "byproducts" ) ) { @@ -1728,7 +1736,12 @@ void construction::load( const JsonObject &jo, const std::string &/*src*/ ) if( !post_special || !s.empty() ) { auto it = post_special_map.find( s ); if( it != post_special_map.end() ) { - post_special = it->second; + if( s == "done_deconstruct" && ( !post_terrain.is_empty() || !post_furniture.is_empty() ) ) { + jo.throw_error( "Can't use post_special function \"done_deconstruct\" alongside post_terrain/post_furniture fields", + s ); + } else { + post_special = it->second; + } } else { debugmsg( "Unknown post_special function \"%s\"", s ); } @@ -1783,7 +1796,7 @@ void construction::check() const void construction::finalize() { if( !group.is_valid() ) { - debugmsg( "Invalid construction group (%s) defiend for construction (%s)", group, id ); + debugmsg( "Invalid construction group (%s) defined for construction (%s)", group, id ); } if( vehicle_start ) { std::vector frame_items; diff --git a/src/construction.h b/src/construction.h index 64b09ef00174..d310349ff181 100644 --- a/src/construction.h +++ b/src/construction.h @@ -65,6 +65,9 @@ struct construction { // Flags beginning terrain must have std::set pre_flags; + // Flags that exclude a given terrain tile + std::set deny_flags; + // Post construction flags std::set post_flags; diff --git a/src/flag.cpp b/src/flag.cpp index dbcba091c871..90f6013cdb6e 100644 --- a/src/flag.cpp +++ b/src/flag.cpp @@ -221,6 +221,7 @@ const flag_id flag_NPC_THROWN( "NPC_THROWN" ); const flag_id flag_NPC_THROW_NOW( "NPC_THROW_NOW" ); const flag_id flag_NUTRIENT_OVERRIDE( "NUTRIENT_OVERRIDE" ); const flag_id flag_ONLY_ONE( "ONLY_ONE" ); +const flag_id flag_EXOSUIT( "EXOSUIT" ); const flag_id flag_ORGANIC( "ORGANIC" ); const flag_id flag_OUTER( "OUTER" ); const flag_id flag_OVERSIZE( "OVERSIZE" ); diff --git a/src/flag.h b/src/flag.h index c60b88e26326..3a9043a888f9 100644 --- a/src/flag.h +++ b/src/flag.h @@ -224,6 +224,7 @@ extern const flag_id flag_NPC_THROWN; extern const flag_id flag_NPC_THROW_NOW; extern const flag_id flag_NUTRIENT_OVERRIDE; extern const flag_id flag_ONLY_ONE; +extern const flag_id flag_EXOSUIT; extern const flag_id flag_ORGANIC; extern const flag_id flag_OUTER; extern const flag_id flag_OVERSIZE; diff --git a/src/game.cpp b/src/game.cpp index 4a67ed18ea62..54d0c0eda932 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -8524,18 +8524,33 @@ void game::butcher() kmenu.addentry( MULTIBUTCHER, true, 'b', _( "Butcher everything" ) ); } if( disassembles.size() > 1 ) { - int time_to_disassemble = 0; int time_to_disassemble_all = 0; + int time_to_disassemble_rec = 0; + std::vector> disassembly_stacks_res; + for( const auto &stack : disassembly_stacks ) { const int time = recipe_dictionary::get_uncraft( stack.first->typeId() ).time; - time_to_disassemble += time; time_to_disassemble_all += time * stack.second; + disassembly_stacks_res.emplace_back( stack.first->typeId(), stack.second ); + } + + for( int i = 0; i < disassembly_stacks_res.size(); i++ ) { + const auto dis = recipe_dictionary::get_uncraft( disassembly_stacks_res[i].first ); + time_to_disassemble_rec += dis.time * disassembly_stacks_res[i].second; + //uses default craft materials to estimate recursive disassembly time + const auto components = dis.disassembly_requirements().get_components(); + for( const auto &subcomps : components ) { + if( subcomps.size() > 0 ) { + disassembly_stacks_res.emplace_back( subcomps.front().type, + subcomps.front().count * disassembly_stacks_res[i].second ); + } + } } - kmenu.addentry_col( MULTIDISASSEMBLE_ONE, true, 'D', _( "Disassemble everything once" ), - to_string_clipped( time_duration::from_turns( time_to_disassemble / 100 ) ) ); - kmenu.addentry_col( MULTIDISASSEMBLE_ALL, true, 'd', _( "Disassemble everything recursively" ), + kmenu.addentry_col( MULTIDISASSEMBLE_ONE, true, 'D', _( "Disassemble everything" ), to_string_clipped( time_duration::from_turns( time_to_disassemble_all / 100 ) ) ); + kmenu.addentry_col( MULTIDISASSEMBLE_ALL, true, 'd', _( "Disassemble everything recursively" ), + to_string_clipped( time_duration::from_turns( time_to_disassemble_rec / 100 ) ) ); } if( salvage_iuse && salvageables.size() > 1 ) { int time_to_salvage = 0; diff --git a/src/handle_action.cpp b/src/handle_action.cpp index 8b4c94fb2565..a1ef05bf409c 100644 --- a/src/handle_action.cpp +++ b/src/handle_action.cpp @@ -1456,7 +1456,7 @@ static void cast_spell() spell &sp = *u.magic->get_spells()[spell_index]; if( u.is_armed() && !sp.has_flag( spell_flag::NO_HANDS ) && - !u.primary_weapon().has_flag( flag_MAGIC_FOCUS ) ) { + !u.primary_weapon().has_flag( flag_MAGIC_FOCUS ) && u.primary_weapon().is_two_handed( u ) ) { add_msg( game_message_params{ m_bad, gmf_bypass_cooldown }, _( "You need your hands free to cast this spell!" ) ); return; diff --git a/src/inventory.cpp b/src/inventory.cpp index e507448fe37c..090bf9ca41a8 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -504,6 +504,7 @@ void inventory::form_from_map( map &m, std::vector pts, const Characte bool assign_invlet ) { const time_point bday = calendar::start_of_cataclysm; + std::unordered_map> checked_vehi; items.clear(); build_items_type_cache(); for( const tripoint &p : pts ) { @@ -576,6 +577,12 @@ void inventory::form_from_map( map &m, std::vector pts, const Characte continue; } vehicle *const veh = &vp->vehicle(); + if( !checked_vehi.contains( veh ) ) { + // We haven't worked with this vehicle yet. + checked_vehi[veh] = std::unordered_set(); + } + // Make sure we're ready to record + std::unordered_set &found_parts = checked_vehi[veh]; //Adds faucet to kitchen stuff; may be horribly wrong to do such.... //ShouldBreak into own variable @@ -596,7 +603,7 @@ void inventory::form_from_map( map &m, std::vector pts, const Characte } } - if( faupart ) { + if( faupart && !found_parts.contains( &*faupart ) ) { for( const auto &it : veh->fuels_left() ) { item &fuel = *item::spawn_temporary( it.first, bday ); if( fuel.made_of( LIQUID ) ) { @@ -604,11 +611,13 @@ void inventory::form_from_map( map &m, std::vector pts, const Characte add_item_by_items_type_cache( fuel, false, true, false ); } } + found_parts.insert( &*faupart ); } static const flag_id flag_PSEUDO( "PSEUDO" ); static const flag_id flag_HEATS_FOOD( "HEATS_FOOD" ); - if( kpart ) { + + if( kpart && !found_parts.contains( &*kpart ) ) { item &hotplate = *item::spawn_temporary( "hotplate", bday ); hotplate.charges = veh->fuel_left( itype_battery, true ); hotplate.item_tags.insert( flag_PSEUDO ); @@ -622,8 +631,9 @@ void inventory::form_from_map( map &m, std::vector pts, const Characte item &pan = *item::spawn_temporary( "pan", bday ); pan.set_flag( flag_PSEUDO ); add_item_by_items_type_cache( pan ); + found_parts.insert( &*kpart ); } - if( weldpart ) { + if( weldpart && !found_parts.contains( &*weldpart ) ) { item &welder = *item::spawn_temporary( "welder", bday ); welder.charges = veh->fuel_left( itype_battery, true ); welder.item_tags.insert( flag_PSEUDO ); @@ -633,8 +643,9 @@ void inventory::form_from_map( map &m, std::vector pts, const Characte soldering_iron.charges = veh->fuel_left( itype_battery, true ); soldering_iron.item_tags.insert( flag_PSEUDO ); add_item_by_items_type_cache( soldering_iron ); + found_parts.insert( &*weldpart ); } - if( craftpart ) { + if( craftpart && !found_parts.contains( &*craftpart ) ) { item &vac_sealer = *item::spawn_temporary( "vac_sealer", bday ); vac_sealer.charges = veh->fuel_left( itype_battery, true ); vac_sealer.item_tags.insert( flag_PSEUDO ); @@ -654,20 +665,23 @@ void inventory::form_from_map( map &m, std::vector pts, const Characte press.charges = veh->fuel_left( itype_battery, true ); press.set_flag( flag_PSEUDO ); add_item_by_items_type_cache( press ); + found_parts.insert( &*craftpart ); } - if( forgepart ) { + if( forgepart && !found_parts.contains( &*forgepart ) ) { item &forge = *item::spawn_temporary( "forge", bday ); forge.charges = veh->fuel_left( itype_battery, true ); forge.item_tags.insert( flag_PSEUDO ); add_item_by_items_type_cache( forge ); + found_parts.insert( &*forgepart ); } - if( kilnpart ) { + if( kilnpart && !found_parts.contains( &*kilnpart ) ) { item &kiln = *item::spawn_temporary( "kiln", bday ); kiln.charges = veh->fuel_left( itype_battery, true ); kiln.item_tags.insert( flag_PSEUDO ); add_item_by_items_type_cache( kiln ); + found_parts.insert( &*kilnpart ); } - if( chempart ) { + if( chempart && !found_parts.contains( &*chempart ) ) { item &chemistry_set = *item::spawn_temporary( "chemistry_set", bday ); chemistry_set.charges = veh->fuel_left( itype_battery, true ); chemistry_set.item_tags.insert( flag_PSEUDO ); @@ -677,12 +691,14 @@ void inventory::form_from_map( map &m, std::vector pts, const Characte electrolysis_kit.charges = veh->fuel_left( itype_battery, true ); electrolysis_kit.item_tags.insert( flag_PSEUDO ); add_item_by_items_type_cache( electrolysis_kit ); + found_parts.insert( &*chempart ); } - if( autoclavepart ) { + if( autoclavepart && !found_parts.contains( &*autoclavepart ) ) { item &autoclave = *item::spawn_temporary( "autoclave", bday ); autoclave.charges = veh->fuel_left( itype_battery, true ); autoclave.item_tags.insert( flag_PSEUDO ); add_item_by_items_type_cache( autoclave ); + found_parts.insert( &*autoclavepart ); } } pts.clear(); diff --git a/src/item_factory.cpp b/src/item_factory.cpp index 02b9ca039b08..b113544626ce 100644 --- a/src/item_factory.cpp +++ b/src/item_factory.cpp @@ -2035,16 +2035,20 @@ void Item_factory::load( islot_armor &slot, const JsonObject &jo, const std::str assign_coverage_from_json( jo, "covers", temp_cover_data, slot.sided ); slot.data[0].covers = temp_cover_data; } else { // This item has copy-from and already has taken data from parent - if( jo.has_int( "encumbrance" ) ) { - slot.data[0].encumber = jo.get_int( "encumbrance" ); + if( slot.data.size() > 1 && ( jo.has_int( "encumbrance" ) || + jo.has_int( "max_encumbrance" ) || + jo.has_int( "coverage" ) ) ) { + jo.throw_error( "Legacy armor format only supported for items with exactly 1 armor data entry. Use \"armor_portion_data\" instead." ); + } + // DISGUSTING hack + int old_encumbrance = slot.data[0].encumber; + assign( jo, "encumbrance", slot.data[0].encumber, strict ); + if( old_encumbrance != slot.data[0].encumber ) { slot.data[0].max_encumber = slot.data[0].encumber; } - if( jo.has_int( "max_encumbrance" ) ) { - slot.data[0].max_encumber = jo.get_int( "max_encumbrance" ); - } - if( jo.has_int( "coverage" ) ) { - slot.data[0].coverage = jo.get_int( "coverage" ); - } + assign( jo, "max_encumbrance", slot.data[0].max_encumber, strict ); + + assign( jo, "coverage", slot.data[0].coverage, strict ); body_part_set temp_cover_data; assign_coverage_from_json( jo, "covers", temp_cover_data, slot.sided ); if( temp_cover_data.any() ) { @@ -3467,15 +3471,27 @@ void item_group::debug_spawn() for( size_t i = 0; i < groups.size(); i++ ) { menu.entries.emplace_back( static_cast( i ), true, -2, groups[i].str() ); } + uilist iter_config; + iter_config.text = _( "How many iterations to test?" ); + constexpr std::array iter_choices = { 10, 100, 1000, 10000 }; + for( size_t i = 0; i < iter_choices.size(); i++ ) { + iter_config.entries.emplace_back( static_cast( i ), true, -2, + std::to_string( iter_choices[i] ) ); + } while( true ) { menu.query(); const int index = menu.ret; if( index >= static_cast( groups.size() ) || index < 0 ) { break; } - // Spawn items from the group 1000 times + iter_config.query(); + const int iter_index = iter_config.ret; + if( iter_index >= static_cast( iter_choices.size() ) || iter_index < 0 ) { + break; + } + // Spawn items from the group 100 times std::map itemnames; - for( size_t a = 0; a < 1000; a++ ) { + for( size_t a = 0; a < iter_choices[iter_index]; a++ ) { const auto items = items_from( groups[index], calendar::turn ); for( auto &it : items ) { itemnames[it->display_name()]++; @@ -3487,7 +3503,7 @@ void item_group::debug_spawn() itemnames2.insert( std::pair( e.second, e.first ) ); } uilist menu2; - menu2.text = _( "Result of 1000 spawns:" ); + menu2.text = string_format( _( "Results of %zu spawns:" ), iter_choices[iter_index] ); for( const auto &e : itemnames2 ) { menu2.entries.emplace_back( static_cast( menu2.entries.size() ), true, -2, string_format( _( "%d x %s" ), e.first, e.second ) ); diff --git a/src/iuse_actor.cpp b/src/iuse_actor.cpp index abed5e974ee4..495195765585 100644 --- a/src/iuse_actor.cpp +++ b/src/iuse_actor.cpp @@ -2273,6 +2273,7 @@ int fireweapon_on_actor::use( player &p, item &it, bool t, const tripoint & ) co if( extinguish ) { it.revert( &p, false ); it.deactivate(); + return 0; } else if( one_in( noise_chance ) ) { if( noise > 0 ) { diff --git a/src/magic.cpp b/src/magic.cpp index d294e15454a5..054354542152 100644 --- a/src/magic.cpp +++ b/src/magic.cpp @@ -25,6 +25,7 @@ #include "enums.h" #include "event.h" #include "field.h" +#include "flag.h" #include "game.h" #include "generic_factory.h" #include "input.h" @@ -154,31 +155,37 @@ static energy_type energy_source_from_string( const std::string &str ) } } -static damage_type damage_type_from_string( const std::string &str ) +static damage_type damage_type_from_string( std::string &str ) { - if( str == "fire" ) { + // Uppercase the string so that case on the input doesn't matter + std::transform( str.begin(), str.end(), str.begin(), ::toupper ); + if( str == "FIRE" ) { return DT_HEAT; - } else if( str == "acid" ) { + } else if( str == "ACID" ) { return DT_ACID; - } else if( str == "bash" ) { + } else if( str == "BASH" ) { return DT_BASH; - } else if( str == "bio" ) { + } else if( str == "BIO" ) { return DT_BIOLOGICAL; - } else if( str == "cold" ) { + } else if( str == "COLD" ) { return DT_COLD; - } else if( str == "cut" ) { + } else if( str == "CUT" ) { return DT_CUT; - } else if( str == "bullet" ) { + } else if( str == "BULLET" ) { return DT_BULLET; - } else if( str == "electric" ) { + } else if( str == "ELECTRIC" ) { return DT_ELECTRIC; - } else if( str == "stab" ) { + } else if( str == "STAB" ) { return DT_STAB; - } else if( str == "none" || str == "NONE" ) { + } else if( str == "TRUE" ) { return DT_TRUE; - } else { - debugmsg( _( "ERROR: Invalid damage type string. Defaulting to none" ) ); + } else if( str == "NONE" ) { + debugmsg( _( "ERROR: 'None' damage is not not valid and obsoleted for spells! Please switch to 'True' instead" ) ); return DT_TRUE; + } else { + // Bash is much less problematic than defaulting to True damage, bypassing any and all armor, like it did previously + debugmsg( _( "ERROR: Invalid damage type string. Defaulting to bash" ) ); + return DT_BASH; } } @@ -316,7 +323,7 @@ void spell_type::load( const JsonObject &jo, const std::string & ) spell_class = trait_id( temp_string ); optional( jo, was_loaded, "energy_source", temp_string, "NONE" ); energy_source = energy_source_from_string( temp_string ); - optional( jo, was_loaded, "damage_type", temp_string, "NONE" ); + optional( jo, was_loaded, "damage_type", temp_string, "TRUE" ); dmg_type = damage_type_from_string( temp_string ); optional( jo, was_loaded, "difficulty", difficulty, 0 ); optional( jo, was_loaded, "max_level", max_level, 0 ); @@ -737,6 +744,10 @@ int spell::casting_time( const Character &guy ) const guy.encumb( body_part_arm_l ) + guy.encumb( body_part_arm_r ) - 20 ); casting_time += arms_encumb * 2; } + if( guy.is_armed() && !has_flag( spell_flag::NO_HANDS ) && + !guy.primary_weapon().has_flag( flag_MAGIC_FOCUS ) ) { + casting_time = std::round( casting_time * 1.5 ); + } return casting_time; } diff --git a/src/magic_enchantment.cpp b/src/magic_enchantment.cpp index fa8d24d7fc5a..caec2805a08b 100644 --- a/src/magic_enchantment.cpp +++ b/src/magic_enchantment.cpp @@ -6,6 +6,7 @@ #include #include "bodypart.h" +#include "calendar.h" #include "character.h" #include "creature.h" #include "debug.h" @@ -59,7 +60,12 @@ namespace io switch ( data ) { case enchantment::condition::ALWAYS: return "ALWAYS"; case enchantment::condition::UNDERGROUND: return "UNDERGROUND"; + case enchantment::condition::ABOVEGROUND: return "ABOVEGROUND"; case enchantment::condition::UNDERWATER: return "UNDERWATER"; + case enchantment::condition::DAY: return "DAY"; + case enchantment::condition::NIGHT: return "NIGHT"; + case enchantment::condition::DUSK: return "DUSK"; + case enchantment::condition::DAWN: return "DAWN"; case enchantment::condition::ACTIVE: return "ACTIVE"; case enchantment::condition::NUM_CONDITION: break; } @@ -188,10 +194,30 @@ bool enchantment::is_active( const Character &guy, const bool active ) const return true; } + if( active_conditions.second == condition::NIGHT ) { + return is_night( calendar::turn ); + } + + if( active_conditions.second == condition::DAY ) { + return is_day( calendar::turn ); + } + + if( active_conditions.second == condition::DUSK ) { + return is_dusk( calendar::turn ); + } + + if( active_conditions.second == condition::DAWN ) { + return is_dawn( calendar::turn ); + } + if( active_conditions.second == condition::UNDERGROUND ) { return guy.pos().z < 0; } + if( active_conditions.second == condition::ABOVEGROUND ) { + return guy.pos().z > -1; + } + if( active_conditions.second == condition::UNDERWATER ) { return get_map().is_divable( guy.pos() ); } diff --git a/src/magic_enchantment.h b/src/magic_enchantment.h index 8bf3a8d2db60..20803e62dbcf 100644 --- a/src/magic_enchantment.h +++ b/src/magic_enchantment.h @@ -83,7 +83,12 @@ class enchantment enum condition { ALWAYS, UNDERGROUND, + ABOVEGROUND, UNDERWATER, + NIGHT, + DAY, + DUSK, + DAWN, ACTIVE, // the item, mutation, etc. is active NUM_CONDITION }; diff --git a/src/main_menu.cpp b/src/main_menu.cpp index ffc420780957..e0156f251cb7 100644 --- a/src/main_menu.cpp +++ b/src/main_menu.cpp @@ -500,6 +500,7 @@ void main_menu::init_strings() vWorldSubItems.emplace_back( pgettext( "Main Menu|World", "Character to Template" ) ); vWorldSubItems.emplace_back( pgettext( "Main Menu|World", "Reset World" ) ); vWorldSubItems.emplace_back( pgettext( "Main Menu|World", "Delete World" ) ); + vWorldSubItems.emplace_back( pgettext( "Main Menu|World", "Convert to V2 Save Format" ) ); vWorldSubItems.emplace_back( pgettext( "Main Menu|World", "<= Return" ) ); vWorldHotkeys = { 'm', 'e', 's', 't', 'r', 'd', 'q' }; @@ -1061,7 +1062,21 @@ void main_menu::world_tab( const std::string &worldname ) } }; + auto convert_v2 = [this, &worldname]() { + world_generator->set_active_world( nullptr ); + savegames.clear(); + MAPBUFFER.clear(); + overmap_buffer.clear(); + world_generator->convert_to_v2( worldname ); + }; + switch( opt_val ) { + case 6: // Convert to V2 Save Format + if( query_yn( + _( "Convert to V2 Save Format? A backup will be created. Conversion may take several minutes." ) ) ) { + convert_v2(); + } + break; case 5: // Delete World if( query_yn( _( "Delete the world and all saves within?" ) ) ) { clear_world( true ); diff --git a/src/map.cpp b/src/map.cpp index ac12b6746329..ef78a3760b44 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -135,6 +135,9 @@ static const efftype_id effect_crushed( "crushed" ); static const ter_str_id t_rock_floor_no_roof( "t_rock_floor_no_roof" ); +// Conversion constant for 100ths of miles per hour to meters per second +constexpr float velocity_constant = 0.0044704; + #define dbg(x) DebugLog((x),DC::Map) static location_vector nulitems( new @@ -297,6 +300,7 @@ maptile map::maptile_at_internal( const tripoint &p ) // Vehicle functions + VehicleList map::get_vehicles() { if( last_full_vehicle_list_dirty ) { @@ -682,7 +686,19 @@ vehicle *map::move_vehicle( vehicle &veh, const tripoint &dp, const tileray &fac } else { impulse += coll_dmg; veh.damage( coll.part, coll_dmg, DT_BASH ); - veh.damage_all( coll_dmg / 2, coll_dmg, DT_BASH, collision_point ); + // Upper bound of shock damage + int shock_max = coll_dmg; + // Lower bound of shock damage + int shock_min = coll_dmg / 2; + float coll_part_bash_resist = veh.part_info( coll.part ).damage_reduction.type_resist( + DT_BASH ); + // Reduce shock damage by collision part DR to prevent bushes from damaging car batteries + shock_min = std::max( 0, shock_min - coll_part_bash_resist ); + shock_max = std::max( 0, shock_max - coll_part_bash_resist ); + // Shock damage decays exponentially, we only want to track shock damage that would cause meaningful damage. + if( shock_min >= 20 ) { + veh.damage_all( shock_min, shock_max, DT_BASH, collision_point ); + } } } @@ -849,18 +865,23 @@ float map::vehicle_vehicle_collision( vehicle &veh, vehicle &veh2, point epicenter1; point epicenter2; - float dmg; + float veh1_impulse = 0; + float veh2_impulse = 0; + float delta_vel = 0; + // A constant to tune how many Ns of impulse are equivalent to 1 point of damage, look in vehicle_move.cpp for the impulse to damage function. + const float dmg_adjust = impulse_to_damage( 1 ); + float dmg_veh1 = 0; + float dmg_veh2 = 0; // Vertical collisions will be simpler for a while (1D) if( !vertical ) { // For reference, a cargo truck weighs ~25300, a bicycle 690, // and 38mph is 3800 'velocity' + // Converting away from 100*mph, because mixing unit systems is bad. + // 1 mph = 0.44704m/s = 100 "velocity". For velocity to m/s, *0.0044704 rl_vec2d velo_veh1 = veh.velo_vec(); rl_vec2d velo_veh2 = veh2.velo_vec(); const float m1 = to_kilogram( veh.total_mass() ); const float m2 = to_kilogram( veh2.total_mass() ); - //Energy of vehicle1 and vehicle2 before collision - float E = 0.5 * m1 * velo_veh1.magnitude() * velo_veh1.magnitude() + - 0.5 * m2 * velo_veh2.magnitude() * velo_veh2.magnitude(); // Collision_axis point cof1 = veh .rotated_center_of_mass(); @@ -878,15 +899,18 @@ float map::vehicle_vehicle_collision( vehicle &veh, vehicle &veh2, // imp? & delta? & final? reworked: // newvel1 =( vel1 * ( mass1 - mass2 ) + ( 2 * mass2 * vel2 ) ) / ( mass1 + mass2 ) // as per http://en.wikipedia.org/wiki/Elastic_collision - //velocity of veh1 before collision in the direction of collision_axis_y - float vel1_y = collision_axis_y.dot_product( velo_veh1 ); - float vel1_x = collision_axis_x.dot_product( velo_veh1 ); - //velocity of veh2 before collision in the direction of collision_axis_y - float vel2_y = collision_axis_y.dot_product( velo_veh2 ); - float vel2_x = collision_axis_x.dot_product( velo_veh2 ); + //velocity of veh1 before collision in the direction of collision_axis_y, converting to m/s + float vel1_y = velocity_constant * collision_axis_y.dot_product( velo_veh1 ); + float vel1_x = velocity_constant * collision_axis_x.dot_product( velo_veh1 ); + //velocity of veh2 before collision in the direction of collision_axis_y, converting to m/s + float vel2_y = velocity_constant * collision_axis_y.dot_product( velo_veh2 ); + float vel2_x = velocity_constant * collision_axis_x.dot_product( velo_veh2 ); + delta_vel = std::abs( vel1_y - vel2_y ); + // Keep in mind get_collision_factor is looking for m/s, not m/h. // e = 0 -> inelastic collision // e = 1 -> elastic collision - float e = get_collision_factor( vel1_y / 100 - vel2_y / 100 ); + float e = get_collision_factor( vel1_y - vel2_y ); + add_msg( m_debug, "Requested collision factor, received %.2f", e ); // Velocity after collision // vel1_x_a = vel1_x, because in x-direction we have no transmission of force @@ -894,11 +918,11 @@ float map::vehicle_vehicle_collision( vehicle &veh, vehicle &veh2, float vel2_x_a = vel2_x; // Transmission of force only in direction of collision_axix_y // Equation: partially elastic collision - float vel1_y_a = ( m2 * vel2_y * ( 1 + e ) + vel1_y * ( m1 - m2 * e ) ) / ( m1 + m2 ); - float vel2_y_a = ( m1 * vel1_y * ( 1 + e ) + vel2_y * ( m2 - m1 * e ) ) / ( m1 + m2 ); + float vel1_y_a = ( ( m2 * vel2_y * ( 1 + e ) + vel1_y * ( m1 - m2 * e ) ) / ( m1 + m2 ) ); + float vel2_y_a = ( ( m1 * vel1_y * ( 1 + e ) + vel2_y * ( m2 - m1 * e ) ) / ( m1 + m2 ) ); // Add both components; Note: collision_axis is normalized - rl_vec2d final1 = collision_axis_y * vel1_y_a + collision_axis_x * vel1_x_a; - rl_vec2d final2 = collision_axis_y * vel2_y_a + collision_axis_x * vel2_x_a; + rl_vec2d final1 = ( collision_axis_y * vel1_y_a + collision_axis_x * vel1_x_a ) / velocity_constant; + rl_vec2d final2 = ( collision_axis_y * vel2_y_a + collision_axis_x * vel2_x_a ) / velocity_constant; veh.move.init( final1.as_point() ); if( final1.dot_product( veh.face_vec() ) < 0 ) { @@ -925,21 +949,28 @@ float map::vehicle_vehicle_collision( vehicle &veh, vehicle &veh2, veh.of_turn = avg_of_turn * .9; veh2.of_turn = avg_of_turn * 1.1; - //Energy after collision - float E_a = 0.5 * m1 * final1.magnitude() * final1.magnitude() + - 0.5 * m2 * final2.magnitude() * final2.magnitude(); - float d_E = E - E_a; //Lost energy at collision -> deformation energy - dmg = std::abs( d_E / 1000 / 2000 ); //adjust to balance damage + // Remember that the impulse on vehicle 1 is techncally negative, slowing it + veh1_impulse = std::abs( m1 * ( vel1_y_a - vel1_y ) ); + veh2_impulse = std::abs( m2 * ( vel2_y_a - vel2_y ) ); } else { const float m1 = to_kilogram( veh.total_mass() ); // Collision is perfectly inelastic for simplicity // Assume veh2 is standing still - dmg = std::abs( veh.vertical_velocity / 100 ) * m1 / 10; + dmg_veh1 = ( std::abs( vmiph_to_mps( veh.vertical_velocity ) ) * ( m1 / 10 ) ) / 2; + dmg_veh2 = dmg_veh1; veh.vertical_velocity = 0; } - float dmg_veh1 = dmg * 0.5; - float dmg_veh2 = dmg * 0.5; + // To facilitate pushing vehicles, because the simulation pretends cars are ping pong balls that get all their velocity in zero starting distance to slam into eachother while touching. + // Stay under 6 m/s to push cars without damaging them + if( delta_vel >= 6.0f ) { + dmg_veh1 = veh1_impulse * dmg_adjust; + dmg_veh2 = veh2_impulse * dmg_adjust; + } else { + dmg_veh1 = 0; + dmg_veh2 = 0; + } + int coll_parts_cnt = 0; //quantity of colliding parts between veh1 and veh2 for( const auto &veh_veh_coll : collisions ) { diff --git a/src/map_extras.cpp b/src/map_extras.cpp index ded6ed0dedd8..43cea62f708f 100644 --- a/src/map_extras.cpp +++ b/src/map_extras.cpp @@ -746,7 +746,7 @@ static bool mx_bandits_block( map &m, const tripoint &abs_sub ) static bool mx_supplydrop( map &m, const tripoint &/*abs_sub*/ ) { - int num_crates = rng( 1, 5 ); + int num_crates = rng( 3, 7 ); for( int i = 0; i < num_crates; i++ ) { const auto p = random_point( m, [&m]( const tripoint & n ) { return m.passable( n ); @@ -755,34 +755,35 @@ static bool mx_supplydrop( map &m, const tripoint &/*abs_sub*/ ) break; } m.furn_set( p->xy(), f_crate_c ); - std::string item_group; - switch( rng( 1, 10 ) ) { - case 1: - case 2: - case 3: - case 4: - item_group = "mil_food"; - break; - case 5: - case 6: - case 7: - item_group = "grenades"; - break; - case 8: - case 9: - item_group = "mil_armor"; - break; - case 10: - item_group = "guns_rifle_milspec"; - break; + std::vector item_groups; + for( int i = 0; i < 4; i++ ) { + switch( rng( 1, 10 ) ) { + case 1: + case 2: + case 3: + case 4: + item_groups.push_back( "mil_food" ); + break; + case 5: + case 6: + case 7: + item_groups.push_back( "grenades" ); + break; + case 8: + case 9: + item_groups.push_back( "mil_armor" ); + break; + case 10: + item_groups.push_back( "guns_rifle_milspec" ); + break; + } } int items_created = 0; - for( int i = 0; i < 10 && items_created < 2; i++ ) { - items_created += m.place_items( item_group_id( item_group ), 80, *p, *p, true, - calendar::start_of_cataclysm, - 100 ).size(); + for( int i = 0; i < 4; i++ ) { + items_created += m.put_items_from_loc( item_group_id( item_groups[i] ), *p, + calendar::start_of_cataclysm ).size(); } - if( m.i_at( *p ).empty() ) { + if( m.i_at( *p ).empty() || items_created == 0 ) { m.destroy( *p, true ); } } diff --git a/src/mapdata.h b/src/mapdata.h index cc96c6b637e9..1dfde25ae0b9 100644 --- a/src/mapdata.h +++ b/src/mapdata.h @@ -224,6 +224,7 @@ struct pry_result { * OPENCLOSE_INSIDE - If it's a door (with an 'open' or 'close' field), it can only be opened or closed if you're inside. * PERMEABLE - Allows gases to flow through unimpeded. * RAMP - Higher z-levels can be accessed from this tile + * ADV_DECONSTRUCT - Player cannot use "Deconstruct (Simple) Furniture"; alternative means are required * EASY_DECONSTRUCT - Player can deconstruct this without tools * HIDE_PLACE - Creature on this tile can't be seen by other creature not standing on adjacent tiles * BLOCK_WIND - This tile will partially block wind diff --git a/src/mattack_actors.cpp b/src/mattack_actors.cpp index 9234b133e15e..fe240468d8c0 100644 --- a/src/mattack_actors.cpp +++ b/src/mattack_actors.cpp @@ -579,7 +579,7 @@ bool gun_actor::call( monster &z ) const aim_at = target->pos(); } else { target = z.attack_target(); - if( !target || !z.sees( *target ) ) { + if( !target || ( !target->is_monster() && !z.aggro_character ) || !z.sees( *target ) ) { if( !target_moving_vehicles ) { return false; } diff --git a/src/mission.h b/src/mission.h index 8903183ca4d2..096c6e6ceda9 100644 --- a/src/mission.h +++ b/src/mission.h @@ -152,7 +152,7 @@ struct mission_target_params { bool cant_see = false; bool random = false; bool create_if_necessary = true; - int search_range = OMAPX; + int search_range = OMAPX * 14; std::optional z; npc *guy = nullptr; }; diff --git a/src/mission_util.cpp b/src/mission_util.cpp index 82b6cf49ca28..ef48c11ef6dd 100644 --- a/src/mission_util.cpp +++ b/src/mission_util.cpp @@ -235,7 +235,8 @@ static std::optional find_or_create_om_terrain( // If we got here and this is still invalid, it means that we couldn't find it nor create it // on any overmap (new or existing) within the allowed search range. if( target_pos == overmap::invalid_tripoint ) { - debugmsg( "Unable to find and assign mission target %s.", params.overmap_terrain ); + debugmsg( "Unable to find and assign mission target %s within %d tiles.", + params.overmap_terrain, find_params.search_range ); return std::nullopt; } return target_pos; diff --git a/src/monattack.cpp b/src/monattack.cpp index 761a323b2393..afdfe50760b8 100644 --- a/src/monattack.cpp +++ b/src/monattack.cpp @@ -5394,10 +5394,9 @@ bool mattack::bio_op_takedown( monster *z ) } // Weak kick to start with, knocks you off your footing - // TODO: Literally "The zombie kicks" vvvvv | Fix message or comment why Literally. - //~ 1$s is bodypart name in accusative, 2$d is damage value. - target->add_msg_if_player( m_bad, _( "The zombie kicks your %1$s for %2$d damage…" ), - body_part_name_accusative( hit->token ), dam ); + //~ 1$s is the attacker, 2$s is bodypart name in accusative, 3$d is damage value. + target->add_msg_if_player( m_bad, _( "The %1$s kicks your %2$s for %3$d damage…" ), + z->name(), body_part_name_accusative( hit->token ), dam ); foe->deal_damage( z, hit, damage_instance( DT_BASH, dam ) ); // At this point, Judo or Tentacle Bracing can make this much less painful if( !foe->is_throw_immune() ) { diff --git a/src/monmove.cpp b/src/monmove.cpp index b526d5c79d98..674496a6080d 100644 --- a/src/monmove.cpp +++ b/src/monmove.cpp @@ -354,6 +354,9 @@ void monster::plan() target = &g->u; if( dist <= 5 ) { anger += angers_hostile_near; + if( angers_hostile_near ) { + trigger_character_aggro_chance( anger, "proximity" ); + } morale -= fears_hostile_near; if( angers_mating_season > 0 ) { bool mating_angry = false; @@ -369,6 +372,7 @@ void monster::plan() } if( mating_angry ) { anger += angers_mating_season; + trigger_character_aggro_chance( anger, "mating season" ); } } } @@ -381,6 +385,7 @@ void monster::plan() //proximity to baby; monster gets furious and less likely to flee anger += angers_cub_threatened; morale += angers_cub_threatened / 2; + trigger_character_aggro( "threatening cub" ); } } } @@ -444,6 +449,7 @@ void monster::plan() } if( mating_angry ) { anger += angers_mating_season; + trigger_character_aggro_chance( anger, "mating season" ); } } } @@ -586,6 +592,9 @@ void monster::plan() int hp_per = target->hp_percentage(); if( hp_per <= 70 ) { anger += 10 - ( hp_per / 10 ); + if( anger <= 40 ) { + trigger_character_aggro_chance( anger, "weakness" ); + } } } } else if( friendly > 0 && one_in( 3 ) ) { diff --git a/src/monster.cpp b/src/monster.cpp index 85e368dab082..b8bf6545e6b8 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -222,6 +222,7 @@ monster::monster() : corpse_components( new monster_component_item_location( thi last_updated = calendar::start_of_cataclysm; udder_timer = calendar::turn; horde_attraction = MHA_NULL; + aggro_character = true; set_anatomy( anatomy_id( "default_anatomy" ) ); set_body(); } @@ -242,6 +243,7 @@ monster::monster( const mtype_id &id ) : monster() ammo = type->starting_ammo; upgrades = type->upgrades && ( type->half_life || type->age_grow ); reproduces = type->reproduces && type->baby_timer && !monster::has_flag( MF_NO_BREED ); + aggro_character = type->aggro_character; if( monster::has_flag( MF_AQUATIC ) ) { fish_population = dice( 1, 20 ); } @@ -1452,13 +1454,13 @@ monster_attitude monster::attitude( const Character *u ) const } } + if( effective_morale < 0 ) { if( effective_morale + effective_anger > 0 && get_hp() > get_hp_max() / 3 ) { return MATT_FOLLOW; } return MATT_FLEE; } - if( effective_anger <= 0 ) { if( get_hp() <= 0.6 * get_hp_max() ) { return MATT_FLEE; @@ -1471,6 +1473,10 @@ monster_attitude monster::attitude( const Character *u ) const return MATT_FOLLOW; } + if( u != nullptr && !aggro_character && !u->is_monster() ) { + return MATT_IGNORE; + } + return MATT_ATTACK; } @@ -1513,6 +1519,12 @@ void monster::process_triggers() } } + // If we got angry at characters have a chance at calming down + if( anger == type->agro && aggro_character && !type->aggro_character && !x_in_y( anger, 100 ) ) { + add_msg( m_debug, "%s's character aggro reset", get_name() ); + aggro_character = false; + } + // Cap values at [-100, 100] to prevent perma-angry moose etc. morale = std::min( 100, std::max( -100, morale ) ); anger = std::min( 100, std::max( -100, anger ) ); @@ -1545,6 +1557,22 @@ void monster::process_trigger( mon_trigger trig, const std::function &amo } } + +// hopefully a good spot for these functions +// eg. reason = "mating season" +void monster::trigger_character_aggro( const char *reason ) +{ + add_msg( m_debug, "%s's character aggro is triggered by %s", get_name(), reason ); + aggro_character = true; +} + +void monster::trigger_character_aggro_chance( int chance, const char *reason ) +{ + if( x_in_y( chance, 100 ) ) { + trigger_character_aggro( reason ); + } +} + bool monster::is_underwater() const { return Creature::is_underwater() && can_submerge(); @@ -1947,6 +1975,10 @@ void monster::apply_damage( Creature *source, item *source_weapon, item *source_ } } else if( dam > 0 ) { process_trigger( mon_trigger::HURT, 1 + ( dam / 3 ) ); + // Get angry at characters if hurt by one + if( source != nullptr && !aggro_character && !source->is_monster() && !source->is_fake() ) { + trigger_character_aggro( "hurt" ); + } } } void monster::apply_damage( Creature *source, item *source_weapon, bodypart_id bp, int dam, @@ -2679,6 +2711,10 @@ void monster::die( Creature *nkiller ) int morale_adjust = 0; if( type->has_anger_trigger( mon_trigger::FRIEND_DIED ) ) { anger_adjust += 15; + if( nkiller != nullptr && !nkiller->is_monster() && !nkiller->is_fake() ) { + // A character killed our friend + trigger_character_aggro( "killing a friendly creature" ); + } } if( type->has_fear_trigger( mon_trigger::FRIEND_DIED ) ) { morale_adjust -= 15; @@ -3178,6 +3214,10 @@ void monster::on_hit( Creature *source, bodypart_id, dealt_projectile_attack con int morale_adjust = 0; if( type->has_anger_trigger( mon_trigger::FRIEND_ATTACKED ) ) { anger_adjust += 15; + if( source != nullptr && !aggro_character && !source->is_monster() && !source->is_fake() ) { + // A character attacked our friend + trigger_character_aggro( "killing a friendly creature" ); + } } if( type->has_fear_trigger( mon_trigger::FRIEND_ATTACKED ) ) { morale_adjust -= 15; @@ -3344,6 +3384,36 @@ void monster::on_load() if( dt <= 0_turns ) { return; } + + if( anger != type->agro ) { + int dt_left_a = to_turns( dt ); + + if( std::abs( anger - type->agro ) > 15 ) { + const int adjust_by_a = std::min( ( dt_left_a / 4 ), + ( std::abs( anger - type->agro ) - 15 ) ); + dt_left_a -= adjust_by_a * 4; + if( anger < type->agro ) { + anger += adjust_by_a; + } else { + anger -= adjust_by_a; + } + } + + if( anger > type->agro ) { + anger -= std::min( static_cast( std::ceil( dt_left_a / 8.0 ) ), + std::abs( anger - type->agro ) ); + } else { + anger += std::min( ( dt_left_a / 8 ), + std::abs( anger - type->agro ) ); + } + // If we got angry at characters have a chance at calming down + if( aggro_character && !type->aggro_character && !x_in_y( anger, 100 ) ) { + add_msg( m_debug, "%s's character aggro reset", name() ); + aggro_character = false; + } + } + + float regen = type->regenerates; if( regen <= 0 ) { if( has_flag( MF_REVIVES ) ) { diff --git a/src/monster.h b/src/monster.h index 18d6cb72e161..8f339a558ad6 100644 --- a/src/monster.h +++ b/src/monster.h @@ -532,6 +532,9 @@ class monster : public Creature, public location_visitable } short ignoring; + + bool aggro_character = true; + std::optional lastseen_turn; // Stair data. @@ -601,6 +604,9 @@ class monster : public Creature, public location_visitable void process_trigger( mon_trigger trig, int amount ); void process_trigger( mon_trigger trig, const std::function &amount_func ); + void trigger_character_aggro( const char *reason ); + void trigger_character_aggro_chance( int chance, const char *reason ); + location_vector corpse_components; // Hack to make bionic corpses generate CBMs on death private: @@ -624,6 +630,7 @@ class monster : public Creature, public location_visitable std::bitset effect_cache; std::optional summon_time_limit = std::nullopt; + player *find_dragged_foe(); void nursebot_operate( player *dragged_foe ); diff --git a/src/monstergenerator.cpp b/src/monstergenerator.cpp index 01f1c5300cb1..cead2bf257f9 100644 --- a/src/monstergenerator.cpp +++ b/src/monstergenerator.cpp @@ -821,6 +821,7 @@ void mtype::load( const JsonObject &jo, const std::string &src ) optional( jo, was_loaded, "mech_weapon", mech_weapon, itype_id() ); optional( jo, was_loaded, "mech_str_bonus", mech_str_bonus, 0 ); optional( jo, was_loaded, "mech_battery", mech_battery, itype_id() ); + optional( jo, was_loaded, "aggro_character", aggro_character, true ); // TODO: make this work with `was_loaded` if( jo.has_array( "melee_damage" ) ) { diff --git a/src/mtype.cpp b/src/mtype.cpp index ac37d6aa9556..fc340a804403 100644 --- a/src/mtype.cpp +++ b/src/mtype.cpp @@ -56,6 +56,8 @@ mtype::mtype() luminance = 0; bash_skill = 0; + aggro_character = true; + flags .set( MF_HUMAN ) .set( MF_BONES ) diff --git a/src/mtype.h b/src/mtype.h index 4127cd5ba011..2345ffc27776 100644 --- a/src/mtype.h +++ b/src/mtype.h @@ -370,6 +370,9 @@ struct mtype { bool upgrades; bool reproduces; + // Do we indiscriminately attack characters, or should we wait until one annoys us? + bool aggro_character = true; + mtype(); /** * Check if this type is of the same species as the other one, because diff --git a/src/mutation.cpp b/src/mutation.cpp index 7c1b800346a5..e81ff6628c94 100644 --- a/src/mutation.cpp +++ b/src/mutation.cpp @@ -20,6 +20,7 @@ #include "event_bus.h" #include "field_type.h" #include "game.h" +#include "handle_liquid.h" #include "item.h" #include "item_contents.h" #include "itype.h" @@ -583,7 +584,12 @@ void Character::activate_mutation( const trait_id &mut ) return; } } else if( !mdata.spawn_item.is_empty() ) { - i_add_or_drop( item::spawn( mdata.spawn_item ) ); + detached_ptr granted = item::spawn( mdata.spawn_item ); + if( granted->made_of( LIQUID ) ) { + liquid_handler::consume_liquid( std::move( granted ), 1 ); + } else { + i_add_or_drop( std::move( granted ) ); + } add_msg_if_player( mdata.spawn_item_message() ); tdata.powered = false; return; diff --git a/src/overmap.cpp b/src/overmap.cpp index 82dd30748803..9e02ac889cdf 100644 --- a/src/overmap.cpp +++ b/src/overmap.cpp @@ -5502,6 +5502,11 @@ bool overmap::can_place_special( const overmap_special &special, const tripoint_ return false; } + if( special.has_flag( "GLOBALLY_UNIQUE" ) && + overmap_buffer.contains_unique_special( special.id ) ) { + return false; + } + const std::vector fixed_terrains = special.required_locations(); return std::all_of( fixed_terrains.begin(), fixed_terrains.end(), @@ -5539,6 +5544,10 @@ std::vector overmap::place_special( assert( can_place_special( special, p, dir, must_be_unexplored ) ); } + if( special.has_flag( "GLOBALLY_UNIQUE" ) ) { + overmap_buffer.add_unique_special( special.id ); + } + const bool grid = special.has_flag( "ELECTRIC_GRID" ); special_placement_result result = special.place( *this, p, dir ); @@ -5942,10 +5951,16 @@ void overmap::place_specials( overmap_special_batch &enabled_specials ) const float rate = is_true_center && special.has_flag( "ENDGAME" ) ? 1 : zone_ratio[current]; + const bool unique = iter.special_details->has_flag( "UNIQUE" ); + const bool globally_unique = iter.special_details->has_flag( "GLOBALLY_UNIQUE" ); + int amount_to_place; - if( special.has_flag( "UNIQUE" ) ) { - int chance = roll_remainder( min * rate ); - amount_to_place = x_in_y( chance, max ) ? 1 : 0; + if( unique || globally_unique ) { + const overmap_special_id &id = iter.special_details->id; + + //FINGERS CROSSED EMOGI + amount_to_place = x_in_y( min, max ) && ( !globally_unique || + !overmap_buffer.contains_unique_special( id ) ) ? 1 : 0; } else { // Number of instances normalized to terrain ratio float real_max = std::max( static_cast( min ), max * rate ); diff --git a/src/overmapbuffer.cpp b/src/overmapbuffer.cpp index cb873b3ed5e0..57b0aefd4cd5 100644 --- a/src/overmapbuffer.cpp +++ b/src/overmapbuffer.cpp @@ -200,6 +200,7 @@ void overmapbuffer::clear() { overmaps.clear(); known_non_existing.clear(); + placed_unique_specials.clear(); last_requested_overmap = nullptr; } @@ -939,6 +940,19 @@ bool overmapbuffer::check_overmap_special_type( const overmap_special_id &id, return om_loc.om->check_overmap_special_type( id, om_loc.local ); } +void overmapbuffer::add_unique_special( const overmap_special_id &id ) +{ + if( contains_unique_special( id ) ) { + debugmsg( "Unique overmap special placed more than once: %s", id.str() ); + } + placed_unique_specials.emplace( id ); +} + +bool overmapbuffer::contains_unique_special( const overmap_special_id &id ) const +{ + return placed_unique_specials.contains( id ); +} + static omt_find_params assign_params( const std::string &type, int const radius, bool must_be_seen, ot_match_type match_type, bool existing_overmaps_only, diff --git a/src/overmapbuffer.h b/src/overmapbuffer.h index b821f1c20e77..b26635acd74f 100644 --- a/src/overmapbuffer.h +++ b/src/overmapbuffer.h @@ -9,11 +9,13 @@ #include #include #include +#include #include #include #include "coordinates.h" #include "enums.h" +#include "json.h" #include "memory_fast.h" #include "overmap_types.h" #include "point.h" @@ -515,6 +517,9 @@ class overmapbuffer // Cached result of previous call to overmapbuffer::get_existing overmap mutable *last_requested_overmap; + // Set of globally unique overmap specials that have already been placed + std::unordered_set placed_unique_specials; + /** * Get a list of notes in the (loaded) overmaps. * @param z only this specific z-level is search for notes. @@ -548,6 +553,24 @@ class overmapbuffer const tripoint_abs_omt &loc ); bool check_overmap_special_type_existing( const overmap_special_id &id, const tripoint_abs_omt &loc ); + + /** + * Adds the given globally unique overmap special to the list of placed specials. + */ + void add_unique_special( const overmap_special_id &id ); + /** + * Returns true if the given globally unique overmap special has already been placed. + */ + bool contains_unique_special( const overmap_special_id &id ) const; + /** + * Writes the placed unique specials as a JSON value. + */ + void serialize_placed_unique_specials( JsonOut &json ) const; + /** + * Reads placed unique specials from JSON and overwrites the global value. + */ + void deserialize_placed_unique_specials( JsonIn &jsin ); + private: /** * Go thorough the monster groups of the overmap and move out-of-bounds diff --git a/src/projectile.h b/src/projectile.h index 3ab3f2ee617f..4f542b4efbea 100644 --- a/src/projectile.h +++ b/src/projectile.h @@ -39,7 +39,7 @@ struct projectile { void set_custom_explosion( const explosion_data &ex ); void unset_custom_explosion(); - const std::set &get_ammo_effects() { + const std::set &get_ammo_effects() const { return proj_effects; } diff --git a/src/ranged_aoe.cpp b/src/ranged_aoe.cpp index 1f67e08f08dc..176e95189a07 100644 --- a/src/ranged_aoe.cpp +++ b/src/ranged_aoe.cpp @@ -129,11 +129,11 @@ void execute_shaped_attack( const shape &sh, const projectile &proj, Creature &a // Here and not above because we want the animation first // Terrain will be shown damaged, but having it in unknown state would complicate timing the animation - for( const std::pair &pr : final_coverage ) { - Creature *critter = g->critter_at( pr.first ); + for( const auto &[point, coverage] : final_coverage ) { + Creature *critter = g->critter_at( point ); if( critter != nullptr ) { dealt_projectile_attack atk; - atk.end_point = pr.first; + atk.end_point = point; atk.hit_critter = critter; atk.proj = proj; atk.missed_by = rng_float( 0.15, 0.45 ); diff --git a/src/savegame.cpp b/src/savegame.cpp index 1e4a849697ed..0bb2f13ceec7 100644 --- a/src/savegame.cpp +++ b/src/savegame.cpp @@ -34,6 +34,7 @@ #include "output.h" #include "overmap.h" #include "overmap_types.h" +#include "overmapbuffer.h" #include "popup.h" #include "regional_settings.h" #include "scent_map.h" @@ -1167,6 +1168,8 @@ void game::unserialize_master( std::istream &fin ) jsin.read( *faction_manager_ptr ); } else if( name == "seed" ) { jsin.read( seed ); + } else if( name == "placed_unique_specials" ) { + overmap_buffer.deserialize_placed_unique_specials( jsin ); } else if( name == "weather" ) { JsonObject w = jsin.get_object(); w.read( "lightning", get_weather().lightning_active ); @@ -1202,6 +1205,9 @@ void game::serialize_master( std::ostream &fout ) json.member( "active_missions" ); mission::serialize_all( json ); + json.member( "placed_unique_specials" ); + overmap_buffer.serialize_placed_unique_specials( json ); + json.member( "factions", *faction_manager_ptr ); json.member( "seed", seed ); @@ -1283,3 +1289,17 @@ void Creature_tracker::serialize( JsonOut &jsout ) const } jsout.end_array(); } + +void overmapbuffer::serialize_placed_unique_specials( JsonOut &json ) const +{ + json.write_as_array( placed_unique_specials ); +} + +void overmapbuffer::deserialize_placed_unique_specials( JsonIn &jsin ) +{ + placed_unique_specials.clear(); + jsin.start_array(); + while( !jsin.end_array() ) { + placed_unique_specials.emplace( jsin.get_string() ); + } +} diff --git a/src/savegame_json.cpp b/src/savegame_json.cpp index a1be2df9c56d..c32f349db388 100644 --- a/src/savegame_json.cpp +++ b/src/savegame_json.cpp @@ -1843,6 +1843,7 @@ void monster::load( const JsonObject &data ) data.read( "anger", anger ); data.read( "morale", morale ); data.read( "hallucination", hallucination ); + data.read( "aggro_character", aggro_character ); data.read( "stairscount", staircount ); // really? data.read( "fish_population", fish_population ); // Load legacy plans. @@ -1935,6 +1936,7 @@ void monster::store( JsonOut &json ) const json.member( "anger", anger ); json.member( "morale", morale ); json.member( "hallucination", hallucination ); + json.member( "aggro_character", aggro_character ); json.member( "stairscount", staircount ); if( tied_item ) { json.member( "tied_item", *tied_item ); diff --git a/src/vehicle.cpp b/src/vehicle.cpp index 2636cc39df84..0969f8f99e88 100644 --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -6644,24 +6644,46 @@ void vehicle::damage_all( int dmg1, int dmg2, damage_type type, point impact ) if( dmg2 < dmg1 ) { std::swap( dmg1, dmg2 ); } - if( dmg1 < 1 ) { return; } - + const float damage_min = std::abs( dmg1 ); + const float damage_max = std::abs( dmg2 ); + add_msg( m_debug, "Shock damage to vehicle of %.2f to %.2f", damage_min, damage_max ); for( const vpart_reference &vp : get_all_parts() ) { const size_t p = vp.part_index(); + const vpart_info &shockpart = part_info( p ); int distance = 1 + square_dist( vp.mount(), impact ); if( distance > 1 ) { int net_dmg = rng( dmg1, dmg2 ) / ( distance * distance ); - if( part_info( p ).location != part_location_structure || - !part_info( p ).has_flag( "PROTRUSION" ) ) { + if( shockpart.location != part_location_structure || + !shockpart.has_flag( "PROTRUSION" ) ) { + if( shockpart.has_flag( "SHOCK_IMMUNE" ) ) { + net_dmg = 0; + continue; + } int shock_absorber = part_with_feature( p, "SHOCK_ABSORBER", true ); if( shock_absorber >= 0 ) { - net_dmg = std::max( 0, net_dmg - parts[ shock_absorber ].info().bonus ); + net_dmg = std::max( 0.0f, net_dmg - ( parts[ shock_absorber ].info().bonus ) - + shockpart.damage_reduction.type_resist( type ) ); + } + if( shockpart.has_flag( "SHOCK_RESISTANT" ) ) { + float damage_resist = 0; + for( const int elem : all_parts_at_location( shockpart.location ) ) { + //Original intent was to find the frame that the part was mounted on and grab that objects resistance, but instead we will go with half the largest damage resist in the stack. + damage_resist = std::max( damage_resist, part_info( elem ).damage_reduction.type_resist( type ) ); + } + damage_resist = damage_resist / 2; + + add_msg( m_debug, "%1s inherited %.1f damage resistance!", shockpart.name(), damage_resist ); + net_dmg = std::max( 0.0f, net_dmg - damage_resist ); } } - damage_direct( p, net_dmg, type ); + if( net_dmg > part_info( p ).damage_reduction.type_resist( type ) ) { + damage_direct( p, net_dmg, type ); + add_msg( m_debug, _( "%1s took %.1f damage from shock." ), part_info( p ).name(), 1.0f * net_dmg ); + } + } } } diff --git a/src/vehicle.h b/src/vehicle.h index 279aa75c3257..126ec31340cb 100644 --- a/src/vehicle.h +++ b/src/vehicle.h @@ -70,7 +70,7 @@ struct rider_data { int prt = -1; bool moved = false; }; -//collision factor for vehicle-vehicle collision; delta_v in mph +//collision factor for vehicle-vehicle collision; delta_v in m/s float get_collision_factor( float delta_v ); //How far to scatter parts from a vehicle when the part is destroyed (+/-) @@ -112,7 +112,7 @@ struct veh_collision { //int veh? int part = 0; veh_coll_type type = veh_coll_nothing; - // impulse + // Impulse, in Ns. Call impulse_to_damage or damage_to_impulse from vehicle_move.cpp for conversion to damage. int imp = 0; //vehicle void *target = nullptr; @@ -183,6 +183,8 @@ int mps_to_vmiph( double mps ); double vmiph_to_mps( int vmiph ); int cmps_to_vmiph( int cmps ); int vmiph_to_cmps( int vmiph ); +float impulse_to_damage( float impulse ); +float damage_to_impulse( float damage ); class turret_data { diff --git a/src/vehicle_move.cpp b/src/vehicle_move.cpp index 137e84a38ba7..9ed790affe29 100644 --- a/src/vehicle_move.cpp +++ b/src/vehicle_move.cpp @@ -51,6 +51,10 @@ static const itype_id fuel_type_battery( "battery" ); static const skill_id skill_driving( "driving" ); +static const trait_id trait_DEFT( "DEFT" ); +static const trait_id trait_PROF_SKATER( "PROF_SKATER" ); + + static const efftype_id effect_harnessed( "harnessed" ); static const efftype_id effect_pet( "pet" ); static const efftype_id effect_stunned( "stunned" ); @@ -63,6 +67,12 @@ static const float tile_height = 4; static const int mi_to_vmi = 100; // meters per second to miles per hour static const float mps_to_miph = 2.23694f; +// Conversion constant for Impulse Ns to damage for vehicle collisions. Fine tune to desired damage. +static const float imp_conv_const = 0.1; +// Inverse conversion constant for impulse to damage +static const float imp_conv_const_inv = 1 / imp_conv_const; +// Conversion constant for 100ths of miles per hour to meters per second +constexpr float velocity_constant = 0.0044704; // convert m/s to vehicle 100ths of a mile per hour int mps_to_vmiph( double mps ) @@ -73,7 +83,7 @@ int mps_to_vmiph( double mps ) // convert vehicle 100ths of a mile per hour to m/s double vmiph_to_mps( int vmiph ) { - return vmiph / mps_to_miph / mi_to_vmi; + return vmiph * velocity_constant; } int cmps_to_vmiph( int cmps ) @@ -85,13 +95,24 @@ int vmiph_to_cmps( int vmiph ) { return vmiph / mps_to_miph; } +// Conversion of impulse Ns to damage for vehicle collision purposes. +float impulse_to_damage( float impulse ) +{ + return impulse * imp_conv_const; +} + +// Convert damage back to impulse Ns +float damage_to_impulse( float damage ) +{ + return damage * imp_conv_const_inv; +} int vehicle::slowdown( int at_velocity ) const { double mps = vmiph_to_mps( std::abs( at_velocity ) ); // slowdown due to air resistance is proportional to square of speed - double f_total_drag = coeff_air_drag() * mps * mps; + double f_total_drag = std::abs( coeff_air_drag() * mps * mps ); if( is_watercraft() ) { // same with water resistance f_total_drag += coeff_water_drag() * mps * mps; @@ -108,7 +129,7 @@ int vehicle::slowdown( int at_velocity ) const } double accel_slowdown = f_total_drag / to_kilogram( total_mass() ); // converting m/s^2 to vmiph/s - int slowdown = mps_to_vmiph( accel_slowdown ); + float slowdown = mps_to_vmiph( accel_slowdown ); if( is_towing() ) { vehicle *other_veh = tow_data.get_towed(); if( other_veh ) { @@ -118,14 +139,14 @@ int vehicle::slowdown( int at_velocity ) const if( slowdown < 0 ) { debugmsg( "vehicle %s has negative drag slowdown %d\n", name, slowdown ); } - add_msg( m_debug, "%s at %d vimph, f_drag %3.2f, drag accel %d vmiph - extra drag %d", + add_msg( m_debug, "%s at %d vimph, f_drag %3.2f, drag accel %.1f vmiph - extra drag %d", name, at_velocity, f_total_drag, slowdown, static_drag() ); // plows slow rolling vehicles, but not falling or floating vehicles if( !( is_falling || is_floating || is_flying ) ) { slowdown -= static_drag(); } - return std::max( 1, slowdown ); + return std::max( 1.0f, slowdown ); } void vehicle::thrust( int thd, int z ) @@ -550,13 +571,18 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, if( armor_part >= 0 ) { ret.part = armor_part; } - - int dmg_mod = part_info( ret.part ).dmg_mod; + // Damage modifier, pre-divided by 100. 1 is full collision damage, 1.5 is 50% bonus, etc. + int dmg_mod = ( part_info( ret.part ).dmg_mod ) / 100; + // Failsafe incase of wierdness. + if( dmg_mod == 0 ) { + dmg_mod = 1; + } // Let's calculate type of collision & mass of object we hit float mass2 = 0; // e = 0 -> plastic collision - float e = 0.3; // e = 1 -> inelastic collision + float e = 0.3; + //part density float part_dens = 0; @@ -607,7 +633,10 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, const float mass = ( part_info( part ).rotor_diameter() > 0 ) ? to_kilogram( parts[ part ].base->weight() ) : to_kilogram( total_mass() ); - //Calculate damage resulting from d_E + // No longer calculating damage based on deformation energy. + // Damage to each object is based upon force applied from change in momentum + + //Finds vehicle part density using part material const material_id_list &mats = part_info( ret.part ).item->materials; float vpart_dens = 0; if( !mats.empty() ) { @@ -618,25 +647,33 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, vpart_dens /= mats.size(); } - //k=100 -> 100% damage on part - //k=0 -> 100% damage on obj - float material_factor = ( part_dens - vpart_dens ) * 0.5; - material_factor = std::max( -25.0f, std::min( 25.0f, material_factor ) ); + //Calculates density factor. Used as a bad stand in to determine deformation distance. + //Ranges from 0.1 -> 100, measured in cm. A density difference of 100 is needed for the full value. + float density_factor = std::abs( part_dens - vpart_dens ); + density_factor = clamp( density_factor, 0.1f, 100.0f ); + + //Deformation distance of the collision, measured in meters. A bad approximation for a value we dont have that would take intensive simulation to determine. + // 0.001 -> 1 meter. Left modifiable so that armor or other parts can affect it. + float deformation_distance = density_factor / 100; + + //Calculates mass factor. Depreciated, maintained for stats. // factor = -25 if mass is much greater than mass2 // factor = +25 if mass2 is much greater than mass const float weight_factor = mass >= mass2 ? -25 * ( std::log( mass ) - std::log( mass2 ) ) / std::log( mass ) : 25 * ( std::log( mass2 ) - std::log( mass ) ) / std::log( mass2 ); - float k = 50 + material_factor + weight_factor; - k = std::max( 10.0f, std::min( 90.0f, k ) ); - bool smashed = true; const std::string snd = _( "smash!" ); - float dmg = 0.0f; - float part_dmg = 0.0f; - // Calculate Impulse of car + float part_dmg = 0; + float obj_dmg = 0; + // Calculate stun time of car time_duration time_stunned = 0_turns; + float vel1_a = 0; + float vel2_a = 0; + float impulse_veh = 0; + float impulse_obj = 0; + int critter_health = 0; const int prev_velocity = coll_velocity; const int vel_sign = sgn( coll_velocity ); @@ -646,24 +683,28 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, float vel2 = 0.0f; do { smashed = false; - // Impulse of vehicle - const float vel1 = coll_velocity / 100.0f; + // Velocity of vehicle for calculations + // Changed from mph to m/s, because mixing unit systems is a nono + const float vel1 = vmiph_to_mps( coll_velocity ); // Velocity of car after collision - const float vel1_a = ( mass * vel1 + mass2 * vel2 + e * mass2 * ( vel2 - vel1 ) ) / - ( mass + mass2 ); - // Velocity of object after collision - const float vel2_a = ( mass * vel1 + mass2 * vel2 + e * mass * ( vel1 - vel2 ) ) / ( mass + mass2 ); - // Lost energy at collision -> deformation energy -> damage - const float E_before = 0.5f * ( mass * vel1 * vel1 ) + 0.5f * ( mass2 * vel2 * vel2 ); - const float E_after = 0.5f * ( mass * vel1_a * vel1_a ) + 0.5f * ( mass2 * vel2_a * vel2_a ); - const float d_E = E_before - E_after; - if( d_E <= 0 ) { - // Deformation energy is signed - // If it's negative, it means something went wrong - // But it still does happen sometimes... + vel1_a = ( mass * vel1 + mass2 * vel2 + e * mass2 * ( vel2 - vel1 ) ) / + ( mass + mass2 ); + // Velocity of object 2 after collision + vel2_a = ( mass * vel1 + mass2 * vel2 + e * mass * ( vel1 - vel2 ) ) / ( mass + mass2 ); + + // Impulse of vehicle part from collision. Measured in newton seconds (Ns) + // Calculated as the change in momentum due to the collision + impulse_veh = std::abs( mass * ( vel1_a - vel1 ) ); + // Impulse of the impacted object from collision. Measured in newton seconds (Ns) + // Calculated as the change in momentum due to the collision. + impulse_obj = std::abs( mass2 * ( vel2_a - vel2 ) ); + // Due to conservation of momentum, both of these values should be equal. If not, something odd has happened and physics will be wonky. Small threshold for rounding errors. + if( std::abs( impulse_obj - impulse_veh ) > 5 ) { + add_msg( m_debug, + "Conservation of momentum violated, impulse values between object and vehicle are not equal! " ); if( std::fabs( vel1_a ) < std::fabs( vel1 ) ) { // Lower vehicle's speed to prevent infinite loops - coll_velocity = vel1_a * 90; + coll_velocity = mps_to_vmiph( vel1_a ) * 0.9; } if( std::fabs( vel2_a ) > std::fabs( vel2 ) ) { vel2 = vel2_a; @@ -675,19 +716,35 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, continue; } - add_msg( m_debug, "Deformation energy: %.2f", d_E ); // Damage calculation - // Damage dealt overall - dmg += d_E / 400; + // Maximum damage for vehicle part to take + const float bash_max = here.bash_strength( p, bash_floor ); + + // Damage for vehicle-part // Always if no critters, otherwise if critter is real if( critter == nullptr || !critter->is_hallucination() ) { - part_dmg = dmg * k / 100; - add_msg( m_debug, "Part collision damage: %.2f", part_dmg ); - } - // Damage for object - const float obj_dmg = dmg * ( 100 - k ) / 100; + part_dmg = impulse_to_damage( impulse_veh ); + if( bash_max != 0 ) { + part_dmg = std::min( bash_max / dmg_mod, part_dmg ); + } + + //add_msg( m_debug, "Part collision damage: %.2f", part_dmg ); + } else { + part_dmg = 0; + add_msg( m_debug, "Part damage 0, critter assumed to be hallucination" ); + } + // Damage for object. + obj_dmg = impulse_to_damage( impulse_obj ) * dmg_mod; + ret.target_name = here.disp_name( p ); + add_msg( m_debug, _( "%1s collided with %2s!" ), name, ret.target_name ); + add_msg( m_debug, + "Vehicle mass of %.2f Kg with a Pre-Collision Velocity of %d vmph, collision object mass of %.2f Kg, with a Velocity of %.2f mph. predicted deformation distance is %.2f meters.", + mass, prev_velocity, mass2, vel2, deformation_distance ); + add_msg( m_debug, + "Vehicle impulse of %.2f Ns resulted in Part collision damage %.2f of a maximum of %.2f, Object impulse of %.2f resulted in damage of %.2f (dmg mod %0.2i)", + impulse_veh, part_dmg, bash_max, impulse_obj, obj_dmg, dmg_mod ); if( ret.type == veh_coll_bashable ) { // Something bashable -- use map::bash to determine outcome // NOTE: Floor bashing disabled for balance reasons @@ -696,6 +753,17 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, here.bash_resistance( p, bash_floor ) <= obj_dmg && here.bash( p, obj_dmg, false, false, false, this ).success; if( smashed ) { + //Experimental: only use as much energy as was required to destroy the obstacle, and recalc impulse and momentum off of that. + //Recalculate vel1_a from new impulse. Remember that the impulse from a collision is technically negative, reducing speed. + float old_veh_imp = impulse_veh; + impulse_veh = damage_to_impulse( std::min( part_dmg, bash_max / dmg_mod ) ); + add_msg( m_debug, "Terrain collision impulse recovery of %.2f Ns", old_veh_imp - impulse_veh ); + if( ( vel1 - ( impulse_veh / mass ) ) < vel1 ) { + vel1_a = ( vel1 - ( impulse_veh / mass ) ); + add_msg( m_debug, "Post collision velocity recovered to %.2f m/s", vel1_a ); + } + add_msg( m_debug, _( "%1s smashed %2s!" ), name, ret.target_name ); + if( here.is_bashable_ter_furn( p, bash_floor ) ) { // There's new terrain there to smash smashed = false; @@ -712,7 +780,6 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, } } } else if( ret.type == veh_coll_body ) { - int dam = obj_dmg * dmg_mod / 100; // We know critter is set for this type. Assert to inform static // analysis. @@ -720,29 +787,48 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, // No blood from hallucinations if( !critter->is_hallucination() ) { + // Get critter health for determining max damage to apply + critter_health = critter->get_hp_max(); if( part_flag( ret.part, "SHARP" ) ) { - parts[ret.part].blood += ( 20 + dam ) * 5; - } else if( dam > rng( 10, 30 ) ) { - parts[ret.part].blood += ( 10 + dam / 2 ) * 5; + parts[ret.part].blood += ( 20 + obj_dmg ) * 5; + } else if( obj_dmg > rng( 10, 30 ) ) { + parts[ret.part].blood += ( 10 + obj_dmg / 2 ) * 5; } check_environmental_effects = true; } - time_stunned = time_duration::from_turns( ( rng( 0, dam ) > 10 ) + ( rng( 0, dam ) > 40 ) ); + time_stunned = time_duration::from_turns( ( rng( 0, obj_dmg ) > 10 ) + ( rng( 0, obj_dmg ) > 40 ) ); if( time_stunned > 0_turns ) { critter->add_effect( effect_stunned, time_stunned ); } if( ph != nullptr ) { - ph->hitall( dam, 40, driver ); + ph->hitall( obj_dmg, 40, driver ); } else { const int armor = part_flag( ret.part, "SHARP" ) ? critter->get_armor_cut( bodypart_id( "torso" ) ) : critter->get_armor_bash( bodypart_id( "torso" ) ); - dam = std::max( 0, dam - armor ); - critter->apply_damage( driver, bodypart_id( "torso" ), dam ); - add_msg( m_debug, "Critter collision damage: %d", dam ); + obj_dmg = std::max( 0.0f, obj_dmg - armor ); + critter->apply_damage( driver, bodypart_id( "torso" ), obj_dmg ); + + // Limit vehicle damage to the max health of the critter, attenuated by the damage modifier. + part_dmg = std::min( ( critter_health * 1.0f ) / dmg_mod, part_dmg ); + + add_msg( m_debug, "Critter collision! %1s was hit by %2s", critter->disp_name(), name ); + add_msg( m_debug, "Vehicle of %.2f Kg at %2.f vmph impacted Critter of %.2f Kg at %.2f vmph", mass, + vel1, mass2, vel2 ); + add_msg( m_debug, + "Vehicle received impulse of %.2f Nm dealing %.2f damage of maximum %.2f, Critter received impulse of %.2f Nm dealing %.2f damage. ", + impulse_veh, part_dmg, impulse_obj, obj_dmg ); + //attempt to recover unspent collision energy + // Remember that the impulse from a collision is technically negative, reducing speed. + impulse_veh = damage_to_impulse( part_dmg ); + if( ( vel1 - ( impulse_veh / mass ) ) < vel1 ) { + vel1_a = ( vel1 - ( impulse_veh / mass ) ); + add_msg( m_debug, "Post collision velocity recovered to %.2f m/s", vel1_a ); + } + } // Don't fling if vertical - critter got smashed into the ground @@ -776,7 +862,7 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, } if( critter == nullptr || !critter->is_hallucination() ) { - coll_velocity = vel1_a * ( smashed ? 100 : 90 ); + coll_velocity = mps_to_vmiph( vel1_a * ( smashed ? 1 : 0.9 ) ); } // Stop processing when sign inverts, not when we reach 0 } while( !smashed && sgn( coll_velocity ) == vel_sign ); @@ -840,7 +926,7 @@ veh_collision vehicle::part_collision( int part, const tripoint &p, } } - ret.imp = part_dmg; + ret.imp = impulse_to_damage( impulse_veh ); return ret; } @@ -1252,13 +1338,14 @@ rl_vec2d vehicle::dir_vec() const { return angle_to_vec( turn_dir ); } - +// Takes delta_v in m/s, returns collision factor. Ranges from 1 at 0m/s to 0.3 at approx ~60mph. +// Changed from e min of 0.1 as this is a nearly perfectly plastic collision, which is not common outside of vehicles with engineered crumple zones. Cata vehicles dont have crumple zones. float get_collision_factor( const float delta_v ) { - if( std::abs( delta_v ) <= 31 ) { - return ( 1 - ( 0.9 * std::abs( delta_v ) ) / 31 ); + if( std::abs( delta_v ) <= 26.8224 ) { + return ( 1 - ( 0.7 * std::abs( delta_v ) ) / 26.8224 ); } else { - return 0.1; + return 0.3; } } @@ -1687,6 +1774,18 @@ units::angle map::shake_vehicle( vehicle &veh, const int velocity_before, if( psg ) { ///\EFFECT_STR reduces chance of being thrown from your seat when not wearing a seatbelt move_resist = psg->str_cur * 150 + 500; + if( veh.part( ps ).info().has_flag( "SEAT_REQUIRES_BALANCE" ) ) { + // Much harder to resist being thrown on a skateboard-like vehicle. + // Penalty mitigated by Deft and Skater. + int resist_penalty = 500; + if( psg->has_trait( trait_PROF_SKATER ) ) { + resist_penalty -= 150; + } + if( psg->has_trait( trait_DEFT ) ) { + resist_penalty -= 150; + } + move_resist -= resist_penalty; + } } else { int pet_resist = 0; if( pet != nullptr ) { diff --git a/src/vehicle_use.cpp b/src/vehicle_use.cpp index 922e9180c103..3142b87de9f7 100644 --- a/src/vehicle_use.cpp +++ b/src/vehicle_use.cpp @@ -887,6 +887,7 @@ void vehicle::use_controls( const tripoint &pos ) bool vehicle::fold_up() { const bool can_be_folded = is_foldable(); + const bool is_convertible = ( tags.contains( "convertible" ) ); if( !( can_be_folded || is_convertible ) ) { debugmsg( _( "Tried to fold non-folding vehicle %s" ), name ); @@ -924,6 +925,7 @@ bool vehicle::fold_up() detached_ptr folding_veh_item = item::spawn( can_be_folded ? "generic_folded_vehicle" : itype_id, calendar::turn ); + // Drop stuff in containers on ground for( const vpart_reference &vp : get_any_parts( "CARGO" ) ) { const size_t p = vp.part_index(); diff --git a/src/world.cpp b/src/world.cpp index 52e4ff16b39f..10cbfd7de6dc 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -3,6 +3,8 @@ #include #include #include +#include +#include #include "game.h" #include "avatar.h" @@ -13,8 +15,44 @@ #include "worldfactory.h" #include "mod_manager.h" #include "path_info.h" +#include "compress.h" #define dbg(x) DebugLogFL((x),DC::Main) +static sqlite3 *open_db( const std::string &path ) +{ + sqlite3 *db = nullptr; + int ret; + + ret = sqlite3_initialize(); + if( ret != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to initialize sqlite3 (Error " << ret << ")"; + throw std::runtime_error( "Failed to initialize sqlite3" ); + } + + ret = sqlite3_open_v2( path.c_str(), &db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL ); + if( ret != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to open db" << path << " (Error " << ret << ")"; + throw std::runtime_error( "Failed to open db" ); + } + + auto sql = R"sql( + CREATE TABLE IF NOT EXISTS files ( + path TEXT PRIMARY KEY NOT NULL, + parent TEXT NOT NULL, + compression TEXT DEFAULT NULL, + data BLOB NOT NULL + ); + )sql"; + + char *sqlErrMsg = 0; + ret = sqlite3_exec( db, sql, NULL, NULL, &sqlErrMsg ); + if( ret != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to init db" << path << " (" << sqlErrMsg << ")"; + throw std::runtime_error( "Failed to open db" ); + } + + return db; +} save_t::save_t( const std::string &name ): name( name ) {} @@ -172,6 +210,16 @@ bool WORLDINFO::save( const bool is_conversion ) const } world_generator->get_mod_manager().save_mods_list( const_cast( this ) ); + + // If the world is a V2 world and there's no SQLite3 file yet, create a blank one. + // We infer that the world is V2 if there's a map.sqlite3 file in the world directory. + // When a world is freshly created, we need to create a file here to remember the users' + // choice of world save format. + if( world_save_format == save_format::V2_COMPRESSED_SQLITE3 && + !file_exist( folder_path() + "/map.sqlite3" ) ) { + sqlite3 *db = open_db( folder_path() + "/map.sqlite3" ); + sqlite3_close( db ); + } return true; } @@ -218,18 +266,178 @@ void load_external_option( const JsonObject &jo ) } } +static bool file_exist_in_db( sqlite3 *db, const std::string &path ) +{ + int fileCount = 0; + const char *sql = "SELECT count() FROM files WHERE path = :path"; + sqlite3_stmt *stmt = nullptr; + + if( sqlite3_prepare_v2( db, sql, -1, &stmt, nullptr ) != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to prepare statement: " << sqlite3_errmsg( db ) << '\n'; + throw std::runtime_error( "DB query failed" ); + } + + if( sqlite3_bind_text( stmt, sqlite3_bind_parameter_index( stmt, ":path" ), path.c_str(), -1, + SQLITE_TRANSIENT ) != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to bind parameter: " << sqlite3_errmsg( db ) << '\n'; + sqlite3_finalize( stmt ); + throw std::runtime_error( "DB query failed" ); + } + + if( sqlite3_step( stmt ) == SQLITE_ROW ) { + // Retrieve the count result + fileCount = sqlite3_column_int( stmt, 0 ); + } else { + dbg( DL::Error ) << "Failed to execute query: " << sqlite3_errmsg( db ) << '\n'; + sqlite3_finalize( stmt ); + throw std::runtime_error( "DB query failed" ); + } + + sqlite3_finalize( stmt ); + + return fileCount > 0; +} + +static void write_to_db( sqlite3 *db, const std::string &path, file_write_fn writer ) +{ + std::ostringstream oss; + writer( oss ); + auto data = oss.str(); + + std::vector compressedData; + zlib_compress( data, compressedData ); + + size_t basePos = path.find_last_of( "/\\" ); + auto parent = ( basePos == std::string::npos ) ? "" : path.substr( 0, basePos ); + + auto sql = R"sql( + INSERT INTO files(path, parent, data, compression) + VALUES (:path, :parent, :data, 'zlib') + ON CONFLICT(path) DO UPDATE + SET data = excluded.data, + parent = excluded.parent, + compression = excluded.compression; + )sql"; + + sqlite3_stmt *stmt = nullptr; + + if( sqlite3_prepare_v2( db, sql, -1, &stmt, nullptr ) != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to prepare statement: " << sqlite3_errmsg( db ) << '\n'; + throw std::runtime_error( "DB query failed" ); + } + + if( sqlite3_bind_text( stmt, sqlite3_bind_parameter_index( stmt, ":path" ), path.c_str(), -1, + SQLITE_TRANSIENT ) != SQLITE_OK || + sqlite3_bind_text( stmt, sqlite3_bind_parameter_index( stmt, ":parent" ), parent.c_str(), -1, + SQLITE_TRANSIENT ) != SQLITE_OK || + sqlite3_bind_blob( stmt, sqlite3_bind_parameter_index( stmt, ":data" ), compressedData.data(), + compressedData.size(), SQLITE_TRANSIENT ) != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to bind parameters: " << sqlite3_errmsg( db ) << '\n'; + sqlite3_finalize( stmt ); + throw std::runtime_error( "DB query failed" ); + } + + if( sqlite3_step( stmt ) != SQLITE_DONE ) { + dbg( DL::Error ) << "Failed to execute query: " << sqlite3_errmsg( db ) << '\n'; + } + sqlite3_finalize( stmt ); +} + +static bool read_from_db( sqlite3 *db, const std::string &path, file_read_fn reader, + bool optional ) +{ + const char *sql = "SELECT data, compression FROM files WHERE path = :path LIMIT 1"; + + sqlite3_stmt *stmt = nullptr; + + if( sqlite3_prepare_v2( db, sql, -1, &stmt, nullptr ) != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to prepare statement: " << sqlite3_errmsg( db ) << '\n'; + throw std::runtime_error( "DB query failed" ); + } + + if( sqlite3_bind_text( stmt, sqlite3_bind_parameter_index( stmt, ":path" ), path.c_str(), -1, + SQLITE_TRANSIENT ) != SQLITE_OK ) { + dbg( DL::Error ) << "Failed to bind parameter: " << sqlite3_errmsg( db ) << '\n'; + sqlite3_finalize( stmt ); + throw std::runtime_error( "DB query failed" ); + } + + if( sqlite3_step( stmt ) == SQLITE_ROW ) { + // Retrieve the count result + const void *blobData = sqlite3_column_blob( stmt, 0 ); + int blobSize = sqlite3_column_bytes( stmt, 0 ); + auto compression_raw = sqlite3_column_text( stmt, 1 ); + std::string compression = compression_raw ? reinterpret_cast( compression_raw ) : ""; + + if( blobData == nullptr ) { + return false; // Return an empty string if there's no data + } + + std::string dataString; + if( compression.empty() ) { + dataString = std::string( static_cast( blobData ), blobSize ); + } else if( compression == "zlib" ) { + zlib_decompress( blobData, blobSize, dataString ); + } else { + throw std::runtime_error( "Unknown compression format: " + compression ); + } + + std::istringstream stream( dataString ); + reader( stream ); + sqlite3_finalize( stmt ); + } else { + auto err = sqlite3_errmsg( db ); + sqlite3_finalize( stmt ); + + if( !optional ) { + dbg( DL::Error ) << "Failed to execute query: " << err << '\n'; + throw std::runtime_error( "DB query failed" ); + } + return false; + } + + return true; +} + +static bool read_from_db_json( sqlite3 *db, const std::string &path, file_read_json_fn reader, + bool optional ) +{ + return read_from_db( db, path, [&]( std::istream & fin ) { + JsonIn jsin( fin, path ); + reader( jsin ); + }, optional ); +} + world::world( WORLDINFO *info ) : info( info ) , save_tx_start_ts( 0 ) { - if( !assure_dir_exist( "" ) - || !assure_dir_exist( "/maps" ) ) { + if( !assure_dir_exist( "" ) ) { dbg( DL::Error ) << "Unable to create or open world directory structure: " << info->folder_path(); } + + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + map_db = open_db( info->folder_path() + "/map.sqlite3" ); + } else { + if( !assure_dir_exist( "/maps" ) ) { + dbg( DL::Error ) << "Unable to create or open world directory structure: " << info->folder_path(); + } + } } world::~world() { + if( save_tx_start_ts != 0 ) { + dbg( DL::Error ) << "Save transaction was not committed before world destruction"; + } + + if( map_db ) { + sqlite3_close( map_db ); + } + + if( save_db ) { + sqlite3_close( save_db ); + } } void world::start_save_tx() @@ -240,6 +448,14 @@ void world::start_save_tx() save_tx_start_ts = std::chrono::duration_cast< std::chrono::milliseconds >( std::chrono::system_clock::now().time_since_epoch() ).count(); + + if( map_db ) { + sqlite3_exec( map_db, "BEGIN TRANSACTION", NULL, NULL, NULL ); + } + + if( save_db ) { + sqlite3_exec( save_db, "BEGIN TRANSACTION", NULL, NULL, NULL ); + } } int64_t world::commit_save_tx() @@ -247,6 +463,15 @@ int64_t world::commit_save_tx() if( save_tx_start_ts == 0 ) { throw std::runtime_error( "Attempted to commit a save transaction while none was in progress" ); } + + if( map_db ) { + sqlite3_exec( map_db, "COMMIT", NULL, NULL, NULL ); + } + + if( save_db ) { + sqlite3_exec( save_db, "COMMIT", NULL, NULL, NULL ); + } + int64_t now = std::chrono::duration_cast< std::chrono::milliseconds >( std::chrono::system_clock::now().time_since_epoch() ).count(); @@ -275,19 +500,24 @@ bool world::read_map_quad( const tripoint &om_addr, file_read_json_fn reader ) c const std::string dirname = get_quad_dirname( om_addr ); std::string quad_path = dirname + "/" + get_quad_filename( om_addr ); - if( !file_exist( quad_path ) ) { - // Fix for old saves where the path was generated using std::stringstream, which - // did format the number using the current locale. That formatting may insert - // thousands separators, so the resulting path is "map/1,234.7.8.map" instead - // of "map/1234.7.8.map". - std::ostringstream buffer; - buffer << dirname << "/" << om_addr.x << "." << om_addr.y << "." << om_addr.z << ".map"; - if( file_exist( buffer.str() ) ) { - quad_path = buffer.str(); + // V2 logic + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + return read_from_db_json( map_db, quad_path, reader, true ); + } else { + if( !file_exist( quad_path ) ) { + // Fix for old saves where the path was generated using std::stringstream, which + // did format the number using the current locale. That formatting may insert + // thousands separators, so the resulting path is "map/1,234.7.8.map" instead + // of "map/1234.7.8.map". + std::ostringstream buffer; + buffer << dirname << "/" << om_addr.x << "." << om_addr.y << "." << om_addr.z << ".map"; + if( file_exist( buffer.str() ) ) { + quad_path = buffer.str(); + } } - } - return read_from_file_json( quad_path, reader, true ); + return read_from_file_json( quad_path, reader, true ); + } } bool world::write_map_quad( const tripoint &om_addr, file_write_fn writer ) const @@ -295,8 +525,14 @@ bool world::write_map_quad( const tripoint &om_addr, file_write_fn writer ) cons const std::string dirname = get_quad_dirname( om_addr ); std::string quad_path = dirname + "/" + get_quad_filename( om_addr ); - assure_dir_exist( dirname ); - return write_to_file( quad_path, writer ); + // V2 logic + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + write_to_db( map_db, quad_path, writer ); + return true; + } else { + assure_dir_exist( dirname ); + return write_to_file( quad_path, writer ); + } } /** @@ -315,27 +551,51 @@ std::string world::overmap_player_filename( const point_abs_om &p ) const bool world::overmap_exists( const point_abs_om &p ) const { - return file_exist( overmap_terrain_filename( p ) ); + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + return file_exist_in_db( map_db, overmap_terrain_filename( p ) ); + } else { + return file_exist( overmap_terrain_filename( p ) ); + } } bool world::read_overmap( const point_abs_om &p, file_read_fn reader ) const { - return read_from_file( overmap_terrain_filename( p ), reader, true ); + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + return read_from_db( map_db, overmap_terrain_filename( p ), reader, true ); + } else { + return read_from_file( overmap_terrain_filename( p ), reader, true ); + } } bool world::read_overmap_player_visibility( const point_abs_om &p, file_read_fn reader ) { - return read_from_player_file( overmap_player_filename( p ), reader, true ); + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + sqlite3 *playerdb = get_player_db(); + return read_from_db( playerdb, overmap_player_filename( p ), reader, true ); + } else { + return read_from_player_file( overmap_player_filename( p ), reader, true ); + } } bool world::write_overmap( const point_abs_om &p, file_write_fn writer ) const { - return write_to_file( overmap_terrain_filename( p ), writer ); + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + write_to_db( map_db, overmap_terrain_filename( p ), writer ); + return true; + } else { + return write_to_file( overmap_terrain_filename( p ), writer ); + } } bool world::write_overmap_player_visibility( const point_abs_om &p, file_write_fn writer ) { - return write_to_player_file( overmap_player_filename( p ), writer ); + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + sqlite3 *playerdb = get_player_db(); + write_to_db( playerdb, overmap_player_filename( p ), writer ); + return true; + } else { + return write_to_player_file( overmap_player_filename( p ), writer ); + } } /** @@ -348,17 +608,28 @@ static std::string get_mm_filename( const tripoint &p ) bool world::read_player_mm_quad( const tripoint &p, file_read_json_fn reader ) { - return read_from_player_file_json( ".mm1/" + get_mm_filename( p ), reader, true ); + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + sqlite3 *playerdb = get_player_db(); + return read_from_db_json( playerdb, get_mm_filename( p ), reader, true ); + } else { + return read_from_player_file_json( ".mm1/" + get_mm_filename( p ), reader, true ); + } } bool world::write_player_mm_quad( const tripoint &p, file_write_fn writer ) { - const std::string descr = string_format( - _( "memory map region for (%d,%d,%d)" ), - p.x, p.y, p.z - ); - assure_dir_exist( get_player_path() + ".mm1" ); - return write_to_player_file( ".mm1/" + get_mm_filename( p ), writer, descr.c_str() ); + if( info->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + sqlite3 *playerdb = get_player_db(); + write_to_db( playerdb, get_mm_filename( p ), writer ); + return true; + } else { + const std::string descr = string_format( + _( "memory map region for (%d,%d,%d)" ), + p.x, p.y, p.z + ); + assure_dir_exist( get_player_path() + ".mm1" ); + return write_to_player_file( ".mm1/" + get_mm_filename( p ), writer, descr.c_str() ); + } } /** @@ -370,6 +641,20 @@ std::string world::get_player_path() const return base64_encode( g->u.get_save_id() ); } +sqlite3 *world::get_player_db() +{ + if( !save_db ) { + save_db = open_db( info->folder_path() + "/" + get_player_path() + ".sqlite3" ); + last_save_id = g->u.get_save_id(); + } + + if( last_save_id != g->u.get_save_id() ) { + throw std::runtime_error( "Save ID changed without reloading the world object" ); + } + + return save_db; +} + bool world::player_file_exist( const std::string &path ) { return file_exist( get_player_path() + path ); @@ -423,4 +708,121 @@ bool world::read_from_file_json( const std::string &path, file_read_json_fn read bool optional ) const { return ::read_from_file_json( info->folder_path() + "/" + path, reader, optional ); -} \ No newline at end of file +} + +static void replaceBackslashes( std::string &input ) +{ + std::size_t pos = 0; + while( ( pos = input.find( '\\', pos ) ) != std::string::npos ) { + input.replace( pos, 1, "/" ); + pos++; // Move past the replaced character + } +} + +/** + * Save Conversion + */ +void world::convert_from_v1( const std::unique_ptr &old_world ) +{ + dbg( DL::Info ) << "Converting world '" << info->world_name << "' from v1 to v2 format"; + + // The map database should already be loaded via the constructor. + // The save database(s) will need to be created separately here. + // Transactions are mostly being used for performance reasons rather than consistency. + sqlite3_exec( map_db, "BEGIN TRANSACTION", NULL, NULL, NULL ); + + // Keep track of the last used save DB + sqlite3 *last_save_db = nullptr; + std::string last_save_id; + + // Begin copying files to the new world folder. + // This method is BFS, so we'll need to run two passes to keep player-specific + // files together. + auto old_world_path = old_world->folder_path() + "/"; + auto root_paths = get_files_from_path( "", old_world->folder_path(), false, true ); + for( auto &file_path : root_paths ) { + // Remove the old world path prefix from the file path + std::string part = file_path.substr( old_world_path.size() ); + replaceBackslashes( part ); + + // Migrate contents of the maps/ directory into the map database + if( part == "maps" ) { + // Recurse down the directory tree and migrate files into sqlite. + auto subpaths = get_files_from_path( "", file_path, true, true ); + for( auto &subpath : subpaths ) { + std::string map_path = "maps/" + subpath.substr( file_path.size() + 1 ); + replaceBackslashes( map_path ); + if( !map_path.ends_with( ".map" ) ) { + continue; + } + ::read_from_file( subpath, [&]( std::istream & fin ) { + write_to_db( map_db, map_path, [&]( std::ostream & fout ) { + fout << fin.rdbuf(); + } ); + } ); + } + continue; + } + + // Migrate o.* files into the map database + if( part.starts_with( "o." ) ) { + ::read_from_file( file_path, [&]( std::istream & fin ) { + write_to_db( map_db, part, [&]( std::ostream & fout ) { + fout << fin.rdbuf(); + } ); + } ); + continue; + } + + // Handle player-specific prefixed files + if( part.find( ".seen." ) != std::string::npos || part.find( ".mm1" ) != std::string::npos ) { + auto save_id = part.substr( 0, part.find( '.' ) ); + if( save_id != last_save_id ) { + if( last_save_db ) { + sqlite3_exec( last_save_db, "COMMIT", NULL, NULL, NULL ); + sqlite3_close( last_save_db ); + } + last_save_db = open_db( info->folder_path() + "/" + save_id + ".sqlite3" ); + last_save_id = save_id; + sqlite3_exec( last_save_db, "BEGIN TRANSACTION", NULL, NULL, NULL ); + } + + if( part.find( ".seen." ) != std::string::npos ) { + ::read_from_file( file_path, [&]( std::istream & fin ) { + write_to_db( last_save_db, part.substr( save_id.size() ), [&]( std::ostream & fout ) { + fout << fin.rdbuf(); + } ); + } ); + } else { + // Recurse down the directory tree and migrate files into sqlite. + auto subpaths = get_files_from_path( "", file_path, true, true ); + for( auto &subpath : subpaths ) { + std::string map_path = subpath.substr( file_path.size() + 1 ); + replaceBackslashes( map_path ); + if( map_path.ends_with( '/' ) ) { + continue; + } + ::read_from_file( subpath, [&]( std::istream & fin ) { + write_to_db( last_save_db, map_path, [&]( std::ostream & fout ) { + fout << fin.rdbuf(); + } ); + } ); + } + } + + continue; + } + + // Copy all other files as-is + if( !part.ends_with( "/" ) ) { + copy_file( file_path, info->folder_path() + "/" + part ); + } + } + + if( last_save_db ) { + sqlite3_exec( last_save_db, "COMMIT", NULL, NULL, NULL ); + sqlite3_close( last_save_db ); + } + + sqlite3_exec( map_db, "COMMIT", NULL, NULL, NULL ); +} diff --git a/src/world.h b/src/world.h index 4081a77dca8a..0e929aee6716 100644 --- a/src/world.h +++ b/src/world.h @@ -11,6 +11,7 @@ #include "fstream_utils.h" class avatar; +class sqlite3; class save_t { @@ -39,6 +40,9 @@ class save_t enum save_format : int { /** Original save layout; uncompressed JSON as loose files */ V1 = 0, + + /** V2 format - compressed tuples in SQLite3 */ + V2_COMPRESSED_SQLITE3 = 1, }; /** @@ -157,6 +161,12 @@ class world bool read_from_file_json( const std::string &path, file_read_json_fn reader, bool optional = true ) const; + /** + * Convert (copy) the save data from the old format to the new format. + * This should only be called from `worldfactory`. + */ + void convert_from_v1( const std::unique_ptr &old_world ); + private: /** If non-zero, indicates we're in the middle of a save event */ int64_t save_tx_start_ts = 0; @@ -165,6 +175,11 @@ class world std::string overmap_player_filename( const point_abs_om &p ) const; std::string get_player_path() const; + sqlite3 *map_db = nullptr; + + sqlite3 *save_db = nullptr; + std::string last_save_id = ""; + sqlite3 *get_player_db(); }; #endif // CATA_SRC_WORLD_H diff --git a/src/worldfactory.cpp b/src/worldfactory.cpp index ae40414898dd..457e836d0406 100644 --- a/src/worldfactory.cpp +++ b/src/worldfactory.cpp @@ -196,8 +196,12 @@ void worldfactory::init() all_worlds[worldname] = std::make_unique(); // give the world a name all_worlds[worldname]->world_name = worldname; - // Record the world save format. Only one exists at this time. - all_worlds[worldname]->world_save_format = save_format::V1; + // Record the world save format. V2 is identified by the presence of a map.sqlite3 file. + if( file_exist( world_dir + "/map.sqlite3" ) ) { + all_worlds[worldname]->world_save_format = save_format::V2_COMPRESSED_SQLITE3; + } else { + all_worlds[worldname]->world_save_format = save_format::V1; + } // add sav files for( auto &world_sav_file : world_sav_files ) { all_worlds[worldname]->world_saves.push_back( save_t::from_base_path( world_sav_file ) ); @@ -1275,6 +1279,7 @@ int worldfactory::show_worldgen_tab_confirm( const catacurses::window &win, WORL ctxt.register_action( "NEXT_TAB" ); ctxt.register_action( "PREV_TAB" ); ctxt.register_action( "PICK_RANDOM_WORLDNAME" ); + ctxt.register_action( "TOGGLE_V2_SAVE_FORMAT" ); // string input popup actions ctxt.register_action( "TEXT.LEFT" ); ctxt.register_action( "TEXT.RIGHT" ); @@ -1324,6 +1329,22 @@ int worldfactory::show_worldgen_tab_confirm( const catacurses::window &win, WORL fold_and_print( w_confirmation, point( 2, 3 ), getmaxx( w_confirmation ) - 2, c_light_gray, _( "Press [%s] to pick a random name for your world." ), ctxt.get_desc( "PICK_RANDOM_WORLDNAME" ) ); + + if( world->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + mvwprintz( w_confirmation, point( 2, 6 ), c_cyan, + _( "Save Format: Experimental V2 save format" ) ); + } else { + mvwprintz( w_confirmation, point( 2, 6 ), c_white, + _( "Save Format: Standard (V1) save format" ) ); + } + + fold_and_print( w_confirmation, point( 2, 8 ), getmaxx( w_confirmation ) - 2, c_light_gray, + _( "[Experimental] Press [%s] to toggle save format.\n" + "The new format shrinks save files and reduces save corruption, at the cost of " + "slightly slower saves. You can opt into this later by converting an existing world to V2" + " from the main menu. V2 worlds cannot currently be converted back to V1." ), + ctxt.get_desc( "TOGGLE_V2_SAVE_FORMAT" ) ); + fold_and_print( w_confirmation, point( 2, TERMY / 2 - 2 ), getmaxx( w_confirmation ) - 2, c_light_gray, _( "Press [%s] when you are satisfied with the world as it is and are ready " @@ -1372,6 +1393,12 @@ int worldfactory::show_worldgen_tab_confirm( const catacurses::window &win, WORL return -1; } else if( action == "PICK_RANDOM_WORLDNAME" ) { world->world_name = worldname = pick_random_name(); + } else if( action == "TOGGLE_V2_SAVE_FORMAT" ) { + if( world->world_save_format == save_format::V2_COMPRESSED_SQLITE3 ) { + world->world_save_format = save_format::V1; + } else { + world->world_save_format = save_format::V2_COMPRESSED_SQLITE3; + } } else if( action == "QUIT" && ( !on_quit || on_quit() ) ) { world->world_name = worldname; return -999; @@ -1580,3 +1607,50 @@ void worldfactory::delete_world( const std::string &worldname, const bool delete get_world( worldname )->world_saves.clear(); } } + +void worldfactory::convert_to_v2( const std::string &worldname ) +{ + // Ensure we're ready to convert + WORLDINFO *worldinfo = get_world( worldname ); + if( worldinfo == nullptr ) { + popup( _( "Tried to convert non-existing world %s to v2" ), worldname ); + return; + } + + if( worldinfo->world_save_format != save_format::V1 ) { + popup( _( "World %s is already at savefile version 2" ), worldname ); + return; + } + + // Backup the world by renaming it to a new name + if( worldname.find( " (V2 Conversion Backup)" ) != std::string::npos ) { + popup( _( "World '%s' is already a backup. Rename the world before trying again." ), worldname ); + return; + } + + std::string backup_name = worldname + " (V2 Conversion Backup)"; + if( has_world( backup_name ) ) { + popup( _( "Backup world '%s' already exists, aborting conversion" ), backup_name ); + return; + } + + std::unique_ptr old_world = std::make_unique(); + old_world->COPY_WORLD( world_generator->get_world( worldname ) ); + old_world->world_name = backup_name; + + // Deep copy the world saves + std::vector world_saves_copy( worldinfo->world_saves ); + old_world->world_saves = worldinfo->world_saves; + + // Rename the world folder perform the move + rename_file( worldinfo->folder_path(), old_world->folder_path() ); + worldinfo->world_save_format = save_format::V2_COMPRESSED_SQLITE3; + world new_world( worldinfo ); + new_world.convert_from_v1( old_world ); + add_world( std::move( old_world ) ); + + // Save the world + worldinfo->save(); + + popup( _( "Conversion Complete!" ) ); +} \ No newline at end of file diff --git a/src/worldfactory.h b/src/worldfactory.h index d8cef9486538..3c34615ac0a3 100644 --- a/src/worldfactory.h +++ b/src/worldfactory.h @@ -79,6 +79,8 @@ class worldfactory void show_active_world_mods( const std::vector &world_mods ); void edit_active_world_mods( WORLDINFO *world ); + void convert_to_v2( const std::string &worldname ); + private: std::map> all_worlds; diff --git a/tests/magic_spell_effect_test.cpp b/tests/magic_spell_effect_test.cpp index 43f528c6a51c..fa2f84653e62 100644 --- a/tests/magic_spell_effect_test.cpp +++ b/tests/magic_spell_effect_test.cpp @@ -19,7 +19,7 @@ TEST_CASE( "line_attack", "[magic]" ) " \"name\": { \"str\": \"Test Line Spell\" },\n" " \"description\": \"Spews a line of magic\",\n" " \"valid_targets\": [ \"ground\" ],\n" - " \"damage_type\": \"none\",\n" + " \"damage_type\": \"true\",\n" " \"min_range\": 5,\n" " \"max_range\": 5,\n" " \"effect\": \"line_attack\",\n"